fix another deprecation in syntax

This commit is contained in:
Mario Voigt 2025-03-07 01:14:02 +01:00
parent 5b6f7df4fb
commit 6b428a87fa

View File

@ -8,12 +8,12 @@ edition = "2021"
[dependencies] [dependencies]
console-api = "0.3" console-api = "0.3"
prost-types = "0.10" prost-types = "0.10"
tonic = { version = "0.7.2", default_features = false, features = [] } tonic = { version = "0.7.2", default-features = false, features = [] }
hyper = { version = "0.14", default_features = false, features = ["http2", "server", "stream"] } hyper = { version = "0.14", default-features = false, features = ["http2", "server", "stream"] }
thread_local = "1.1" thread_local = "1.1"
tracing = "0.1" tracing = "0.1"
tracing-core = "0.1" tracing-core = "0.1"
tracing-subscriber = { version = "0.3", default_features = false, features = ["registry"] } tracing-subscriber = { version = "0.3", default-features = false, features = ["registry"] }
crossbeam-utils = "0.8" crossbeam-utils = "0.8"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
async-net = "1.6" async-net = "1.6"
@ -23,7 +23,7 @@ async-oneshot = "0.5"
async-io = "1.7" async-io = "1.7"
tokio-util = "0.7" tokio-util = "0.7"
futures-util = "0.3" futures-util = "0.3"
tokio = { version = "1.19", default_features = false, features = []} tokio = { version = "1.19", default-features = false, features = []}
hdrhistogram = "7.5" hdrhistogram = "7.5"
[dev-dependencies] [dev-dependencies]