-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 964 Bytes
/
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
[package]
name = "cctl-rs"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[[bin]]
name = "cctld"
path = "bin/cctld.rs"
version = "0.2.0"
test = false
bench = false
[lib]
name = "cctl"
path = "src/lib.rs"
[dependencies]
anyhow = "1"
backoff = { version = "0.4", features = ["tokio", "futures"]}
clap = { version = "4", features = ["derive"] }
casper-client = { git = "https://github.com/casper-ecosystem/casper-client-rs", branch = "feat-track-node-2.0"}
casper-types= { git = "https://github.com/casper-network/casper-node", branch = "release-2.0.0-rc4" }
itertools = "0.13"
nom = "7"
hex = "0.4"
sd-notify = "0.4"
serde = "1"
serde_json = "1"
tokio = { version = "1", features = [ "full", "tracing", "macros" ] }
tempfile = "3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }
[patch.crates-io]
casper-types = { git = "https://github.com/casper-network/casper-node", branch = "release-2.0.0-rc4" }