[package]
edition = "2021"
name = "ahsah"
version = "2.0.0"
authors = ["Mimanshu Maheshwari maheshwarimimanshu@gmail.com"]
build = false
exclude = [
"/notes/**",
"/docs/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library of hashing functions in rust"
homepage = "https://github.com/mimanshu-maheshwari/ahsah"
readme = "README.md"
keywords = [
"hash",
"sha",
"sha256",
"sha512",
"crypto",
]
categories = [
"algorithms",
"cryptography",
"cryptography::cryptocurrencies",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mimanshu-maheshwari/ahsah"
[features]
args = ["dep:clap"]
[lib]
name = "ahsah"
path = "src/lib.rs"
[[example]]
name = "file-hasher"
path = "examples/file-hasher.rs"
[[example]]
name = "reader-hasher"
path = "examples/reader-hasher.rs"
required-features = ["args"]
[[example]]
name = "stdin-hasher"
path = "examples/stdin-hasher.rs"
[[example]]
name = "string-hasher"
path = "examples/string-hasher.rs"
[[test]]
name = "md5_test"
path = "tests/md5_test.rs"
[[test]]
name = "sha256_test"
path = "tests/sha256_test.rs"
[[test]]
name = "sha512_test"
path = "tests/sha512_test.rs"
[dependencies.clap]
version = "4.5.4"
features = ["derive"]
optional = true
[lints.rust]
unsafe_code = "forbid"