Files
bft-crdt-experiment/side-node/Cargo.toml

30 lines
830 B
TOML
Raw Normal View History

2024-05-29 08:32:40 +01:00
[package]
name = "side-node"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.21.7"
bft-json-crdt = { path = "../crates/bft-json-crdt" }
bft-crdt-derive = { path = "../crates/bft-json-crdt/bft-crdt-derive" }
2024-06-06 11:49:10 +01:00
clap = { version = "4.5.4", features = ["derive"] }
dirs = "5.0.1"
# serde_cbor = "0.11.2" # move to this once we need to pack things in CBOR
2024-05-29 18:17:34 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.117"
serde_with = "3.8.1"
2024-06-06 13:16:41 +01:00
sha256 = "1.5.0"
2024-06-06 13:54:15 +01:00
tokio = { version = "1.37.0", features = ["full"] }
2024-06-06 11:49:10 +01:00
websockets = "0.3.0"
2024-06-06 14:39:50 +01:00
pem = "3.0.4"
2024-06-06 15:54:33 +01:00
toml = "0.8.14"
[features]
default = ["bft", "logging-list", "logging-json"]
logging-list = ["logging-base"]
logging-json = ["logging-base"]
logging-base = []
bft = []