Skip to content

Commit

Permalink
Upgrade tokio
Browse files Browse the repository at this point in the history
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
  • Loading branch information
stepancheg authored and facebook-github-bot committed Mar 18, 2024
1 parent 29ce9fa commit 91b8ebf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion experimental/reverie-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion experimental/riptrace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion reverie-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion reverie-process/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion reverie-ptrace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion safeptrace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down

0 comments on commit 91b8ebf

Please sign in to comment.