forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (45 loc) · 1.32 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
50
51
52
53
[package]
name = "foundry-config"
description = "Foundry configuration"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
foundry-block-explorers = { workspace = true, features = ["foundry-compilers"] }
foundry-compilers = { workspace = true, features = ["svm-solc"] }
alloy-chains = { workspace = true, features = ["serde"] }
alloy-primitives = { workspace = true, features = ["serde"] }
revm-primitives.workspace = true
solang-parser.workspace = true
dirs-next = "2"
dunce = "1"
eyre.workspace = true
figment = { version = "0.10", features = ["toml", "env"] }
globset = "0.4"
Inflector = "0.11"
number_prefix = "0.4"
once_cell = "1"
regex = "1"
reqwest.workspace = true
semver = { version = "1", features = ["serde"] }
serde_json.workspace = true
serde_regex = "1"
serde.workspace = true
thiserror = "1"
toml = { version = "0.8", features = ["preserve_order"] }
toml_edit = "0.22.4"
tracing.workspace = true
walkdir = "2"
[target.'cfg(target_os = "windows")'.dependencies]
path-slash = "0.2.1"
[dev-dependencies]
pretty_assertions.workspace = true
figment = { version = "0.10", features = ["test"] }
tempfile = "3"
[features]
default = ["rustls"]
rustls = ["reqwest/rustls-tls-native-roots"]