forked from mouseless0x/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.08 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
[package]
name = "foundry-config"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Foundry configuration"
repository = "https://github.com/foundry-rs/foundry"
readme = "README.md"
[dependencies]
# eth
ethers-core = { workspace = true }
ethers-solc = { workspace = true, features = ["async", "svm-solc"] }
ethers-etherscan = { workspace = true }
# formats
Inflector = "0.11"
figment = { version = "0.10", features = ["toml", "env"] }
number_prefix = "0.4"
serde = { version = "1", features = ["derive"] }
serde_regex = "1"
serde_json = "1"
toml = { version = "0.7", features = ["preserve_order"] }
toml_edit = "0.19"
# dirs
dirs-next = "2"
globset = "0.4"
walkdir = "2"
# encoding
open-fastrlp = "0.1"
# misc
eyre = "0.6"
regex = "1"
semver = { version = "1", features = ["serde"] }
tracing = "0.1"
once_cell = "1"
thiserror = "1"
reqwest = { version = "0.11", default-features = false }
[target.'cfg(target_os = "windows")'.dependencies]
path-slash = "0.2.1"
[dev-dependencies]
pretty_assertions = "1"
figment = { version = "0.10", features = ["test"] }
tempfile = "3"