reverie/safeptrace/Cargo.toml
Jason White 531faf7a34 Prepare safeptrace to be published as a crate
Summary:
* Adds a `README.md` file.
 * Adds optional features to enable memory access and the async API.

`safeptrace` depends on `reverie-process` and `reverie-memory`, so those will need to be published as crates too.

Reviewed By: VladimirMakaev

Differential Revision: D44386559

fbshipit-source-id: e74c55d5d26239aa09aedac130dca880eb5f1206
2023-03-25 16:12:24 -07:00

30 lines
801 B
TOML

# @generated by autocargo
[package]
name = "safeptrace"
version = "0.1.0"
authors = ["Meta Platforms"]
edition = "2021"
license = "BSD-2-Clause"
[dependencies]
bitflags = "1.3"
futures = { version = "0.3.22", features = ["async-await", "compat"] }
lazy_static = "1.4"
libc = "0.2.139"
nix = "0.25"
parking_lot = { version = "0.11.2", features = ["send_guard"] }
reverie-memory = { version = "0.1.0", path = "../reverie-memory", optional = true }
reverie-process = { version = "0.1.0", path = "../reverie-process" }
syscalls = { version = "0.6.7", features = ["serde"] }
thiserror = "1.0.36"
[dev-dependencies]
quickcheck = "1.0"
quickcheck_macros = "1.0"
tokio = { version = "1.25.0", features = ["full", "test-util", "tracing"] }
[features]
default = []
memory = ["reverie-memory"]
notifier = []