-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (64 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (64 loc) · 1.63 KB
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
[package]
name = "chainz"
version = "0.4.0"
edition = "2024"
rust-version = "1.88"
description = "CLI for managing EVM chain configurations, RPC endpoints, and private keys"
repository = "https://github.com/marktoda/chainz"
license = "MIT"
readme = "README.md"
include = [
"src/**",
"tests/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"RELEASING.md",
"CHANGELOG.md",
"LICENSE",
]
keywords = ["ethereum", "evm", "cli", "web3", "blockchain"]
categories = ["command-line-utilities", "cryptography::cryptocurrencies", "development-tools"]
publish = ["crates-io"]
[dependencies]
alloy = { version = "1", default-features = false, features = [
"std",
"reqwest",
"reqwest-rustls-tls",
"provider-http",
"provider-ws",
"signer-local",
] }
anyhow = "1"
console = "0.16"
dialoguer = { version = "0.12", features = ["fuzzy-select"] }
dirs = "6"
fs2 = "0.4"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"json",
] }
rpassword = "7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "time"] }
indicatif = "0.18"
aes-gcm = "0.10"
base64 = "0.22"
keyring = { version = "3", features = [
"apple-native",
"windows-native",
"sync-secret-service",
# Build libdbus from source on Linux so `cargo install chainz` works
# without system dbus dev headers (and CI needs no apt packages)
"vendored",
] }
rand = "0.9"
argon2 = "0.5"
zeroize = "1"
tempfile = "3"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"