orchard/Cargo.toml

56 lines
1.1 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!"
license-file = "LICENSE-BOSL"
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"
2021-04-16 09:24:18 -07:00
# We are not publishing this yet.
2020-10-20 14:12:51 -07:00
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"
2021-04-14 21:13:41 -07:00
rand = "0.8"
2021-04-14 21:14:34 -07:00
rand_7 = { package = "rand", version = "0.7" }
nonempty = "0.6"
2021-03-05 15:25:45 -08:00
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"
2021-03-05 15:25:45 -08:00
[dependencies.reddsa]
git = "https://github.com/str4d/redjubjub.git"
rev = "f1e76dbc9abf2b68cc609e874fe39f2a15b75b12"
2020-10-20 15:18:40 -07:00
2020-10-20 15:18:25 -07:00
[dev-dependencies]
criterion = "0.3"
hex = "0.4"
2021-04-14 21:13:41 -07:00
proptest = "1.0.0"
2020-10-20 15:18:25 -07:00
[lib]
bench = false
2021-03-19 22:19:51 -07:00
[[bench]]
name = "small"
harness = false