[package]
edition = "2021"
rust-version = "1.70"
name = "stealth-lib"
version = "1.0.1"
build = false
include = [
"src/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ZK-friendly cryptographic primitives (MiMC hash, Merkle trees)"
documentation = "https://docs.rs/stealth-lib"
readme = "README.md"
keywords = [
"cryptography",
"merkle-tree",
"zero-knowledge",
"mimc",
"zkp",
]
categories = [
"cryptography",
"data-structures",
]
license = "MIT"
repository = "https://github.com/stealth-cash/stealth-lib"
[features]
borsh = ["dep:borsh"]
default = ["std"]
experimental = []
serde = ["dep:serde"]
std = []
[lib]
name = "stealth_lib"
path = "src/lib.rs"
[dependencies.borsh]
version = "1.4.0"
optional = true
[dependencies.hex]
version = "0.4.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"