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-03 20:29:19 +00:00
|
|
|
log = "0.4"
|
2023-11-04 04:08:31 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["bzip-impl-bzip2-rs"]
|
|
|
|
bzip-impl-libbzip2 = ["bzip2"]
|
|
|
|
bzip-impl-bzip2-rs = ["bzip2-rs"]
|