orchard/Cargo.toml

48 lines
1.0 KiB
TOML
Raw Normal View History

2020-10-20 14:12:37 -07:00
[package]
2021-01-08 08:32:36 -08:00
name = "orchard"
2020-10-20 14:12:37 -07:00
version = "0.0.0"
authors = [
"Sean Bowe <sean@electriccoin.co>",
2020-10-20 15:03:33 -07:00
"Jack Grigg <jack@electriccoin.co>",
2020-10-20 14:12:37 -07:00
]
edition = "2018"
2020-10-20 14:36:48 -07:00
description = "Sapling on stilts!"
2020-10-20 14:12:51 -07:00
license = "TGPPL"
2021-01-08 08:32:36 -08:00
repository = "https://github.com/zcash/orchard"
documentation = "https://docs.rs/orchard"
2020-10-20 14:12:37 -07:00
readme = "README.md"
2020-10-20 14:12:51 -07:00
# We can't publish to crates.io under TGPPL yet.
publish = false
2020-10-20 14:12:37 -07:00
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
2020-10-20 15:18:25 -07:00
2020-10-20 15:18:40 -07:00
[dependencies]
aes = "0.6"
bitvec = "0.20"
2021-03-05 15:25:45 -08:00
blake2b_simd = "0.5"
ff = "0.9"
fpe = "0.4"
2021-02-24 15:04:43 -08:00
group = "0.9"
nonempty = "0.6"
2021-03-05 15:25:45 -08:00
subtle = "2.3"
[dependencies.halo2]
git = "https://github.com/zcash/halo2.git"
rev = "b079624ea78b4a07d44cb3c725dd734093577062"
[dependencies.pasta_curves]
git = "https://github.com/zcash/pasta_curves.git"
rev = "0a6b2f6eb5acbe1dabc9e77ed0bcb748cc640196"
2021-03-05 15:25:45 -08:00
[dependencies.reddsa]
git = "https://github.com/str4d/redjubjub.git"
rev = "f8ff124a52d86e122e0705e8e9272f2099fe4c46"
2020-10-20 15:18:40 -07:00
2020-10-20 15:18:25 -07:00
[dev-dependencies]
criterion = "0.3"
[lib]
bench = false