-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
54 lines (50 loc) · 1.21 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
[package]
name = "pluto-cli"
version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
publish.workspace = true
[[bin]]
name = "pluto"
path = "src/main.rs"
[dependencies]
clap.workspace = true
thiserror.workspace = true
k256.workspace = true
hex.workspace = true
humantime.workspace = true
tokio.workspace = true
pluto-app.workspace = true
pluto-cluster.workspace = true
pluto-crypto.workspace = true
pluto-relay-server.workspace = true
pluto-tracing.workspace = true
pluto-core.workspace = true
pluto-p2p.workspace = true
pluto-eth1wrap.workspace = true
pluto-eth2api.workspace = true
pluto-eth2util.workspace = true
pluto-k1util.workspace = true
pluto-ssz.workspace = true
libp2p.workspace = true
tokio-util.workspace = true
tracing.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with = { workspace = true, features = ["base64"] }
rand.workspace = true
tempfile.workspace = true
reqwest.workspace = true
url.workspace = true
chrono.workspace = true
uuid.workspace = true
flate2.workspace = true
tar.workspace = true
[dev-dependencies]
tempfile.workspace = true
test-case.workspace = true
backon.workspace = true
wiremock.workspace = true
[lints]
workspace = true