forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (59 loc) · 1.84 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
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "chisel"
authors = ["clabby <https://github.com/clabby>", "asnared <https://github.com/abigger87>"]
description = "Fast, utilitarian, and verbose Solidity REPL"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[[bin]]
name = "chisel"
path = "bin/main.rs"
[build-dependencies]
vergen = { version = "8", default-features = false, features = ["build", "git", "git2"] }
[dependencies]
# forge
foundry-evm.workspace = true
foundry-config.workspace = true
foundry-cli.workspace = true
foundry-common.workspace = true
foundry-utils.workspace = true
forge-fmt.workspace = true
foundry-compilers = { workspace = true, features = ["project-util", "full"] }
# ethers
ethers.workspace = true
# alloy
alloy-dyn-abi = { workspace = true, features = ["arbitrary"] }
alloy-primitives = { workspace = true, features = ["serde", "getrandom", "arbitrary", "rlp"] }
alloy-json-abi.workspace = true
# async
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", default-features = false }
# misc
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
rustyline = "12"
solang-parser.workspace = true
yansi = "0.5"
strum = { version = "0.25", features = ["derive"] }
serde.workspace = true
serde_json.workspace = true
semver = "1"
revm.workspace = true
eyre.workspace = true
dirs = "5"
time = { version = "0.3", features = ["formatting"] }
regex = "1"
once_cell = "1.18.0"
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
serial_test = "2"
once_cell = "1"
[features]
default = ["rustls"]
rustls = ["ethers/rustls", "reqwest/rustls-tls", "reqwest/rustls-tls-native-roots"]
openssl = ["ethers/openssl", "foundry-compilers/openssl", "reqwest/default-tls"]
[[bench]]
name = "session_source"
harness = false