-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
71 lines (68 loc) · 2.56 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
[package]
name = "stone-cli"
version = "0.1.0"
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", rev = "91e8121221140317f0f4d6ba7a59b16ec7ff2d7d" }
cairo-felt = "0.9.1"
cairo1-run = { git = "https://github.com/zksecurity/cairo-vm", package = "cairo1-run", features = [
"mod_builtin",
], rev = "ac8b81b79f65f5017fe0929bf4025be4a0e9c73c" }
cairo-vm = { git = "https://github.com/zksecurity/cairo-vm", features = [
"extensive_hints",
"mod_builtin",
], rev = "ac8b81b79f65f5017fe0929bf4025be4a0e9c73c" }
cairo-lang-compiler = { version = "=2.10.0-rc.0", default-features = false }
cairo-lang-filesystem = { version = "=2.10.0-rc.0", default-features = false }
clap = { version = "4.3.10", features = ["derive"] }
itertools = "0.13.0"
num-bigint = "0.4.6"
num-traits = "0.2.19"
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", rev = "e044116e3cf4e3cbca11cce7b9e508a0f3e6870b" }
swiftness_air = { git = "https://github.com/zksecurity/integrity-calldata-generator", rev = "6f2dd268274e40e5ea75e2f17aff6b8e53f8f499" }
swiftness_fri = { git = "https://github.com/zksecurity/integrity-calldata-generator", rev = "6f2dd268274e40e5ea75e2f17aff6b8e53f8f499" }
swiftness_proof_parser = { git = "https://github.com/zksecurity/integrity-calldata-generator", rev = "6f2dd268274e40e5ea75e2f17aff6b8e53f8f499" }
swiftness_stark = { git = "https://github.com/zksecurity/integrity-calldata-generator", rev = "6f2dd268274e40e5ea75e2f17aff6b8e53f8f499" }
swiftness = { git = "https://github.com/zksecurity/integrity-calldata-generator", rev = "6f2dd268274e40e5ea75e2f17aff6b8e53f8f499" }
starknet-crypto = "0.7.2"
tempfile = "3.10.1"
thiserror = "1.0.61"
tar = "0.4.41"
flate2 = "1.0.30"
fs2 = "0.4.3"
log = "0.4.25"
rpassword = "7.3.1"
pkcs8 = { version = "0.10.2", features = [
"encryption",
"3des",
"des-insecure",
"pem",
"alloc",
"pkcs5",
] }
curl = "0.4.47"
[build-dependencies]
reqwest = { version = "0.12", features = [
"json",
"blocking",
"rustls-tls",
], default-features = false }
flate2 = "1.0.30"
once_cell = "1.18"
serde = { version = "1.0", features = ["derive"], default-features = false }
serde_json = "1"
sha2 = "0.10.8"
tempfile = "3.10.1"
thiserror = "1.0.61"
anyhow = "1.0.86"
tar = "0.4.41"
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"