From 552df53314e22e4c82b0c576cfd97d92acbd8d9c Mon Sep 17 00:00:00 2001 From: Henry Swanson Date: Wed, 24 Apr 2024 09:47:11 -0700 Subject: [PATCH] Update tokio: 1.36.0 -> 1.37.0 Summary: Followed the wiki page here: https://www.internalfb.com/intern/wiki/Rust/Third_Party_Libraries/Adding_or_Updating_Libraries/ Reviewed By: capickett Differential Revision: D56484070 fbshipit-source-id: e1ed52d58f7db8ad32ce67b67df2e83a567db123 --- detcore/Cargo.toml | 2 +- detcore/tests/testutils/Cargo.toml | 2 +- hermit-cli/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/detcore/Cargo.toml b/detcore/Cargo.toml index 6a277e3..9ab34b2 100644 --- a/detcore/Cargo.toml +++ b/detcore/Cargo.toml @@ -47,7 +47,7 @@ reverie = { version = "0.1.0", git = "https://github.com/facebookexperimental/re serde = { version = "1.0.185", features = ["derive", "rc"] } serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] } tempfile = "3.8" -tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } tracing = { version = "0.1.40", features = ["attributes"] } [dev-dependencies] diff --git a/detcore/tests/testutils/Cargo.toml b/detcore/tests/testutils/Cargo.toml index 21b16c7..43a345f 100644 --- a/detcore/tests/testutils/Cargo.toml +++ b/detcore/tests/testutils/Cargo.toml @@ -14,6 +14,6 @@ pretty_assertions = { version = "1.2", features = ["alloc"], default-features = reverie = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" } reverie-ptrace = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" } test-allocator = { version = "0.0.0", path = "../../../common/test-allocator" } -tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } tracing = { version = "0.1.40", features = ["attributes"] } tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] } diff --git a/hermit-cli/Cargo.toml b/hermit-cli/Cargo.toml index 92f35e2..db255e7 100644 --- a/hermit-cli/Cargo.toml +++ b/hermit-cli/Cargo.toml @@ -33,7 +33,7 @@ serde = { version = "1.0.185", features = ["derive", "rc"] } serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] } shell-words = "1.1.0" tempfile = "3.8" -tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } tracing = { version = "0.1.40", features = ["attributes"] } tracing-appender = "0.2.2" tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }