-
Notifications
You must be signed in to change notification settings - Fork 95
/
Cargo.toml
47 lines (40 loc) · 1.08 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
[package]
name = "mina-poseidon"
version = "0.1.0"
description = "An instantiation of the Poseidon hash function for the pasta fields"
repository = "https://github.com/o1-labs/proof-systems"
homepage = "https://o1-labs.github.io/proof-systems/"
documentation = "https://o1-labs.github.io/proof-systems/rustdoc/"
readme = "README.md"
edition = "2021"
license = "Apache-2.0"
[lib]
path = "src/lib.rs"
[dependencies]
ark-ff.workspace = true
ark-ec.workspace = true
ark-poly.workspace = true
ark-serialize.workspace = true
rand.workspace = true
rayon.workspace = true
serde.workspace = true
serde_with.workspace = true
once_cell.workspace = true
mina-curves.workspace = true
o1-utils.workspace = true
# for ocaml
ocaml = { workspace = true, optional = true }
ocaml-gen = { workspace = true, optional = true }
[dev-dependencies]
serde_json.workspace = true
hex.workspace = true
criterion = { version = "0.3", default-features = false, features = [
"cargo_bench_support",
"html_reports",
] }
[features]
default = []
ocaml_types = ["ocaml", "ocaml-gen"]
[[bench]]
name = "poseidon_bench"
harness = false