forked from yetanotherco/aligned_layer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 2.12 KB
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 2.12 KB
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
[package]
name = "mina-account-verifier-ffi"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "staticlib", "lib"]
[dependencies]
kimchi = { git = "https://github.com/lambdaclass/openmina-proof-systems", branch = "mina_bridge" }
poly-commitment = { git = "https://github.com/lambdaclass/openmina-proof-systems", branch = "mina_bridge" }
mina-curves = { git = "https://github.com/lambdaclass/openmina-proof-systems", branch = "mina_bridge" }
o1-utils = { git = "https://github.com/lambdaclass/proof-systems", branch = "add-verifier-serializations" }
ark-ff = { version = "0.3.0", features = ["parallel", "asm"] }
ark-ec = { version = "0.3.0", features = ["parallel"] }
ark-poly = { version = "0.3.0", features = ["parallel"] }
ark-serialize = "0.3.0"
serde = "1.0.197"
rmp-serde = "1.1.2"
serde_json = "1.0.118"
hex = "0.4.3"
mina-tree = { git = "https://github.com/lambdaclass/openmina/", branch = "mina_bridge" }
mina-p2p-messages = { git = "https://github.com/lambdaclass/openmina/", branch = "mina_bridge" }
base64 = "0.22.1"
bs58 = "0.5.1"
lazy_static = "1.5.0"
blake2 = "0.10.6"
once_cell = "1.19.0"
sha3 = "0.10.8"
mina_bridge_core = { git = "https://github.com/lambdaclass/mina_bridge", rev = "884f28b834b62133384661fdf73c9db283f68c62" }
bincode = "1.3.3"
alloy = { version = "0.3.3", features = ["full"] }
log = "0.4.21"
[patch.crates-io]
ark-ff = { git = "https://github.com/lambdaclass/openmina_algebra", branch = "mina_bridge" }
ark-ec = { git = "https://github.com/lambdaclass/openmina_algebra", branch = "mina_bridge" }
ark-poly = { git = "https://github.com/lambdaclass/openmina_algebra", branch = "mina_bridge" }
ark-serialize = { git = "https://github.com/lambdaclass/openmina_algebra", branch = "mina_bridge" }
[patch.'https://github.com/openmina/algebra']
ark-ff = { git = "https://github.com/lambdaclass/openmina_algebra", branch = "mina_bridge" }
ark-ec = { git = "https://github.com/lambdaclass/openmina_algebra", branch = "mina_bridge" }
ark-poly = { git = "https://github.com/lambdaclass/openmina_algebra", branch = "mina_bridge" }
ark-serialize = { git = "https://github.com/lambdaclass/openmina_algebra", branch = "mina_bridge" }