-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
153 lines (147 loc) · 4.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
[workspace]
members = [
"cli",
"core",
"derive",
"eval",
"helper",
"primitives",
"prover",
"recursion/circuit",
"recursion/compiler",
"recursion/core",
"recursion/gnark-ffi",
"recursion/program",
"sdk",
"tutorials",
"zkvm/*",
]
exclude = ["examples/target"]
resolver = "2"
[profile.release]
opt-level = 3
[profile.bench]
opt-level = 3
[profile.fast]
inherits = "release"
debug = true
debug-assertions = true
[workspace.dependencies]
p3-air = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-field = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-commit = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-matrix = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-baby-bear = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1", features = [
"nightly-features",
]}
p3-util = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-challenger = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-dft = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-fri = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-keccak = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-keccak-air = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-blake3 = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-merkle-tree = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-poseidon2 = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-symmetric = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-uni-stark = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-maybe-rayon = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
p3-bn254-fr = { git = "https://github.com/argumentcomputer/Plonky3.git", branch = "sp1" }
alloy = { git = "https://github.com/alloy-rs/alloy", rev = "bfd0fda" }
anstyle = "1.0.8"
anyhow = "1.0.86"
arrayref = "0.3.8"
async-trait = "0.1.81"
axum = "=0.7.5"
backtrace = "0.3.73"
bincode = "1.3.3"
blake3 = "1.5"
bytemuck = "1.16.3"
cargo_metadata = "0.18.1"
cfg-if = "1.0.0"
chrono = { version = "0.4.38", default-features = false }
clap = "4.5.15"
criterion = "0.5.1"
csv = "1.3.0"
curve25519-dalek = "4.1.3"
dotenv = "0.15.0"
elf = "0.7.4"
elliptic-curve = "0.13.8"
ff = "0.13"
futures = "0.3.30"
futures-util = "0.3.14"
getrandom = "=0.2.14" # 0.2.15 depends on yanked libc 0.2.154
hashbrown = { version = "0.14.5", features = ["serde"] }
hex = "0.4.3"
home = "0.5.9"
hybrid-array = "0.2.0-rc"
indicatif = "0.17.8"
itertools = "0.12.1"
k256 = "0.13.3"
lazy_static = "1.5.0"
libm = "0.2.8"
log = "0.4.22"
nohash-hasher = "0.2.0"
num = "0.4.3"
num_cpus = "1.16.0"
once_cell = "1.8.0"
proc-macro2 = "1.0"
prost = "0.12"
quote = "1.0"
rand = "0.8.5"
rayon = "1.10.0"
rayon-scan = "0.1.1"
reqwest = { version = "0.12.5", default-features = false }
reqwest-middleware = "0.3.3"
rrs-lib = { git = "https://github.com/GregAC/rrs.git" }
serde = "1.0.207"
serde_json = { version = "1.0.124", default-features = false, features = ["alloc"] }
serde_with = "3.9.0"
serial_test = "3.1.1"
sha2 = "0.10.8"
size = "0.4.1"
stacker = "0.1.0"
strum = "0.26.3"
strum_macros = "0.26.4"
syn = "1.0"
target-lexicon = "0.12.16"
tempfile = "3.12.0"
thiserror = "1.0.63"
tiny-keccak = "2.0.2"
tokio = "1.39.2"
tracing = "0.1.40"
tracing-forest = "0.1.6"
tracing-subscriber = "0.3.17"
twirp = { git = "https://github.com/github/twirp-rs.git", rev = "c85f31f9c54957374e7dcb3534fc52cff0aa2dc5" }
vergen = { version = "8", default-features = false }
web-time = "1.1.0"
yansi = "1.0.1"
zkhash = { git = "https://github.com/HorizenLabs/poseidon2" }
bls12_381 = { git = "https://github.com/argumentcomputer/bls12_381.git", branch = "zkvm" }
tracing-appender = "0.2.3"
static_assertions = "1.1.0"
crossbeam = "0.8"
dialoguer = "0.11.0"
subtle-encoding = "0.5.1"
num-bigint = { version = "0.4.6", default-features = false }
bindgen = "0.69.4"
cc = "1.1"
alloy-primitives = "0.7.7"
alloy-sol-types = "0.7.7"
downloader = { version = "0.2", default-features = false }
ethers = { version = "2", default-features = false }
sysinfo = "0.31.2"
[profile.dev-ci]
inherits = "dev"
# By compiling dependencies with optimizations, performing tests gets much faster.
opt-level = 3
overflow-checks = true
lto = "thin"
incremental = false
codegen-units = 16
# All workspace members should inherit these keys
# for package declarations.
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/argumentcomputer/sphinx"