shitbox/Cargo.toml
Nathan Fisher f0099a2958 Add b2sum applet - switch to blake2b_simd crate to get around
limitations of `blake2` crate, which will not accept a non-const
numerical specifier for length
2023-02-04 11:06:24 -05:00

32 lines
593 B
TOML

[package]
name = "shitbox"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atty = "0.2"
blake2b_simd = "1.0"
clap = "4.1"
clap_complete = "4.1"
clap_complete_nushell = "0.1"
clap_mangen = "0.2"
data-encoding = "2.3"
digest = "0.10.6"
libc = "0.2"
md-5 = "0.10"
sc = "0.2"
sha1 = "0.10"
sha2 = "0.10"
termcolor = "1.1"
textwrap = { version = "0.16", default-features = false, features = ["smawk"] }
walkdir = "2.3"
[profile.release]
codegen-units = 1
strip = true
lto = true
panic = "abort"