[package]
edition = "2024"
rust-version = "1.85"
name = "stracers-core"
version = "0.1.0"
authors = ["Patrick Elsen <pelsen@xfbs.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for tracing system calls and signals"
readme = "README.md"
keywords = [
"strace",
"ptrace",
"syscall",
"tracing",
"linux",
]
categories = [
"development-tools::debugging",
"os::linux-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/rustutils/stracers"
resolver = "2"
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
]
[lib]
name = "stracers_core"
path = "src/lib.rs"
[dependencies.nix]
version = "0.31"
features = [
"ptrace",
"process",
"signal",
"personality",
]