[package] name = "owm-weather-cli" version = "0.1.1" authors = ["CainĂ£ Costa "] edition = "2021" description = "Simple CLI tool to show weather information from OpenWeatherMap" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0.115", features = ["derive"] } serde_json = "1.0.57" reqwest = { version = "0.10.8", features = ["json", "blocking", "native-tls"], default-features = false } anyhow = "1.0.32" thiserror = "1.0.20" chrono = "0.4.15" sun-times = "0.1.2" log = "0.4.11" env_logger = "0.7.1" structopt = "0.3.17" [profile.release] debug = true lto = "thin"