rtwx/nexrad2/Cargo.toml

19 lines
450 B
TOML
Raw Normal View History

2023-11-03 16:29:19 -04:00
[package]
name = "nexrad2"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-11-04 00:08:31 -04:00
bzip2-rs = { version = "0.1", optional = true }
bzip2 = { version = "0.4", optional = true }
2023-11-04 17:38:51 -04:00
serde = { version = "1", features = ["derive"], optional = true }
2023-11-04 00:08:31 -04:00
2023-11-03 16:29:19 -04:00
log = "0.4"
2023-11-04 00:08:31 -04:00
[features]
bzip-impl-libbzip2 = ["bzip2"]
2023-11-04 17:38:51 -04:00
bzip-impl-bzip2-rs = ["bzip2-rs"]
serde_derive = ["serde"]