forked from lambdaclass/starknet_in_rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (62 loc) · 1.92 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
[package]
name = "starknet_in_rust"
version = "0.3.1"
edition = "2021"
description = "A Rust implementation of Starknet execution logic"
license = "Apache-2.0"
[features]
default = ["with_mimalloc"]
with_mimalloc = ["dep:mimalloc"]
cairo_1_tests = []
metrics = []
[workspace]
members = ["cli", "fuzzer", "rpc_state_reader"]
[workspace.dependencies]
cairo-vm = { version = "0.8.5", features = ["cairo-1-hints"] }
starknet_api = "0.4.1"
num-traits = "0.2.15"
starknet = "0.5.0"
thiserror = "1.0.32"
cairo-lang-starknet = "2.1.0-rc4"
cairo-lang-casm = "2.1.0-rc4"
cairo-lang-runner = "2.1.0-rc4"
cairo-lang-sierra = "2.1.0-rc4"
cairo-lang-utils = "2.1.0-rc4"
[dependencies]
cairo-lang-starknet = { workspace = true }
cairo-lang-casm = { workspace = true }
cairo-lang-runner = { workspace = true }
cairo-lang-sierra = { workspace = true }
cairo-lang-utils = { workspace = true }
cairo-vm = { workspace = true, features = ["cairo-1-hints"] }
getset = "0.1.2"
lazy_static = "1.4.0"
num-bigint = { version = "0.4", features = ["serde"] }
num-integer = "0.1.45"
num-traits = { workspace = true }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = { version = "1.0", features = [
"arbitrary_precision",
"raw_value",
] }
sha3 = "0.10.1"
# TODO: Replace with sha3. We should look how to integrate it correctly to calculate sn_keccak
keccak = "0.1.3"
starknet_api = { workspace = true }
starknet-crypto = "0.5.1"
thiserror = { workspace = true }
mimalloc = { version = "0.1.29", default-features = false, optional = true }
hex = "0.4.3"
anyhow = "1.0.66"
once_cell = "1.17.1"
starknet = { workspace = true }
base64 = { version = "0.21.0", default-features = false, features = ["alloc"] }
flate2 = "1.0.25"
serde_json_pythonic = { git = "https://github.com/xJonathanLEI/serde_json_pythonic", tag = "v0.1.2"}
[dev-dependencies]
assert_matches = "1.5.0"
coverage-helper = "0.1.0"
[[bench]]
path = "bench/internals.rs"
name = "internals"
harness = false