miden-crypto/Cargo.toml
Victor Lopez 35b255b5eb
feat: re-export winter-crypto Hasher, Digest & ElementHasher
This commit introduces the re-export of the listed primitives.

They will be used inside Miden to report the security level of the
picked primitive, as well as other functionality.

closes #72
2023-02-22 16:56:14 +01:00

36 lines
1.2 KiB
TOML

[package]
name = "miden-crypto"
version = "0.1.5"
description="Miden Cryptographic primitives"
authors = ["miden contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/0xPolygonMiden/crypto"
documentation = "https://docs.rs/miden-crypto/0.1.3"
categories = ["cryptography", "no-std"]
keywords = ["miden", "crypto", "hash", "merkle"]
edition = "2021"
rust-version = "1.67"
[[bench]]
name = "hash"
harness = false
[[bench]]
name = "smt"
harness = false
[features]
default = ["blake3/default", "std", "winter_crypto/default", "winter_math/default", "winter_utils/default"]
std = ["blake3/std", "winter_crypto/std", "winter_math/std", "winter_utils/std"]
[dependencies]
blake3 = { version = "1.3", default-features = false }
winter_crypto = { version = "0.5", package = "winter-crypto", default-features = false }
winter_math = { version = "0.5", package = "winter-math", default-features = false }
winter_utils = { version = "0.5", package = "winter-utils", default-features = false }
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
proptest = "1.1.0"
rand_utils = { version = "0.5", package = "winter-rand-utils" }