[package] name = "github-ureq" version = "0.1.3" edition = "2021" description = "A simple wrapper for the GitHub API V3 using the ureq crate." repository = "https://github.com/spikespaz/github-ureq" license = "MIT" keywords = [ "github", "rest", "api", "web", "remote" ] categories = [ "api-bindings", "web-programming", "web-programming::http-client" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_path_to_error = "0.1" strum = { version = "0.24", features = ["derive"] } chrono = { version = "0.4", features = ["serde"] } ureq = { version = "2.4", features = ["json"] } url = "2.2" thiserror = "1.0" [dev-dependencies] test-case = "2.0"