X-Git-Url: https://code.octet-stream.net/hashgood/blobdiff_plain/1dec1ec82f55d639d9fad0d0933545aa509c4272..HEAD:/Cargo.toml?ds=sidebyside diff --git a/Cargo.toml b/Cargo.toml index 1f68f35..4eb291b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,25 @@ [package] name = "hashgood" -version = "0.1.0" +description = "Interactive CLI utility for verifying file checksums" +homepage = "https://github.com/thombles/hashgood" +repository = "https://github.com/thombles/hashgood" +version = "0.4.0" authors = ["Thomas Karpiniec "] -edition = "2018" +edition = "2021" +license = "Apache-2.0" +readme = "README.md" [dependencies] -structopt = "0.3.4" -hex = "0.4.0" -rust-crypto = "0.2.36" -crossbeam-channel = "0.4.0" -termcolor = "1.0.5" -clipboard = "0.5.0" -regex = "1" +structopt = "0.3.26" +hex = "0.4.3" +termcolor = "1.4" +sha2 = "0.10" +sha1 = "0.10" +md-5 = "0.10" + +[dependencies.copypasta] +version = "0.8.1" +optional = true + +[features] +paste = ["copypasta"]