-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (26 loc) · 1003 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
[workspace]
resolver = "2"
members = ["binary-port-access"]
[package]
name = "casper-binary-port-client"
version = "0.1.0"
edition = "2021"
authors = ["Rafał Chabowski <[email protected]>"]
description = "CLI for Casper binary port."
license = "Apache-2.0"
[workspace.dependencies]
casper-types = { git = "https://github.com/casper-network/casper-node", branch = "dev", default-features = false }
casper-binary-port = { version = "1.0.0", git = "https://github.com/casper-network/casper-node", branch = "dev" }
thiserror = "2.0.11"
[dependencies]
casper-types = { workspace = true, features = ["std-fs-io"] }
casper-binary-port.workspace = true
thiserror.workspace = true
casper-binary-port-access = { path = "./binary-port-access" }
clap = { version = "4.5.20", features = ["derive", "wrap_help"] }
tokio = { version = "1.41.0", features = ["macros", "rt", "net"] }
hex = "0.4.3"
serde = { version = "1.0.211", features = ["derive"] }
serde_json = "1.0.132"
erased-serde = "0.4.5"
rand = "0.9.0"