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
This commit is contained in:
Henry Swanson 2024-04-24 09:47:11 -07:00 committed by Facebook GitHub Bot
parent ef50616df9
commit 374247cc0a
6 changed files with 6 additions and 6 deletions

View file

@ -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"] }

View file

@ -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"] }

View file

@ -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"] }

View file

@ -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"

View file

@ -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"] }

View file

@ -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 = []