-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Cargo.toml
112 lines (96 loc) · 2.72 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[package]
name = "cast"
description = "Command-line tool for performing Ethereum RPC calls"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[lib]
name = "cast"
[[bin]]
name = "cast"
path = "bin/main.rs"
[build-dependencies]
vergen = { workspace = true, default-features = false, features = [
"build",
"git",
"gitcl",
] }
[dependencies]
# lib
foundry-block-explorers.workspace = true
foundry-common.workspace = true
foundry-compilers.workspace = true
foundry-config.workspace = true
foundry-evm.workspace = true
foundry-wallets.workspace = true
alloy-chains.workspace = true
alloy-consensus = { workspace = true, features = ["serde", "kzg"] }
alloy-contract.workspace = true
alloy-dyn-abi.workspace = true
alloy-json-abi.workspace = true
alloy-json-rpc.workspace = true
alloy-network.workspace = true
alloy-primitives.workspace = true
alloy-provider = { workspace = true, features = [
"reqwest",
"ws",
"ipc",
"trace-api",
] }
alloy-rlp.workspace = true
alloy-rpc-types = { workspace = true, features = ["eth", "trace"] }
alloy-serde.workspace = true
alloy-signer-local = { workspace = true, features = ["mnemonic", "keystore"] }
alloy-signer.workspace = true
alloy-sol-types.workspace = true
alloy-transport.workspace = true
chrono.workspace = true
eyre.workspace = true
futures.workspace = true
rand.workspace = true
rayon.workspace = true
serde_json.workspace = true
serde.workspace = true
# aws-kms
aws-sdk-kms = { version = "1", default-features = false, optional = true }
# bin
foundry-cli.workspace = true
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
clap_complete = "4"
clap_complete_fig = "4"
comfy-table.workspace = true
dunce.workspace = true
indicatif = "0.17"
itertools.workspace = true
regex = { workspace = true, default-features = false }
rpassword = "7"
semver.workspace = true
tempfile.workspace = true
tokio = { workspace = true, features = ["macros", "signal"] }
tracing.workspace = true
yansi.workspace = true
evmole.workspace = true
[target.'cfg(unix)'.dependencies]
tikv-jemallocator = { workspace = true, optional = true }
[dev-dependencies]
anvil.workspace = true
foundry-test-utils.workspace = true
async-trait.workspace = true
divan.workspace = true
[features]
default = ["rustls", "jemalloc"]
rustls = ["foundry-cli/rustls", "foundry-wallets/rustls"]
openssl = ["foundry-cli/openssl"]
asm-keccak = ["alloy-primitives/asm-keccak"]
jemalloc = ["dep:tikv-jemallocator"]
aws-kms = ["foundry-wallets/aws-kms", "dep:aws-sdk-kms"]
isolate-by-default = ["foundry-config/isolate-by-default"]
[[bench]]
name = "vanity"
harness = false