Periodic websocket sends are now working

This commit is contained in:
Dave Hrycyszyn
2024-05-29 17:29:20 +01:00
parent f6b5825cea
commit fff4bfe9ee
5 changed files with 1340 additions and 16 deletions

View File

@@ -7,5 +7,14 @@ edition = "2021"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
tokio = "*"
tokio = { version = "1.37.0", features = ["time"] }
websockets = "0.3.0"
bft-json-crdt = { path = "../../bft-json-crdt" }
bft-crdt-derive = { path = "../../bft-json-crdt/bft-crdt-derive" }
[features]
default = ["bft", "logging-list", "logging-json"]
logging-list = ["logging-base"]
logging-json = ["logging-base"]
logging-base = []
bft = []