-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.19 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
[workspace]
members = ["crates/prover", "crates/runnair"]
resolver = "2"
[workspace.package]
version = "0.1.1"
edition = "2021"
[workspace.dependencies]
bytemuck = { version = "1.16.3", features = ["derive"] }
cairo-lang-casm = "2.7.1"
# TODO(yuval): Use an official version, not a specific commit.
cairo-vm = { git = "https://github.com/lambdaclass/cairo-vm", rev = "3fb0344c", features = [
"mod_builtin",
] }
clap = { version = "4.3.10", features = ["derive"] }
env_logger = "0.11.3"
hex = "0.4.3"
itertools = "0.12.0"
log = "0.4.21"
num-traits = "0.2.17"
paste = "1.0"
pretty_assertions = "1.4.1"
rand = "0.8.5"
rayon = { version = "1.10.0" }
ruint = "1.12.3"
serde = "1.0.207"
serde_json = "1.0.1"
sonic-rs = "0.3.10"
starknet-ff = "0.3.7"
stwo-air-utils = { git = "https://github.com/starkware-libs/stwo", rev = "81d1fe3" }
stwo-air-utils-derive = { git = "https://github.com/starkware-libs/stwo", rev = "81d1fe3" }
# TODO(ShaharS): take stwo version from the source repository.
stwo-prover = { git = "https://github.com/starkware-libs/stwo", rev = "81d1fe3", features = [
"parallel",
] }
thiserror = "1.0.63"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[profile.bench]
codegen-units = 1
lto = true