From 1f396e1a43a3ade432111e4cc265703e0ffaa88b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 01:58:32 +0000 Subject: [PATCH] Bump tokio from 1.17.0 to 1.18.5 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.17.0 to 1.18.5. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.17.0...tokio-1.18.5) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 ++--- cargo-bpf/Cargo.toml | 2 +- examples/example-userspace/Cargo.toml | 2 +- redbpf-tools/Cargo.toml | 2 +- redbpf/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7caa41a..53116b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1010,15 +1010,14 @@ dependencies = [ [[package]] name = "tokio" -version = "1.17.0" +version = "1.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee" +checksum = "0e050c618355082ae5a89ec63bbf897225d5ffe84c7c4e036874e4d185a5044e" dependencies = [ "bytes", "libc", "memchr", "mio", - "once_cell", "pin-project-lite", "signal-hook-registry", "socket2", diff --git a/cargo-bpf/Cargo.toml b/cargo-bpf/Cargo.toml index 937bae3..2ccd226 100644 --- a/cargo-bpf/Cargo.toml +++ b/cargo-bpf/Cargo.toml @@ -26,7 +26,7 @@ libbpf-sys = { version = "0.6.2", optional = true } bpf-sys = { version = "2.3.0", path = "../bpf-sys", optional = true } redbpf = { version = "2.3.0", path = "../redbpf", default-features = false, optional = true } futures = { version = "0.3", optional = true } -tokio = { version = "^1.0.1", features = ["rt", "macros", "signal"], optional = true } +tokio = { version = "^1.18.5", features = ["rt", "macros", "signal"], optional = true } hexdump = { version = "0.1", optional = true } libc = {version = "0.2.66", optional = true} syn = { version = "1.0", features = ["full", "visit"], optional = true } diff --git a/examples/example-userspace/Cargo.toml b/examples/example-userspace/Cargo.toml index e373a11..ea8fa5b 100644 --- a/examples/example-userspace/Cargo.toml +++ b/examples/example-userspace/Cargo.toml @@ -17,7 +17,7 @@ tracing-subscriber = "0.3.3" [dependencies] probes = { path = "../example-probes", package = "example-probes" } libc = "0.2" -tokio = { version = "^1.0.1", features = ["rt", "signal", "time", "io-util", "net", "sync"] } +tokio = { version = "^1.18.5", features = ["rt", "signal", "time", "io-util", "net", "sync"] } redbpf = { path = "../../redbpf", features = ["load"] } futures = "0.3" tracing = "0.1.26" diff --git a/redbpf-tools/Cargo.toml b/redbpf-tools/Cargo.toml index 72b3bb5..f7d13ce 100644 --- a/redbpf-tools/Cargo.toml +++ b/redbpf-tools/Cargo.toml @@ -12,7 +12,7 @@ cargo-bpf = { path = "../cargo-bpf", default-features = false, features = ["buil [dependencies] probes = { path = "./probes" } redbpf = { path = "../redbpf", features = ["load"] } -tokio = { version = "^1.0.1", features = ["rt", "macros", "signal", "time"] } +tokio = { version = "^1.18.5", features = ["rt", "macros", "signal", "time"] } futures = "0.3" getopts = "0.2" libc = "0.2" diff --git a/redbpf/Cargo.toml b/redbpf/Cargo.toml index 09c2de0..9f74054 100644 --- a/redbpf/Cargo.toml +++ b/redbpf/Cargo.toml @@ -30,7 +30,7 @@ serde_json = { version = "^1.0", optional = true} ring = { version = "0.16", optional = true } futures = { version = "0.3", optional = true } -tokio = { version = "^1.0.1", features = ["rt", "macros", "signal", "net"], optional = true } +tokio = { version = "^1.18.5", features = ["rt", "macros", "signal", "net"], optional = true } tracing = "0.1.26" [features]