reverie/reverie-ptrace/Cargo.toml
Sean Lawlor ad12ef9ecb
Some checks failed
ci / Check (push) Has been cancelled
ci / Test Suite (push) Has been cancelled
ci / Clippy (push) Has been cancelled
Vendor ractor 0.12.4 and upgrade tokio to 1.41.0
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
2024-10-24 09:02:47 -07:00

38 lines
1.4 KiB
TOML

# @generated by autocargo from //hermetic_infra/reverie:reverie-ptrace
[package]
name = "reverie-ptrace"
version = "0.1.0"
authors = ["Meta Platforms"]
edition = "2021"
repository = "https://github.com/facebookexperimental/reverie"
license = "BSD-2-Clause"
[dependencies]
anyhow = "1.0.86"
async-trait = "0.1.71"
bincode = "1.3.3"
bytes = { version = "1.6.0", features = ["serde"] }
futures = { version = "0.3.30", features = ["async-await", "compat"] }
goblin = "0.5.2"
iced-x86 = "1.17.0"
lazy_static = "1.4"
libc = "0.2.139"
nix = "0.25"
num-traits = { version = "0.2.18", default-features = false }
paste = "1.0.14"
perf-event-open-sys = "4.0"
procfs = "0.15.1"
raw-cpuid = "10.6.0"
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.64"
tokio = { version = "1.41.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", "valuable"] }
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }
unwind = { version = "0.4", features = ["ptrace"] }
[dev-dependencies]
test-case = "3.1"