Added base64 crate for printing out key bytes

This commit is contained in:
Dave Hrycyszyn
2024-06-06 11:48:58 +01:00
parent 1341b29e71
commit 74c03da3b6

View File

@@ -9,6 +9,7 @@ edition = "2021"
clap = { version = "4.5.4", features = ["derive"] } clap = { version = "4.5.4", features = ["derive"] }
tokio = { version = "1.37.0", features = ["time"] } tokio = { version = "1.37.0", features = ["time"] }
websockets = "0.3.0" websockets = "0.3.0"
base64 = "0.21.7"
bft-json-crdt = { path = "../crates/bft-json-crdt" } bft-json-crdt = { path = "../crates/bft-json-crdt" }
bft-crdt-derive = { path = "../crates/bft-json-crdt/bft-crdt-derive" } bft-crdt-derive = { path = "../crates/bft-json-crdt/bft-crdt-derive" }
# serde_cbor = "0.11.2" # move to this once we need to pack things in CBOR # serde_cbor = "0.11.2" # move to this once we need to pack things in CBOR