From 460387b9c825432c34aae2922170325ad8b78565 Mon Sep 17 00:00:00 2001 From: Astrid Yu Date: Wed, 12 Jul 2023 15:32:56 -0700 Subject: [PATCH] third-party/rust: bump tokio v1.25.0 -> v1.29.1 Summary: Needed for reqwest QUIC support (requirement of ^1.28) Reviewed By: zertosh Differential Revision: D47304356 fbshipit-source-id: d39999373ae51f79123927a073f3073e21a10078 --- 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 f34b3b7..0eb407e 100644 --- a/experimental/reverie-host/Cargo.toml +++ b/experimental/reverie-host/Cargo.toml @@ -14,4 +14,4 @@ reverie-process = { version = "0.1.0", path = "../../reverie-process" } reverie-rpc = { version = "0.1.0", path = "../reverie-rpc" } serde = { version = "1.0.167", features = ["derive", "rc"] } tempfile = "3.5" -tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] } diff --git a/experimental/riptrace/Cargo.toml b/experimental/riptrace/Cargo.toml index 0f14f06..f43c3d8 100644 --- a/experimental/riptrace/Cargo.toml +++ b/experimental/riptrace/Cargo.toml @@ -16,4 +16,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.25.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] } diff --git a/reverie-examples/Cargo.toml b/reverie-examples/Cargo.toml index 73a2a14..0a7bb5d 100644 --- a/reverie-examples/Cargo.toml +++ b/reverie-examples/Cargo.toml @@ -52,5 +52,5 @@ reverie-ptrace = { version = "0.1.0", path = "../reverie-ptrace" } reverie-util = { version = "0.1.0", path = "../reverie-util" } serde = { version = "1.0.167", features = ["derive", "rc"] } serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] } -tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] } tracing = "0.1.35" diff --git a/reverie-process/Cargo.toml b/reverie-process/Cargo.toml index 051b0ea..be0b7e5 100644 --- a/reverie-process/Cargo.toml +++ b/reverie-process/Cargo.toml @@ -17,7 +17,7 @@ nix = "0.25" serde = { version = "1.0.167", features = ["derive", "rc"] } syscalls = { version = "0.6.7", features = ["serde"] } thiserror = "1.0.43" -tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.29.1", 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 301a303..6ce6ccb 100644 --- a/reverie-ptrace/Cargo.toml +++ b/reverie-ptrace/Cargo.toml @@ -27,7 +27,7 @@ reverie = { version = "0.1.0", path = "../reverie" } safeptrace = { version = "0.1.0", path = "../safeptrace", features = ["memory", "notifier"] } serde = { version = "1.0.167", features = ["derive", "rc"] } thiserror = "1.0.43" -tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] } tokio-stream = { version = "0.1.14", features = ["fs", "io-util", "net", "signal", "sync", "time"] } tracing = "0.1.35" tracing-subscriber = { version = "0.3.17", features = ["ansi", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] } diff --git a/safeptrace/Cargo.toml b/safeptrace/Cargo.toml index d786c15..5fc5c80 100644 --- a/safeptrace/Cargo.toml +++ b/safeptrace/Cargo.toml @@ -22,7 +22,7 @@ thiserror = "1.0.43" [dev-dependencies] quickcheck = "1.0" quickcheck_macros = "1.0" -tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] } +tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] } [features] default = []