forked from zksecurity/stone-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.29 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
[package]
name = "stone-cli"
version = "0.1.0-alpha"
edition = "2021"
[dependencies]
anyhow = "1.0.86"
bincode = { version = "2.0.0-rc.3", default-features = false, features = [
"serde",
] }
cairo-bootloader = { git = "https://github.com/zksecurity/cairo-bootloader" }
cairo-felt = "0.9.1"
cairo-proof-parser = "0.3.0"
#cairo-vm = { git = "https://github.com/lambdaclass/cairo-vm", rev = "05352b1c67859a4d8cd128575c1e68ca7e300341", features = ["extensive_hints"] }
cairo-vm = { git = "https://github.com/zksecurity/cairo-vm", features = ["extensive_hints"]}
clap = { version = "4.3.10", features = ["derive"] }
itertools = "0.13.0"
num-bigint = "0.4.6"
rstest = "0.21.0"
serde = { version = "1.0", features = ["derive"], default-features = false }
serde_json = "1"
stark_evm_adapter = { git = "https://github.com/zksecurity/stark-evm-adapter.git", branch = "add-build-configs" }
stone-prover-sdk = { git = "https://github.com/zksecurity/stone-prover-sdk" }
tempfile = "3.10.1"
thiserror = "1.0.61"
uuid = "1.9.1"
[build-dependencies]
flate2 = "1.0.30"
reqwest = { version = "0.12.5", features = ["blocking"] }
serde = { version = "1.0", features = ["derive"], default-features = false }
serde_json = "1"
sha256 = "1.5.0"
tar = "0.4.41"
thiserror = "1.0.61"
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"