forked from keep-starknet-strange/snos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (52 loc) · 1.87 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
workspace = { members = ["cairo-type-derive", "bin/hint_tool"] }
[package]
edition = "2021"
name = "snos"
version = "0.1.0"
[dependencies]
anyhow = "1.0.75"
assert_matches = "1.5.0"
async-stream = "0.3.5"
base64 = "0.21.3"
bitvec = { version = "1.0.1", features = ["serde"] }
blockifier = { git = "https://github.com/keep-starknet-strange/blockifier", branch = "snos/callinfo-clone", features = ["clone", "testing"] }
cairo-type-derive = { version = "0.1.0", path = "cairo-type-derive" }
cairo-vm = { git = "https://github.com/lambdaclass/cairo-vm", features = ["extensive_hints", "cairo-1-hints"] }
futures = "0.3.30"
futures-util = "0.3.30"
heck = "0.4.1"
hex = "0.4.3"
indexmap = "1.9.2"
indoc = "2"
lazy_static = "1.4.0"
log = "0.4.19"
num-bigint = "0.4"
num-integer = "0.1.45"
num-traits = "0.2.16"
regex = "1.10.0"
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.105", features = ["arbitrary_precision"] }
serde_with = "3.3.0"
serde_yaml = "0.9.25"
starknet-crypto = "0.6.0"
starknet_api = { version = "=0.7.0-dev.0", features = ["testing"] }
thiserror = "1.0.48"
tokio = { version = "1.36.0", features = ["rt-multi-thread"] }
tokio-stream = "0.1.14"
uuid = { version = "1.4.0", features = ["v4", "serde"] }
zip = { version = "0.6.6", features = ["deflate-zlib"] }
# These dependencies pin cairo-lang requirement versions because cairo-vm does not do it
cairo-lang-starknet = { version = "~2.5.4" }
cairo-lang-casm = { version = "~2.5.4" }
cairo-lang-defs = { version = "~2.5.4" }
cairo-lang-diagnostics = { version = "~2.5.4" }
cairo-lang-filesystem = { version = "~2.5.4" }
cairo-lang-semantic = { version = "~2.5.4" }
cairo-lang-sierra = { version = "~2.5.4" }
cairo-lang-syntax = { version = "~2.5.4" }
[dev-dependencies]
getset = "0.1.2"
pretty_assertions = "1.4.0"
rand = "0.8.5"
rstest = "0.18.2"