picca/Cargo.toml

47 lines
768 B
TOML

[package]
name = "picca"
version = "0.5.0"
edition = "2024"
autobins = true
[features]
default = []
algorithms = []
[[bin]]
name = "sha256sum"
path = "src/bin/sha256sum.rs"
required-features = []
[[bin]]
name = "picca"
path = "src/bin/picca.rs"
required-features = ["algorithms"]
[dependencies]
sha2 = "0.10.9"
clap = { version = "4.5.29", features = ["derive"] }
colored = "3.0.0"
md-5 = "0.10.6"
ascon-hash = "0.3.1"
belt-hash = "0.1.1"
blake2 = "0.10.6"
fsb = "0.1.3"
gost94 = "0.10.4"
groestl = "0.10.1"
jh = "0.1.0"
k12 = "0.3.0"
md2 = "0.10.2"
md4 = "0.10.2"
ripemd = "0.1.3"
sha1 = "0.10.6"
sha3 = "0.10.8"
shabal = "0.4.1"
skein = "0.1.1"
sm3 = "0.4.2"
streebog = "0.10.2"
tiger = "0.2.1"
whirlpool = "0.10.4"
blake3 = "1.8.2"
quit = "2.0.0"
hex = "0.4.3"