hsh 0.0.7

Quantum-Resistant Cryptographic Hash Library for Password Encryption and Verification in Rust.
Documentation
[[bench]]
harness = false
name = "benchmark"
path = "benches/criterion.rs"

[[example]]
name = "hsh"
path = "examples/hsh.rs"
[dependencies.argon2rs]
version = "0.2.5"

[dependencies.base64]
version = "0.21.5"

[dependencies.bcrypt]
version = "0.15.0"

[dependencies.dtt]
version = "0.0.4"

[dependencies.log]
features = ["std"]
version = "0.4.20"

[dependencies.scrypt]
version = "0.11.0"

[dependencies.serde]
features = ["derive"]
version = "1.0.190"

[dependencies.serde_json]
version = "1.0.108"

[dependencies.vrd]
version = "0.0.4"
[dev-dependencies.assert_cmd]
version = "2.0.12"

[dev-dependencies.criterion]
version = "0.5.1"

[features]
default = []

[lib]
crate-type = ["lib"]
name = "hsh"
path = "src/lib.rs"

[package]
authors = ["Hash (HSH) Contributors"]
build = "build.rs"
categories = ["algorithms", "authentication", "cryptography", "data-structures", "encoding"]
description = "    Quantum-Resistant Cryptographic Hash Library for Password Encryption and\n    Verification in Rust.\n"
documentation = "https://docs.rs/hsh"
edition = "2021"
exclude = ["/.git/*", "/.github/*", "/.gitignore", "/.vscode/*"]
homepage = "https://hshlib.one/"
include = ["/CONTRIBUTING.md", "/LICENSE-APACHE", "/LICENSE-MIT", "/benches/**", "/build.rs", "/Cargo.toml", "/examples/**", "/README.md", "/src/**", "/tests/**", "/xtask/**"]
keywords = ["argon2", "argon2i", "hash", "password", "security"]
license = "MIT OR Apache-2.0"
name = "hsh"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/hsh/"
rust-version = "1.71.1"
version = "0.0.7"
[package.metadata.docs.rs]
all-features = true
[profile.bench]
debug = 2

[profile.dev]
codegen-units = 256
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false
strip = false

[profile.release]
codegen-units = 1
debug = 0
debug-assertions = false
incremental = false
lto = true
opt-level = "s"
overflow-checks = false
panic = "abort"
rpath = false
strip = "symbols"

[profile.test]
codegen-units = 256
debug = 2
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
rpath = false
strip = false