-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathCargo.toml
36 lines (34 loc) · 900 Bytes
/
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
[package]
name = "arrabbiata"
version = "0.1.0"
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/"
edition = "2021"
license = "Apache-2.0"
[[bin]]
name = "arrabbiata"
path = "src/main.rs"
[dependencies]
ark-ec.workspace = true
ark-ff.workspace = true
ark-poly.workspace = true
clap.workspace = true
env_logger.workspace = true
groupmap.workspace = true
kimchi.workspace = true
itertools.workspace = true
log.workspace = true
mina-curves.workspace = true
mina-poseidon.workspace = true
mvpoly.workspace = true
num-bigint.workspace = true
num-integer.workspace = true
o1-utils.workspace = true
once_cell.workspace = true
poly-commitment.workspace = true
rand.workspace = true
rayon.workspace = true
serde.workspace = true
strum.workspace = true
strum_macros.workspace = true