librustzcash/components/f4jumble/Cargo.toml

36 lines
819 B
TOML
Raw Normal View History

2021-09-22 06:13:34 -07:00
[package]
name = "f4jumble"
description = "Implementation of Zcash's F4Jumble algorithm"
2022-05-10 16:13:17 -07:00
version = "0.1.0"
2021-09-22 06:13:34 -07:00
authors = [
"Jack Grigg <jack@electriccoin.co>",
"Kris Nuttycombe <kris@electriccoin.co>",
"Daira Hopwood <daira@electriccoin.co>",
2021-09-22 06:13:34 -07:00
]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
rust-version = "1.51"
2022-05-10 16:13:17 -07:00
categories = ["encoding"]
keywords = ["feistel"]
2021-09-22 06:13:34 -07:00
[package.metadata.cargo-udeps.ignore]
development = ["hex"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
2021-09-22 06:13:34 -07:00
[dependencies]
2021-12-17 14:26:13 -08:00
blake2b_simd = { version = "1", default-features = false }
[dev-dependencies]
2022-04-25 09:52:56 -07:00
hex = "0.4"
proptest = "1"
[features]
default = ["std"]
std = ["blake2b_simd/std"]