orchard/Cargo.toml

59 lines
1.2 KiB
TOML

[package]
name = "orchard"
version = "0.0.0"
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Jack Grigg <jack@electriccoin.co>",
]
edition = "2018"
description = "Sapling on stilts!"
license-file = "LICENSE-BOSL"
repository = "https://github.com/zcash/orchard"
documentation = "https://docs.rs/orchard"
readme = "README.md"
# We are not publishing this yet.
publish = false
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
[dependencies]
aes = "0.6"
bitvec = "0.20"
blake2b_simd = "0.5"
ff = "0.9"
fpe = "0.4"
group = "0.9"
proptest = { version = "1.0.0", optional = true }
rand = "0.8"
rand_7 = { package = "rand", version = "0.7" }
nonempty = "0.6"
subtle = "2.3"
[dependencies.halo2]
git = "https://github.com/zcash/halo2.git"
rev = "6acacf1aca12f34fc311aa59056e40adc0e6d8bd"
[dependencies.pasta_curves]
git = "https://github.com/zcash/pasta_curves.git"
rev = "b55a6960dfafd7f767e2820ddf1adaa499322f98"
[dependencies.reddsa]
git = "https://github.com/str4d/redjubjub.git"
rev = "f1e76dbc9abf2b68cc609e874fe39f2a15b75b12"
[dev-dependencies]
criterion = "0.3"
hex = "0.4"
[lib]
bench = false
[features]
test-dependencies = ["proptest"]
[[bench]]
name = "small"
harness = false