2023-11-30 02:35:29 +00:00
|
|
|
# @generated by autocargo from //hermetic_infra/reverie:reverie-ptrace
|
2021-12-30 00:14:23 +00:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "reverie-ptrace"
|
|
|
|
version = "0.1.0"
|
2022-05-27 17:20:35 +00:00
|
|
|
authors = ["Meta Platforms"]
|
2021-12-30 00:14:23 +00:00
|
|
|
edition = "2021"
|
2023-12-11 23:49:03 +00:00
|
|
|
repository = "https://github.com/facebookexperimental/reverie"
|
2021-12-30 00:14:23 +00:00
|
|
|
license = "BSD-2-Clause"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-28 00:35:14 +00:00
|
|
|
anyhow = "1.0.86"
|
2023-07-08 21:36:37 +00:00
|
|
|
async-trait = "0.1.71"
|
2021-12-30 00:14:23 +00:00
|
|
|
bincode = "1.3.3"
|
2024-04-06 06:49:22 +00:00
|
|
|
bytes = { version = "1.6.0", features = ["serde"] }
|
2024-03-27 23:23:45 +00:00
|
|
|
futures = { version = "0.3.30", features = ["async-await", "compat"] }
|
2022-06-21 15:14:33 +00:00
|
|
|
goblin = "0.5.2"
|
2022-11-08 12:39:12 +00:00
|
|
|
iced-x86 = "1.17.0"
|
2022-07-22 14:22:52 +00:00
|
|
|
lazy_static = "1.4"
|
2023-02-13 00:30:00 +00:00
|
|
|
libc = "0.2.139"
|
2022-10-03 22:31:17 +00:00
|
|
|
nix = "0.25"
|
2024-09-12 00:56:11 +00:00
|
|
|
num-traits = { version = "0.2.18", default-features = false }
|
2023-10-26 07:06:40 +00:00
|
|
|
paste = "1.0.14"
|
2023-03-15 17:34:47 +00:00
|
|
|
perf-event-open-sys = "4.0"
|
2023-10-04 21:10:11 +00:00
|
|
|
procfs = "0.15.1"
|
2022-09-19 17:25:55 +00:00
|
|
|
raw-cpuid = "10.6.0"
|
2021-12-30 00:14:23 +00:00
|
|
|
reverie = { version = "0.1.0", path = "../reverie" }
|
2023-03-25 23:12:24 +00:00
|
|
|
safeptrace = { version = "0.1.0", path = "../safeptrace", features = ["memory", "notifier"] }
|
2023-08-21 13:07:02 +00:00
|
|
|
serde = { version = "1.0.185", features = ["derive", "rc"] }
|
2024-10-03 14:20:59 +00:00
|
|
|
thiserror = "1.0.64"
|
2024-10-24 16:02:47 +00:00
|
|
|
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
|
2024-10-31 02:20:59 +00:00
|
|
|
tokio-stream = { version = "0.1.16", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
|
2024-07-03 04:05:33 +00:00
|
|
|
tracing = { version = "0.1.40", features = ["attributes", "valuable"] }
|
2024-03-26 04:40:59 +00:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }
|
2021-12-30 00:14:23 +00:00
|
|
|
unwind = { version = "0.4", features = ["ptrace"] }
|
2022-11-17 08:26:13 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-19 10:09:21 +00:00
|
|
|
test-case = "3.1"
|