runtime-rs: update tokio dependency

Unify it to the latest 1.28.1 version.

Signed-off-by: Peng Tao <bergwolf@hyper.sh>
This commit is contained in:
Peng Tao
2023-05-18 08:18:22 +00:00
parent 9630c13ac0
commit ca6892ddb1
13 changed files with 135 additions and 59 deletions

View File

@@ -18,7 +18,7 @@ serde_json = ">=1.0.9"
slog = "2.5.2"
slog-scope = "4.4.0"
ttrpc = { version = "0.7.1" }
tokio = { version = "1.8.0", features = ["fs", "rt"] }
tokio = { version = "1.28.1", features = ["fs", "rt"] }
url = "2.2.2"
nix = "0.24.2"

View File

@@ -21,7 +21,7 @@ serde_json = ">=1.0.9"
slog = "2.5.2"
slog-scope = "4.4.0"
thiserror = "1.0"
tokio = { version = "1.8.0", features = ["sync", "fs"] }
tokio = { version = "1.28.1", features = ["sync", "fs"] }
vmm-sys-util = "0.11.0"
rand = "0.8.4"

View File

@@ -13,7 +13,7 @@ edition = "2021"
anyhow = "1.0.68"
serde = { version = "1.0.145", features = ["rc", "derive"] }
serde_json = "1.0.91"
tokio = { version = "1.25.0", features = ["sync", "rt"] }
tokio = { version = "1.28.1", features = ["sync", "rt"] }
# Cloud Hypervisor public HTTP API functions
# Note that the version specified is not necessarily the version of CH

View File

@@ -30,7 +30,7 @@ serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
slog = "2.5.2"
slog-scope = "4.4.0"
tokio = { version = "1.8.0", features = ["process"] }
tokio = { version = "1.28.1", features = ["process"] }
uuid = { version = "0.4", features = ["v4"] }
agent = { path = "../agent" }

View File

@@ -11,7 +11,7 @@ lazy_static = "1.4.0"
netns-rs = "0.1.0"
slog = "2.5.2"
slog-scope = "4.4.0"
tokio = { version = "1.8.0", features = ["rt-multi-thread"] }
tokio = { version = "1.28.1", features = ["rt-multi-thread"] }
hyper = { version = "0.14.20", features = ["stream", "server", "http1"] }
hyperlocal = "0.8"
serde_json = "1.0.88"

View File

@@ -19,7 +19,7 @@ slog = "2.5.2"
slog-scope = "4.4.0"
strum = { version = "0.24.0", features = ["derive"] }
thiserror = "^1.0"
tokio = { version = "1.8.0", features = ["rt-multi-thread", "process", "fs"] }
tokio = { version = "1.28.1", features = ["rt-multi-thread", "process", "fs"] }
ttrpc = { version = "0.7.1" }
persist = {path = "../../persist"}
agent = { path = "../../agent" }

View File

@@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
anyhow = "^1.0"
async-trait = "0.1.48"
tokio = { version = "1.8.0" }
tokio = { version = "1.28.1" }
common = { path = "../common" }
kata-types = { path = "../../../../libs/kata-types" }
kata-types = { path = "../../../../libs/kata-types" }

View File

@@ -20,7 +20,7 @@ serde_derive = "1.0.27"
serde_json = "1.0.82"
slog = "2.5.2"
slog-scope = "4.4.0"
tokio = { version = "1.8.0" }
tokio = { version = "1.28.1" }
toml = "0.4.2"
url = "2.1.1"
async-std = "1.12.0"

View File

@@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
anyhow = "^1.0"
async-trait = "0.1.48"
tokio = { version = "1.8.0" }
tokio = { version = "1.28.1" }
common = { path = "../common" }
kata-types = { path = "../../../../libs/kata-types" }
kata-types = { path = "../../../../libs/kata-types" }

View File

@@ -10,7 +10,7 @@ anyhow = "^1.0"
async-trait = "0.1.48"
slog = "2.5.2"
slog-scope = "4.4.0"
tokio = { version = "1.8.0", features = ["rt-multi-thread"] }
tokio = { version = "1.28.1", features = ["rt-multi-thread"] }
ttrpc = { version = "0.7.1" }
common = { path = "../runtimes/common" }

View File

@@ -10,5 +10,5 @@ anyhow = "^1.0"
common = { path = "../runtimes/common" }
logging = { path = "../../../libs/logging"}
runtimes = { path = "../runtimes" }
tokio = { version = "1.8.0", features = [ "rt", "rt-multi-thread" ] }
tokio = { version = "1.28.1", features = [ "rt", "rt-multi-thread" ] }

View File

@@ -27,7 +27,7 @@ slog-async = "2.5.2"
slog-scope = "4.4.0"
slog-stdlog = "4.1.0"
thiserror = "1.0.30"
tokio = { version = "1.8.0", features = [ "rt", "rt-multi-thread" ] }
tokio = { version = "1.28.1", features = [ "rt", "rt-multi-thread" ] }
unix_socket2 = "0.5.4"
kata-types = { path = "../../../libs/kata-types"}