# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "nexrad-data" version = "0.1.0" authors = ["Daniel Way "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Models and functions for accessing NEXRAD data from public sources." readme = "README.md" license = "MIT" repository = "https://github.com/danielway/nexrad/nexrad-data" [lib] name = "nexrad_data" path = "src/lib.rs" [[example]] name = "archive" path = "examples/archive.rs" [[example]] name = "realtime" path = "examples/realtime.rs" [dependencies.bincode] version = "1.3" optional = true [dependencies.bzip2] version = "0.4" optional = true [dependencies.chrono] version = "0.4" [dependencies.clap] version = "4.5" features = ["derive"] [dependencies.log] version = "0.4" [dependencies.nexrad-decode] version = "0.1.0-rc3" optional = true [dependencies.nexrad-model] version = "0.1.0-rc3" optional = true [dependencies.reqwest] version = "0.12" optional = true [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1" optional = true [dependencies.xml] version = "0.8" optional = true [dev-dependencies.env_logger] version = "0.11" [dev-dependencies.tokio] version = "1" features = ["full"] [features] aws = [ "reqwest", "xml", "tokio", ] decode = [ "nexrad-decode", "bzip2", "serde", "bincode", ] default = [ "aws", "decode", "nexrad-model", ]