-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (30 loc) · 910 Bytes
/
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
[package]
name = "gas-estimation"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
futures = "0.3"
primitive-types = { version = "0.12", features = ["fp-conversion"], optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.0"
tokio = { version = "1.9", features = ["sync", "time", "rt"], optional = true }
tracing = "0.1"
url = "2.0"
web3 = { version = "0.19", default-features = false, optional = true }
http = "0.2.4"
[features]
tokio_ = ["tokio"]
web3_ = ["web3", "primitive-types"]
[dev-dependencies]
assert_approx_eq = "1.1"
mockall = "0.11"
serde_json = "1.0"
tokio = { version = "1.9", features = ["macros", "rt", "time"] }
tracing-subscriber = "0.3"
reqwest = { version = "0.11", features = ["json"] }
primitive-types = { version = "0.12", features = ["fp-conversion"] }
web3 = "0.19"