orchard/Cargo.toml

90 lines
2.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!"
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]
2021-09-13 09:54:56 -07:00
aes = "0.7"
arrayvec = "0.7.0"
bigint = "4"
bitvec = "0.22"
2021-03-05 15:25:45 -08:00
blake2b_simd = "0.5"
ff = "0.11"
2021-09-13 09:54:56 -07:00
fpe = "0.5"
group = "0.11"
halo2 = "0.0"
lazy_static = "1"
2021-09-14 12:40:15 -07:00
memuse = { version = "0.2", features = ["nonempty"] }
pasta_curves = "0.2"
proptest = { version = "1.0.0", optional = true }
2021-04-14 21:13:41 -07:00
rand = "0.8"
nonempty = "0.7"
serde = { version = "1.0", features = ["derive"] }
2021-03-05 15:25:45 -08:00
subtle = "2.3"
zcash_note_encryption = "0.0"
incrementalmerkletree = "0.1"
2021-03-05 15:25:45 -08:00
2021-02-08 14:56:58 -08:00
# Developer tooling dependencies
plotters = { version = "0.3.0", optional = true }
2021-03-05 15:25:45 -08:00
[dependencies.reddsa]
git = "https://github.com/str4d/redjubjub.git"
rev = "416a6a8ebf8bd42c114c938883016c04f338de72"
2020-10-20 15:18:40 -07:00
2020-10-20 15:18:25 -07:00
[dev-dependencies]
criterion = "0.3"
hex = "0.4"
proptest = "1.0.0"
2020-10-20 15:18:25 -07:00
[target.'cfg(unix)'.dev-dependencies]
2021-09-13 09:55:30 -07:00
pprof = { version = "0.5", features = ["criterion", "flamegraph"] }
2020-10-20 15:18:25 -07:00
[lib]
bench = false
2021-03-19 22:19:51 -07:00
[features]
2021-02-08 14:56:58 -08:00
dev-graph = ["halo2/dev-graph", "plotters"]
test-dependencies = ["proptest"]
2021-08-05 17:03:03 -07:00
[[bench]]
name = "note_decryption"
harness = false
[[bench]]
name = "primitives"
harness = false
2021-03-19 22:19:51 -07:00
[[bench]]
name = "small"
harness = false
[[bench]]
name = "circuit"
harness = false
[profile.release]
debug = true
[profile.bench]
debug = true
[patch.crates-io]
halo2 = { git = "https://github.com/zcash/halo2.git", rev = "26047eaf323929935fd1e6aa3ae100b1113706e0" }
2021-08-10 16:54:28 -07:00
zcash_note_encryption = { git = "https://github.com/zcash/librustzcash.git", rev = "13b023387bafdc7b5712c933dc0e16ee94b96a6a" }
2021-08-05 06:51:19 -07:00
incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree.git", rev = "b7bd6246122a6e9ace8edb51553fbf5228906cbb" }