-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (50 loc) · 1.76 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (50 loc) · 1.76 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
[package]
name = "eth-staking-smith"
version = "0.1.0-dev"
edition = "2021"
description = "Deposit CLI replacement library"
authors = ["tech@chorus.one"]
publish = false
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "eth_staking_smith"
path = "src/lib.rs"
[dependencies]
# Lighthouse git dependencies.
eth2_key_derivation = { git = "https://github.com/ChorusOne/lighthouse", rev = "664a8fae9650ecba457fccbb561c5c0d6c270e3b"}
eth2_keystore = { git = "https://github.com/ChorusOne/lighthouse", rev = "664a8fae9650ecba457fccbb561c5c0d6c270e3b"}
eth2_network_config = { git = "https://github.com/ChorusOne/lighthouse", rev = "664a8fae9650ecba457fccbb561c5c0d6c270e3b" }
eth2_wallet = { git = "https://github.com/ChorusOne/lighthouse", rev = "664a8fae9650ecba457fccbb561c5c0d6c270e3b"}
types = { git = "https://github.com/ChorusOne/lighthouse", rev = "664a8fae9650ecba457fccbb561c5c0d6c270e3b"}
# These must be pinned to a version that lighthouse version used above uses.
ethereum_hashing = "0.7.0"
ethereum_ssz = "0.7"
ethereum_ssz_derive = "0.7"
tree_hash = "0.8"
tree_hash_derive = "0.8"
clap = { version = "^4.5", features = ["derive", "env"] }
env_logger = "^0.11"
hex = "0.4"
lazy_static = "1.5"
log = "^0.4"
# eth2_network_config uses native-tls, so do we
reqwest = { version = "0.12", default-features = false, features = ["blocking", "native-tls"] }
getrandom = "0.3"
regex = "1.10.6"
serde = "1.0.204"
serde_derive = "1.0"
serde_json = "1.0"
tiny-bip39 = "2.0.0"
url = "2.5"
uuid = { version = "1.10", features = ["v4"] }
[dev-dependencies]
test-log = "^0.2"
pretty_assertions = "^1.4"
assert_cmd = "2.0"
predicates = "3.0"
httpmock = "0.7"
serial_test = "*"
[[test]]
name = "e2e-tests"
path = "tests/lib.rs"