reverie/safeptrace/Cargo.toml
Andres Suarez 9ce4ac6e2b Add default crate information
Summary: Adds basic info that every crate should have.

Reviewed By: dtolnay

Differential Revision: D52051107

fbshipit-source-id: 828ac6a752dbb4b419577fca08815014c8b96c42
2023-12-11 15:49:03 -08:00

31 lines
905 B
TOML

# @generated by autocargo from //hermetic_infra/reverie:safeptrace
[package]
name = "safeptrace"
version = "0.1.0"
authors = ["Meta Platforms"]
edition = "2021"
repository = "https://github.com/facebookexperimental/reverie"
license = "BSD-2-Clause"
[dependencies]
bitflags = "1.3"
futures = { version = "0.3.28", features = ["async-await", "compat"] }
lazy_static = "1.4"
libc = "0.2.139"
nix = "0.25"
parking_lot = { version = "0.12.1", 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.49"
[dev-dependencies]
quickcheck = "1.0"
quickcheck_macros = "1.0"
tokio = { version = "1.29.1", features = ["full", "test-util", "tracing"] }
[features]
default = []
memory = ["reverie-memory"]
notifier = []