19 lines
401 B
TOML
19 lines
401 B
TOML
[package]
|
|
name = "haggis"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
parallel = ["dep:rayon"]
|
|
color = ["dep:termcolor"]
|
|
|
|
[dependencies]
|
|
chrono = "0.4"
|
|
libc = "0.2"
|
|
md-5 = "0.10"
|
|
rayon = { version = "1.7", optional = true }
|
|
sha1 = "0.10"
|
|
sha2 = "0.10"
|
|
termcolor = { version = "1.4", optional = true }
|