picca/Cargo.toml

51 lines
858 B
TOML
Raw Permalink Normal View History

2025-07-15 21:06:35 -06:00
[package]
name = "picca"
2025-08-19 22:28:22 -06:00
version = "0.7.0"
authors = ["Bryson Steck <bryson@steck.dev>"]
license = "GPL-3.0-or-later"
repository = "https://forge.steck.dev/bryson/picca"
edition = "2024"
2025-08-12 20:09:29 -06:00
autobins = true
2025-07-15 21:06:35 -06:00
2025-08-12 23:25:19 -06:00
[features]
all = []
single = []
2025-08-13 00:15:39 -06:00
2025-08-12 23:25:19 -06:00
[[bin]]
name = "picca"
2025-08-13 00:15:39 -06:00
path = "src/bin/picca.rs"
required-features = ["all"]
[profile.release]
opt-level = "z"
lto = true
strip = true
2025-08-12 23:25:19 -06:00
2025-07-15 21:06:35 -06:00
[dependencies]
sha2 = "0.10.9"
clap = { version = "4.5.29", features = ["derive"] }
2025-07-18 01:13:11 -06:00
colored = "3.0.0"
md-5 = "0.10.6"
2025-07-20 12:59:49 -06:00
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"
2025-07-28 21:15:14 -06:00
blake3 = "1.8.2"
quit = "2.0.0"
hex = "0.4.3"