-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.12 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
[package]
name = "ethers-forked-evm-provider"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arrayref = "0.3"
address-literal = "1.2.0"
primitive-types = { version = "0.11.1" }
anyhow = "1.0"
auto_impl = "0.4"
async-trait = { version = "0.1.50", default-features = false }
async-recursion = "0.3"
bytes = { version = "1", default-features = false, features = ["serde"] }
ethers = { git = "https://github.com/guanqun/ethers-rs", features = ["ws", "openssl"] }
serde = { version = "1.0.124", features = ["derive"] }
evmodin = { git = "https://github.com/guanqun/evmodin", rev = "770e1791dce54c69102abc560de83bfa05d6ee34" }
sha2 = "0.9"
sha3 = "0.9"
futures = "0.3"
tokio = { version = "1", features = ["full"] }
hex-literal = "0.3"
substrate-bn = "0.6"
ripemd160 = "0.9"
num-bigint = "0.4"
secp256k1 = { version = "0.20", features = ["global-context", "recovery"] }
num-traits = "0.2"
rlp = "0.5"
rlp-derive = "0.1"
hex = "0.4"
derive_more = "0.99"
rusqlite = "0.26.1"
u256-literal = "1"
[dev-dependencies]
serde_json = "1.0"
tempfile = "3.2.0"