forked from yugocabrio/rs-soroban-ultrahonk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 1.48 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
46
47
48
49
50
51
[package]
name = "ultrahonk_rust_verifier"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Rust verifier for UltraHonk proofs"
repository = "https://github.com/yugocabrio/ultrahonk-rust-verifier"
[dependencies]
sha3 = { version = "0.10", default-features = false }
ark-ff = { version = "0.5", default-features = false }
ark-ec = { version = "0.5", default-features = false }
ark-serialize = { version = "0.5", default-features = false }
ark-std = { version = "0.5", default-features = false }
ark-bn254 = { version = "0.5", default-features = false, features = ["curve"] }
serde = { version = "1.0", features = ["derive"], default-features = false, optional = true }
serde_json = { version = "1.0", default-features = false, features = ["alloc"], optional = true }
hex = { version = "0.4", default-features = false, features = ["alloc"] }
num-bigint = { version = "0.4", default-features = false }
num-traits = { version = "0.2", default-features = false }
lazy_static = { version = "1.4", optional = true }
once_cell = { version = "1.19", default-features = false, features = ["alloc", "race"] }
[features]
default = ["alloc"]
# Soroban BN254 precompile integration switch
soroban-precompile = []
std = [
"sha3/std",
"ark-ff/std",
"ark-ec/std",
"ark-serialize/std",
"ark-std/std",
"ark-bn254/std",
"hex/std",
"num-bigint/std",
"num-traits/std",
"lazy_static",
"once_cell/std"
]
trace = []
alloc = [
"hex/alloc",
"once_cell/alloc",
]