rtwx/nexrad2/Cargo.toml

20 lines
466 B
TOML
Raw Normal View History

2023-11-03 20:29:19 +00: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 04:08:31 +00:00
bzip2-rs = { version = "0.1", optional = true }
bzip2 = { version = "0.4", optional = true }
2023-11-04 21:38:51 +00:00
serde = { version = "1", features = ["derive"], optional = true }
2023-11-09 18:34:05 +00:00
profiling = "1"
2023-11-04 04:08:31 +00:00
2023-11-03 20:29:19 +00:00
log = "0.4"
2023-11-04 04:08:31 +00:00
[features]
bzip-impl-libbzip2 = ["bzip2"]
2023-11-04 21:38:51 +00:00
bzip-impl-bzip2-rs = ["bzip2-rs"]
serde_derive = ["serde"]