-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (38 loc) · 1.33 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
[workspace]
members = [
"client",
"translator"
]
default-members = ["client"]
resolver = "2"
[workspace.package]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
telos-translator-rs = { path = "./translator" }
reth-primitives = { git = "https://github.com/telosnetwork/telos-reth", branch = "telos-main" }
reth-trie-common = { git = "https://github.com/telosnetwork/telos-reth.git", branch = "telos-main" }
reth-telos-rpc-engine-api = { git = "https://github.com/telosnetwork/telos-reth.git", branch = "telos-main" }
#reth-trie-common = { path = "../telos-reth/crates/trie/common" }
#reth-telos-rpc-engine-api = { path = "../telos-reth/crates/telos/rpc-engine-api" }
#reth-primitives = { path = "../telos-reth/crates/primitives" }
alloy = "0.3.0"
alloy-rlp = "0.3.0"
alloy-rpc-types = "0.3.0"
alloy-rpc-types-engine = "0.3.0"
alloy-eips = "0.3.0"
alloy-consensus = "0.3.0"
antelope-client = { git = "https://github.com/telosnetwork/antelope-rs.git", rev = "d701cd9ca2e87e8e0fd99746f9c672cb3536e5ec" }
bytes = "1.7.1"
clap = { version = "4.5.6", features = ["derive"] }
serde = { version = "1.0.196", features = ["derive"] }
eyre = "0.6.5"
serde_json = "1.0.117"
tokio = { version = "1.38.0" }
toml = "0.8.8"
tracing = "0.1.40"
tracing-subscriber = "0.3.1"
hex = "0.4.3"
futures = "0.3.30"
rocksdb = "0.22.0"
tokio-retry = "0.3"
testcontainers = "0.22.0"