forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
29 lines (27 loc) · 889 Bytes
/
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
[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]
dirs-next = "2.0.0"
semver = { version = "1.0.5", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_regex = "1.1.0"
toml = "0.5"
figment = { version = "0.10", features = ["toml", "env"] }
eyre = "0.6.5"
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"] }
Inflector = "0.11.4"
regex = "1.5.5"
#globset = { version = "0.4.8", features = ["serde1"] }
globset = "0.4.8"
[dev-dependencies]
pretty_assertions = "1.0.0"
figment = { version = "0.10", features = ["test"] }