2021-12-30 00:14:23 +00:00
|
|
|
# @generated by autocargo
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "reverie-ptrace"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Facebook"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "BSD-2-Clause"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.51"
|
2022-02-09 10:04:01 +00:00
|
|
|
async-trait = "0.1.52"
|
2021-12-30 00:14:23 +00:00
|
|
|
bincode = "1.3.3"
|
|
|
|
bitflags = "1.3"
|
|
|
|
bytes = { version = "1.1", features = ["serde"] }
|
|
|
|
futures = { version = "0.3.13", features = ["async-await", "compat"] }
|
|
|
|
goblin = "0.3"
|
|
|
|
lazy_static = "1.0"
|
|
|
|
libc = "0.2.98"
|
2022-03-22 16:26:52 +00:00
|
|
|
nix = "0.23"
|
2021-12-30 00:14:23 +00:00
|
|
|
num-traits = "0.2"
|
2022-02-08 19:36:18 +00:00
|
|
|
parking_lot = { version = "0.11.2", features = ["send_guard"] }
|
2021-12-30 00:14:23 +00:00
|
|
|
paste = "1.0"
|
|
|
|
perf-event-open-sys = "1.0"
|
|
|
|
procfs = "0.9"
|
|
|
|
raw-cpuid = "9.0"
|
|
|
|
reverie = { version = "0.1.0", path = "../reverie" }
|
|
|
|
serde = { version = "1.0.126", features = ["derive", "rc"] }
|
|
|
|
thiserror = "1.0.29"
|
2022-01-25 09:23:59 +00:00
|
|
|
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
|
2021-12-30 00:14:23 +00:00
|
|
|
tokio-stream = { version = "0.1.4", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
|
2022-03-16 22:36:55 +00:00
|
|
|
tracing = "0.1.32"
|
|
|
|
tracing-subscriber = { version = "0.3.9", features = ["ansi", "env-filter", "fmt", "json", "parking_lot", "registry"] }
|
2021-12-30 00:14:23 +00:00
|
|
|
unwind = { version = "0.4", features = ["ptrace"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
quickcheck = "1.0"
|
|
|
|
quickcheck_macros = "1.0"
|
2022-03-11 09:22:36 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["llvm_asm", "llvm_asm"]
|
|
|
|
llvm_asm = []
|