-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "ethlift"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
toml = "0.5"
clap = "2.33"
directories = "4.0"
serde_yaml = "0.8.7"
ethers-solc = { git = "https://github.com/gakonst/ethers-rs", default-features = false, features = ["async", "svm-solc"] }
ethers-etherscan = { git = "https://github.com/gakonst/ethers-rs"}
ethers-core = { git = "https://github.com/gakonst/ethers-rs"}
foundry-config = { git = "https://github.com/foundry-rs/foundry"}
tokio = { version = "1.18", features = ["macros", "rt-multi-thread"] }
similar = "2.1.0"
diffy="0.2.2"
[dev-dependencies]
assert_cmd = "2"
predicates = "2"