-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
45 lines (41 loc) · 1.38 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
[package]
name = "eclair"
version = "0.1.4-dev"
edition = "2021"
[dependencies]
anyhow = { version = "^1.0.0", features = ["backtrace"] }
glob = "^0.3.0"
rustyline = { version = "^14.0.0", features = [
"with-sqlite-history",
"derive",
] }
serde_json = "^1.0.0"
solang-parser = "^0.3.0"
clap = { version = "^4.5.0", features = ["derive"] }
foundry-cli = { git = "https://github.com/foundry-rs/foundry", tag = "nightly-5ac78a9cd4b94dc53d1fe5e0f42372b28b5a7559" }
foundry-config = { git = "https://github.com/foundry-rs/foundry", tag = "nightly-5ac78a9cd4b94dc53d1fe5e0f42372b28b5a7559" }
chisel = { git = "https://github.com/foundry-rs/foundry", tag = "nightly-5ac78a9cd4b94dc53d1fe5e0f42372b28b5a7559" }
url = "2.5.1"
futures = "0.3.30"
tokio = { version = "1.38.0", features = ["rt-multi-thread"] }
alloy = { version = "0.2.0", features = [
"full",
"signer-ledger",
"signer-keystore",
"node-bindings",
"provider-anvil-api",
"provider-debug-api",
] }
itertools = "0.13.0"
rpassword = "7.3.1"
coins-ledger = "0.11.1"
async-trait = "0.1.80"
futures-util = "0.3.30"
semver = "1.0.23"
shellexpand = { version = "3.1.0", features = ["path"] }
indexmap = "2.2.6"
lazy_static = "1.5.0"
textwrap = { version = "0.16.1", features = ["terminal_size"] }
[build-dependencies]
git2-rs = { version = "0.19.0", package = "git2", default-features = false }
anyhow = { version = "^1.0.0" }