-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
103 lines (96 loc) · 3.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "zilliqa"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[lib]
name = "zilliqa"
path = "src/lib.rs"
[[bin]]
name = "zilliqa"
path = "src/bin/zilliqa.rs"
[features]
# Enable tests which assert contract bytecode is correct and reproducible. Enabled in CI.
test_contract_bytecode = []
# Enable fake implementation of `ResponseChannel`, so tests can construct response channels.
fake_response_channel = []
# Enable fake implementation of `std::time::SystemTime` for deterministic tests.
fake_time = []
[build-dependencies]
anyhow = { version = "1.0.93", features = ["backtrace"] }
vergen = { version = "8.3.1", features = ["git", "git2"] }
[dependencies]
alloy = { version = "0.4.2", default-features = false, features = ["consensus", "eips", "k256", "rlp", "rpc-types", "rpc-types-trace", "serde", "sol-types"] }
anyhow = { version = "1.0.93", features = ["backtrace"] }
async-trait = "0.1.83"
base64 = "0.22.1"
bincode = "1.3.3"
bitvec = { version = "1.0.1", features = ["serde"] }
bs58 = "0.5.1"
bytes = "1.8.0"
clap = { version = "4.5.20", features = ["derive"] }
crypto-bigint = "=0.5.5"
eth_trie = {path = "../eth-trie.rs"}
ethabi = "18.0.0"
futures = "0.3.31"
hex = { version = "0.4.3", features = ["serde"] }
http = "1.1.0"
hyper = "1.5.0"
itertools = "0.13.0"
jsonrpsee = { version = "0.24.3", features = ["jsonrpsee-http-client", "server"] }
k256 = {version = "0.13.4", features = ["serde", "pem"] }
libp2p = { version = "0.54.0", features = ["cbor", "dns", "gossipsub", "macros", "tokio", "mdns", "request-response", "kad", "identify", "serde", "autonat", "quic"] }
lru = "0.12"
lz4 = "1.24"
once_cell = "1.20.2"
opentelemetry = { version = "0.26.0", features = ["metrics"] }
opentelemetry_sdk = { version = "0.26.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.26.0", features = ["metrics"] }
paste = "1.0.15"
prost = "0.13.3"
rand = "0.8.5"
rand_chacha = "0.3.1"
rand_core = "0.6.4"
revm = { version = "14.0.3", features = ["optional_no_base_fee"] }
revm-inspectors = { version = "0.8.1", features = ["js-tracer"] }
rusqlite = { version = "0.32.1", features = ["bundled", "trace"] }
serde = { version = "1.0.214", features = ["derive", "rc"] }
serde_bytes = "0.11.14"
serde_json = { version = "1.0.132", features = ["raw_value","arbitrary_precision"] }
sha2 = "0.10.8"
sha3 = "0.10.8"
sled = "0.34.7"
tempfile = "3.14.0"
time = { version = "0.3.36", features = ["formatting", "macros"] }
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread", "signal", "sync"] }
tokio-stream = "0.1.16"
toml = "0.8.19"
tower = "0.4.13"
tower-http = { version = "0.6.1", features = ["cors"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
cbor4ii = "0.3.2"
scilla-parser = "1.0.0"
scopeguard = "1.2.0"
blsful = { git = "https://github.com/JamesHinshelwood/agora-blsful", branch = "update-blstrs"}
bech32 = "0.11.0"
cfg-if = "1.0.0"
serde_repr = "0.1.19"
thiserror = "2.0.3"
[dev-dependencies]
alloy = { version = "0.4.2", default-features = false, features = ["rand"] }
async-trait = "0.1.83"
criterion = "0.5.1"
ethers = { version = "2.0.14", default-features = false, features = ["legacy"] }
foundry-compilers = { version = "0.11.6", features = ["svm-solc"] }
fs_extra = "1.3.0"
indicatif = "0.17.8"
primitive-types = { version = "0.12.2" }
semver = "1.0.23"
ureq = "2.10.1"
zilliqa = { path = ".", default-features = false, features = ["fake_response_channel", "fake_time"] }
zilliqa-macros = { path = "../zilliqa-macros" }
[[bench]]
name = "it"
harness = false