update/upgrade libs, adding net for tokio

This commit is contained in:
2026-02-28 18:09:03 +01:00
parent 52ed9caa0e
commit 587498c7bc
2 changed files with 135 additions and 182 deletions

View File

@@ -4,19 +4,19 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.45.1", features = ["macros", "rt", "rt-multi-thread", "signal"] }
tokio-util = "0.7.15"
tokio = { version = "1.49.0", features = ["macros", "rt", "rt-multi-thread", "signal", "net"] }
tokio-util = "0.7.18"
http = "1.3.1"
http = "1.4.0"
http-body-util = "0.1.3"
hyper = { version = "1.6.0", features = ["http1", "server"] }
hyper = { version = "1.8.1", features = ["http1", "server"] }
hyper-util = { version = "0.1", features = ["http1", "server", "tokio"] }
serde = {version = "1.0.219", features = ["derive"]}
serde_json = "1.0.140"
serde = {version = "1.0.228", features = ["derive"]}
serde_json = "1.0.149"
log = { version = "0.4.27", features=["kv"]}
log = { version = "0.4.29", features=["kv"]}
[lib]
name = "servme"