forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
58 lines (49 loc) · 1.44 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
54
55
56
57
58
[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
[lints]
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.workspace = true
eyre.workspace = true
figment = { workspace = true, features = ["toml", "env"] }
globset = "0.4"
glob = "0.3"
Inflector = "0.11"
number_prefix = "0.4"
once_cell.workspace = true
regex = "1"
reqwest.workspace = true
semver = { workspace = true, features = ["serde"] }
serde_json.workspace = true
serde_regex = "1"
serde.workspace = true
thiserror.workspace = true
toml = { version = "0.8", features = ["preserve_order"] }
toml_edit = "0.22.4"
tracing.workspace = true
walkdir.workspace = true
[target.'cfg(target_os = "windows")'.dependencies]
path-slash = "0.2.1"
[dev-dependencies]
similar-asserts.workspace = true
figment = { workspace = true, features = ["test"] }
tempfile.workspace = true
[features]
default = ["rustls"]
rustls = ["reqwest/rustls-tls-native-roots"]
isolate-by-default = []