halo2/Cargo.toml

70 lines
1.5 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"
2021-12-17 14:10:35 -08:00
version = "0.1.0-beta.1"
2020-10-20 14:12:37 -07:00
authors = [
"Sean Bowe <sean@electriccoin.co>",
2020-10-20 15:03:33 -07:00
"Jack Grigg <jack@electriccoin.co>",
2021-12-17 14:10:35 -08:00
"Daira Hopwood <daira@jacaranda.org>",
"Ying Tong Lai <yingtong@electriccoin.co>",
"Kris Nuttycombe <kris@electriccoin.co>",
2020-10-20 14:12:37 -07:00
]
edition = "2018"
2021-12-17 14:10:35 -08:00
description = "[BETA] The Orchard shielded transaction protocol"
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-12-17 14:10:35 -08:00
categories = ["cryptography::cryptocurrencies"]
keywords = ["zcash"]
2020-10-20 14:12:37 -07:00
[package.metadata.docs.rs]
2021-12-17 14:08:58 -08:00
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
2020-10-20 15:18:25 -07:00
2020-10-20 15:18:40 -07:00
[dependencies]
arrayvec = "0.7.0"
bigint = "4"
bitvec = "0.22"
ff = "0.11"
group = "0.11"
halo2 = "=0.1.0-beta.1"
lazy_static = "1"
pasta_curves = "0.2.1"
proptest = { version = "1.0.0", optional = true }
2021-04-14 21:13:41 -07:00
rand = "0.8"
2021-03-05 15:25:45 -08:00
subtle = "2.3"
2021-02-08 14:56:58 -08:00
# Developer tooling dependencies
plotters = { version = "0.3.0", optional = true }
2020-10-20 15:18:25 -07:00
[dev-dependencies]
criterion = "0.3"
proptest = "1.0.0"
2020-10-20 15:18:25 -07:00
[target.'cfg(unix)'.dev-dependencies]
2022-01-04 23:36:45 -08:00
pprof = { version = "=0.6.1", 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"]
[[bench]]
name = "primitives"
harness = false
[[bench]]
name = "poseidon"
harness = false
[profile.release]
debug = true
[profile.bench]
debug = true
[patch.crates-io]
2022-01-04 21:24:27 -08:00
halo2 = { git = "https://github.com/zcash/halo2.git", rev = "f9b3ff2aef09a5a3cb5489d0e7e747e9523d2e6e" }