mirror of
https://github.com/facebookexperimental/reverie.git
synced 2024-11-24 12:17:50 +00:00
Upgrade tokio
Summary: Need to add some third-party, which is pulling newer tokio. Land upgrade separately for visibility and for easier bisect and revert. Reviewed By: Imxset21, JakobDegen Differential Revision: D55030643 fbshipit-source-id: 47b509ce2103d1dd64c66aa250133eb25758a750
This commit is contained in:
parent
29ce9faab8
commit
91b8ebf0b6
6 changed files with 6 additions and 6 deletions
|
@ -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.29.1", features = ["full", "test-util", "tracing"] }
|
||||
tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] }
|
||||
|
|
|
@ -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.29.1", features = ["full", "test-util", "tracing"] }
|
||||
tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] }
|
||||
|
|
|
@ -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.29.1", features = ["full", "test-util", "tracing"] }
|
||||
tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] }
|
||||
tracing = "0.1.40"
|
||||
|
|
|
@ -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.29.1", features = ["full", "test-util", "tracing"] }
|
||||
tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] }
|
||||
|
||||
[dev-dependencies]
|
||||
const-cstr = "0.3.0"
|
||||
|
|
|
@ -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.29.1", features = ["full", "test-util", "tracing"] }
|
||||
tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] }
|
||||
tokio-stream = { version = "0.1.14", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = { version = "0.3.18", features = ["ansi", "chrono", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] }
|
||||
|
|
|
@ -23,7 +23,7 @@ thiserror = "1.0.49"
|
|||
[dev-dependencies]
|
||||
quickcheck = "1.0"
|
||||
quickcheck_macros = "1.0"
|
||||
tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] }
|
||||
tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
Loading…
Reference in a new issue