[package] name = "ambient-weather-api" version = "0.3.1" authors = ["Joshua Kimsey"] edition = "2021" description = "A library for accessing the Ambient Weather API" license = "MIT" readme = "README.md" homepage = "https://github.com/JoshuaKimsey/ambient-weather-api" keywords = ["AmbientWeather", "Weather", "API"] categories = ["api-bindings", ] package = ["api", "weather"] exclude = [ "main.rs" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] reqwest = { version = "0.11.12", features = ["json", "blocking"] } serde = {version = "1.0.147", features = ["derive"] } serde_json = "1.0.87" tokio = { version = "1.21.2", features = ["full"] }