forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (61 loc) · 2.02 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 = { workspace = true, default-features = false, features = ["build", "git", "gitcl"] }
[dependencies]
# forge
forge-fmt.workspace = true
foundry-block-explorers.workspace = true
foundry-cli.workspace = true
foundry-common.workspace = true
foundry-compilers = { workspace = true, features = ["project-util", "full"] }
foundry-config.workspace = true
foundry-evm.workspace = true
alloy-dyn-abi = { workspace = true, features = ["arbitrary"] }
alloy-primitives = { workspace = true, features = ["serde", "getrandom", "arbitrary", "rlp"] }
alloy-json-abi.workspace = true
alloy-rpc-types.workspace = true
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
dirs = "5"
eyre.workspace = true
once_cell = "1.18.0"
regex = "1"
reqwest = { version = "0.11", default-features = false }
revm.workspace = true
rustyline = "12"
semver = "1"
serde_json.workspace = true
serde.workspace = true
solang-parser.workspace = true
strum = { workspace = true, features = ["derive"] }
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1", features = ["full"] }
yansi = "0.5"
tracing.workspace = true
[target.'cfg(unix)'.dependencies]
tikv-jemallocator = { workspace = true, optional = true }
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
once_cell = "1"
serial_test = "3"
tracing-subscriber.workspace = true
[features]
default = ["rustls"]
rustls = ["reqwest/rustls-tls", "reqwest/rustls-tls-native-roots"]
openssl = ["foundry-compilers/openssl", "reqwest/default-tls"]
asm-keccak = ["alloy-primitives/asm-keccak"]
jemalloc = ["dep:tikv-jemallocator"]
[[bench]]
name = "session_source"
harness = false