[package] name = "nowa" version = "1.1.1" authors = ["Stephen Ramsay "] description = "A small, fast command-line application that retrieves weather data from the United States National Weather Service" readme = "README.md" license = "GPL-3.0-or-later" repository = "https://git.sr.ht/~sramsay/nowa" edition = "2021" categories = ["command-line-utilities"] keywords = ["cli", "weather", "terminal", "meteorological"] include = [ "**/*.rs", "Cargo.toml", "CODE_OF_CONDUCT.md", "COPYING", "README.md", ] [[bin]] name = "nowa" test = false bench = false [dependencies] anyhow = "1" chrono = ">=0.4.0" clap = { version = "4", features = ["derive"] } lazy_static = "1" libm = ">=0.2.0" regex = "1" serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } ureq = { version = "2", features = ["json"] } url = "2"