bump tokio version to 1.21.2

Reviewed By: zertosh

Differential Revision: D40199323

fbshipit-source-id: 32355e73ea669a180ac759ddb02760db10c8b02b
This commit is contained in:
Andrey Buchinskiy 2022-10-14 15:24:20 -07:00 committed by Facebook GitHub Bot
parent f1336c3b2e
commit a24e92eea4
4 changed files with 4 additions and 4 deletions

View file

@ -57,5 +57,5 @@ reverie-ptrace = { version = "0.1.0", path = "../reverie-ptrace" }
reverie-util = { version = "0.1.0", path = "../reverie-util" } reverie-util = { version = "0.1.0", path = "../reverie-util" }
serde = { version = "1.0.136", features = ["derive", "rc"] } serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] } serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } tokio = { version = "1.21.2", features = ["full", "test-util", "tracing"] }
tracing = "0.1.35" tracing = "0.1.35"

View file

@ -17,7 +17,7 @@ nix = "0.25"
serde = { version = "1.0.136", features = ["derive", "rc"] } serde = { version = "1.0.136", features = ["derive", "rc"] }
syscalls = { version = "0.6.7", features = ["serde"] } syscalls = { version = "0.6.7", features = ["serde"] }
thiserror = "1.0.36" thiserror = "1.0.36"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } tokio = { version = "1.21.2", features = ["full", "test-util", "tracing"] }
[dev-dependencies] [dev-dependencies]
const-cstr = "0.3.0" const-cstr = "0.3.0"

View file

@ -26,7 +26,7 @@ reverie = { version = "0.1.0", path = "../reverie" }
safeptrace = { version = "0.1.0", path = "../safeptrace" } safeptrace = { version = "0.1.0", path = "../safeptrace" }
serde = { version = "1.0.136", features = ["derive", "rc"] } serde = { version = "1.0.136", features = ["derive", "rc"] }
thiserror = "1.0.36" thiserror = "1.0.36"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } tokio = { version = "1.21.2", features = ["full", "test-util", "tracing"] }
tokio-stream = { version = "0.1.4", features = ["fs", "io-util", "net", "signal", "sync", "time"] } tokio-stream = { version = "0.1.4", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
tracing = "0.1.35" tracing = "0.1.35"
tracing-subscriber = { version = "0.3.16", features = ["ansi", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] } tracing-subscriber = { version = "0.3.16", features = ["ansi", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] }

View file

@ -22,4 +22,4 @@ thiserror = "1.0.36"
[dev-dependencies] [dev-dependencies]
quickcheck = "1.0" quickcheck = "1.0"
quickcheck_macros = "1.0" quickcheck_macros = "1.0"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } tokio = { version = "1.21.2", features = ["full", "test-util", "tracing"] }