Skip to content

Commit

Permalink
Vendor ractor 0.12.4 and upgrade tokio to 1.41.0
Browse files Browse the repository at this point in the history
Summary:
From release notes:

Ractor v0.12.4 is released!

In this release there are 2 primary changes
1. We're adding the ability to runtime inspect the message type of an untyped `ActorCell` which can be helpful for supervision flows
2. We're also adding helpers for interacting with a supervisor's children (retrieval of the children, stopping them, and draining them) without having to have the supervisor keep additional handles around

Both are in #277

Tokio is being upgraded to add support for `join_all()` in `JoinSet` which `ractor` leverages (easier to upgrade than backport a hack into ractor)

Reviewed By: Imxset21

Differential Revision: D64833735

fbshipit-source-id: 897302bf95467310131348f1ee8c1f766e81f725
  • Loading branch information
slawlor authored and facebook-github-bot committed Oct 24, 2024
1 parent eac86de commit 4bbd690
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hphp/hack/src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion third-party/watchman/src/watchman/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_de
structopt = "0.3.26"
sysinfo = "0.30.11"
tabular = "0.2.0"
tokio = { version = "1.37.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
watchman_client = { version = "0.9.0", path = "../rust/watchman_client" }

[target.'cfg(target_os = "linux")'.dependencies]
Expand Down

0 comments on commit 4bbd690

Please sign in to comment.