forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (42 loc) · 1.23 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 = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
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", default-features = false }
# formats
Inflector = "0.11.4"
figment = { version = "0.10", features = ["toml", "env"] }
number_prefix = "0.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_regex = "1.1.0"
toml = { version = "0.5", features = ["preserve_order"] }
toml_edit = "0.14.3"
# dirs
dirs-next = "2.0.0"
globset = "0.4.8"
walkdir = "2.3.2"
# encoding
fastrlp = { version = "0.1.2" }
# misc
eyre = "0.6.5"
regex = "1.5.5"
semver = { version = "1.0.5", features = ["serde"] }
tracing = "0.1"
once_cell = "1.13"
thiserror = "1.0"
[target.'cfg(target_os = "windows")'.dependencies]
path-slash = "0.2.0"
[dev-dependencies]
pretty_assertions = "1.0.0"
figment = { version = "0.10", features = ["test"] }
tempfile = "3.3.0"