From 374247cc0af2b866ea87d449b0a014df46f54ce4 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 --- experimental/reverie-host/Cargo.toml | 2 +- experimental/riptrace/Cargo.toml | 2 +- reverie-examples/Cargo.toml | 2 +- reverie-process/Cargo.toml | 2 +- reverie-ptrace/Cargo.toml | 2 +- safeptrace/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/experimental/reverie-host/Cargo.toml b/experimental/reverie-host/Cargo.toml index 4ab4c4d..48a447c 100644 --- a/experimental/reverie-host/Cargo.toml +++ b/experimental/reverie-host/Cargo.toml @@ -15,4 +15,4 @@ reverie-process = { version = "0.1.0", path = "../../reverie-process" } reverie-rpc = { version = "0.1.0", path = "../reverie-rpc" } serde = { version = "1.0.185", features = ["derive", "rc"] } tempfile = "3.8" -tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } diff --git a/experimental/riptrace/Cargo.toml b/experimental/riptrace/Cargo.toml index 7c6b8d9..01a7e9a 100644 --- a/experimental/riptrace/Cargo.toml +++ b/experimental/riptrace/Cargo.toml @@ -17,4 +17,4 @@ reverie-host = { version = "0.1.0", path = "../reverie-host" } reverie-process = { version = "0.1.0", path = "../../reverie-process" } riptrace-rpc = { version = "0.1.0", path = "rpc" } syscalls = { version = "0.6.7", features = ["serde"] } -tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } diff --git a/reverie-examples/Cargo.toml b/reverie-examples/Cargo.toml index 8f8b317..13f8119 100644 --- a/reverie-examples/Cargo.toml +++ b/reverie-examples/Cargo.toml @@ -53,5 +53,5 @@ reverie-ptrace = { version = "0.1.0", path = "../reverie-ptrace" } reverie-util = { version = "0.1.0", path = "../reverie-util" } serde = { version = "1.0.185", features = ["derive", "rc"] } serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] } -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"] } diff --git a/reverie-process/Cargo.toml b/reverie-process/Cargo.toml index c01a5cf..14e551c 100644 --- a/reverie-process/Cargo.toml +++ b/reverie-process/Cargo.toml @@ -18,7 +18,7 @@ nix = "0.25" serde = { version = "1.0.185", features = ["derive", "rc"] } syscalls = { version = "0.6.7", features = ["serde"] } thiserror = "1.0.49" -tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } [dev-dependencies] const-cstr = "0.3.0" diff --git a/reverie-ptrace/Cargo.toml b/reverie-ptrace/Cargo.toml index de99aa9..316aa21 100644 --- a/reverie-ptrace/Cargo.toml +++ b/reverie-ptrace/Cargo.toml @@ -28,7 +28,7 @@ reverie = { version = "0.1.0", path = "../reverie" } safeptrace = { version = "0.1.0", path = "../safeptrace", features = ["memory", "notifier"] } serde = { version = "1.0.185", features = ["derive", "rc"] } thiserror = "1.0.49" -tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } tokio-stream = { version = "0.1.14", features = ["fs", "io-util", "net", "signal", "sync", "time"] } 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/safeptrace/Cargo.toml b/safeptrace/Cargo.toml index a1362e3..220ce92 100644 --- a/safeptrace/Cargo.toml +++ b/safeptrace/Cargo.toml @@ -23,7 +23,7 @@ thiserror = "1.0.49" [dev-dependencies] quickcheck = "1.0" quickcheck_macros = "1.0" -tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] } [features] default = []