latest pushes

This commit is contained in:
2024-10-25 00:10:40 -04:00
parent 6c02e9a0a5
commit 28749bd777
7 changed files with 780 additions and 110 deletions

View File

@@ -15,7 +15,7 @@ categories = ["network-programming", "asynchronous"]
path = "src/bellande_mesh_sync.rs"
[dependencies]
tokio = { version = "1.28", features = ["rt", "net", "time", "sync", "macros"] }
tokio = { version = "1.0", features = ["full"] }
hyper-rustls = { version = "0.24", features = ["http1", "http2"] }
serde = { version = "1.0", features = ["derive"] }
hyper = { version = "0.14", features = ["full"] }
@@ -24,3 +24,8 @@ serde_json = "1.0"
bincode = "1.3"
rand = "0.8"
uuid = { version = "1.3", features = ["v4", "serde"] }
rustls = "0.21"
chrono = { version = "0.4", features = ["serde"] }
sled = "0.34"
tokio-util = { version = "0.7", features = ["full"] }
async-trait = "0.1"