haggis-rs/Cargo.toml

19 lines
401 B
TOML
Raw Normal View History

2023-07-02 00:44:39 -04:00
[package]
name = "haggis"
2023-07-02 00:44:39 -04:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
2023-07-05 14:27:40 -04:00
parallel = ["dep:rayon"]
color = ["dep:termcolor"]
2023-07-02 00:44:39 -04:00
[dependencies]
2023-12-30 19:01:37 -05:00
chrono = "0.4"
libc = "0.2"
md-5 = "0.10"
2023-07-05 14:27:40 -04:00
rayon = { version = "1.7", optional = true }
sha1 = "0.10"
sha2 = "0.10"
termcolor = { version = "1.4", optional = true }