forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (54 loc) · 1.56 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
[package]
name = "chisel"
version = "0.1.1"
edition = "2021"
authors = ["clabby <https://github.com/clabby>", "asnared <https://github.com/abigger87>"]
description = "Solidity REPL"
repository = "https://github.com/foundry-rs/foundry/tree/main/chisel"
license = "MIT"
keywords = ["Rust", "Ethereum", "Foundry", "Chisel", "REPL", "Solidity", "Solang"]
[lib]
name = "chisel"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "chisel"
path = "src/bin/chisel.rs"
[dependencies]
# forge
foundry-evm = { path = "../evm" }
forge = { path = "../forge" }
foundry-config = { path = "../config" }
foundry-cli = { path = "../cli" }
foundry-common = { path = "../common" }
forge-fmt = { path = "../fmt" }
# ethers
ethers = { workspace = true }
ethers-solc = { workspace = true, features = ["project-util", "full"] }
# async
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", default-features = false, features = ["rustls"] }
# misc
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
rustyline = "11"
solang-parser = "=0.2.4"
yansi = "0.5"
strum = { version = "0.24", features = ["derive"] }
serde = "1"
serde_json = { version = "1", features = ["raw_value"] }
semver = "1"
bytes = "1"
revm = "3"
eyre = "0.6"
dirs = "5"
time = { version = "0.3", features = ["formatting"] }
regex = "1"
[dev-dependencies]
criterion = { version = "0.4", features = ["async_tokio"] }
serial_test = "2"
once_cell = "1"
[build-dependencies]
vergen = { version = "8", default-features = false, features = ["build", "git", "git2"] }
[[bench]]
name = "session_source"
harness = false