-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
64 lines (56 loc) · 1.65 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "halo2_poseidon"
version = "0.2.0"
authors = [
"Sean Bowe <[email protected]>",
"Jack Grigg <[email protected]>",
"Daira Emma Hopwood <[email protected]>",
"Ying Tong Lai <[email protected]>",
"Kris Nuttycombe <[email protected]>",
]
edition = "2021"
rust-version = "1.66.0"
description = "Poseidon hash for Halo 2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/privacy-scaling-exploration/poseidon"
readme = "README.md"
categories = ["cryptography"]
keywords = ["halo", "proofs", "zcash", "zkp", "zkSNARKs"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
[dependencies]
arrayvec = "0.7.0"
bitvec = "1"
ff = { version = "0.13", features = ["bits"] }
group = "0.13"
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2", tag = "v0.3.0", default-features = false}
lazy_static = "1"
halo2curves = { version = "0.6.1" }
proptest = { version = "1.0.0", optional = true }
rand = "0.8"
subtle = "2.5"
uint = "0.9.2"
# Developer tooling dependencies
plotters = { version = "0.3.0", default-features = false, optional = true }
[dev-dependencies]
criterion = "0.3"
proptest = "1.0.0"
[target.'cfg(unix)'.dev-dependencies]
pprof = { version = "0.8", features = ["criterion", "flamegraph"] } # MSRV 1.56
[lib]
bench = false
[features]
test-dev-graph = [
"halo2_proofs/dev-graph",
"plotters",
"plotters/bitmap_backend",
"plotters/bitmap_encoder",
"plotters/ttf",
]
circuit-params = ["halo2_proofs/circuit-params"]
test-dependencies = ["proptest"]
unstable = []
[[bench]]
name = "poseidon"
harness = false