reverie/reverie-ptrace/Cargo.toml
Vladimir Makaev 0c8136b22e decode & trace instructions while single-stepping
Summary:
This adds an ability to decode an instruction on top of the safeptrace::Stopped task and enables debug! tracing when single-stepping.

Note that performance overhead should not be present when higher tracing level  is requested

Reviewed By: jasonwhite

Differential Revision: D40895393

fbshipit-source-id: 867f237a0517304314f4ac43313c1f26cee3f646
2022-11-08 04:39:12 -08:00

34 lines
1.1 KiB
TOML

# @generated by autocargo
[package]
name = "reverie-ptrace"
version = "0.1.0"
authors = ["Meta Platforms"]
edition = "2021"
license = "BSD-2-Clause"
[dependencies]
anyhow = "1.0.65"
async-trait = "0.1.58"
bincode = "1.3.3"
bytes = { version = "1.1", features = ["serde"] }
futures = { version = "0.3.22", features = ["async-await", "compat"] }
goblin = "0.5.2"
iced-x86 = "1.17.0"
lazy_static = "1.4"
libc = "0.2.137"
nix = "0.25"
num-traits = "0.2"
paste = "1.0"
perf-event-open-sys = "1.0"
procfs = "0.9"
raw-cpuid = "10.6.0"
reverie = { version = "0.1.0", path = "../reverie" }
safeptrace = { version = "0.1.0", path = "../safeptrace" }
serde = { version = "1.0.136", features = ["derive", "rc"] }
thiserror = "1.0.36"
tokio = { version = "1.21.2", features = ["full", "test-util", "tracing"] }
tokio-stream = { version = "0.1.4", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
tracing = "0.1.35"
tracing-subscriber = { version = "0.3.16", features = ["ansi", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] }
unwind = { version = "0.4", features = ["ptrace"] }