sys-rs 0.1.0

ptrace-based Linux system tool reimplementations: strace, gcov, addr2line, debugger
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "sys-rs"
version = "0.1.0"
authors = ["yrakcaz <zackaryayoun@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ptrace-based Linux system tool reimplementations: strace, gcov, addr2line, debugger"
documentation = "https://docs.rs/sys-rs"
readme = "README.md"
keywords = [
    "linux",
    "ptrace",
    "debugger",
    "strace",
    "tracing",
]
categories = [
    "development-tools",
    "os::unix-apis",
]
license = "MIT"
repository = "https://github.com/yrakcaz/sys-rs"

[lib]
name = "sys_rs"
path = "src/lib.rs"

[[bin]]
name = "addr2line-rs"
path = "src/bin/addr2line.rs"

[[bin]]
name = "dbg-rs"
path = "src/bin/dbg.rs"

[[bin]]
name = "gcov-rs"
path = "src/bin/gcov.rs"

[[bin]]
name = "sscov-rs"
path = "src/bin/sscov.rs"

[[bin]]
name = "strace-rs"
path = "src/bin/strace.rs"

[[test]]
name = "addr2line"
path = "tests/addr2line.rs"

[[test]]
name = "dbg"
path = "tests/dbg.rs"

[[test]]
name = "gcov"
path = "tests/gcov.rs"

[[test]]
name = "sscov"
path = "tests/sscov.rs"

[[test]]
name = "strace"
path = "tests/strace.rs"

[[test]]
name = "testlib"
path = "tests/testlib.rs"

[dependencies.capstone]
version = "0.12.0"

[dependencies.ctor]
version = "0.2.8"

[dependencies.gimli]
version = "0.28.1"

[dependencies.goblin]
version = "0.8.0"

[dependencies.libc]
version = "0.2.153"

[dependencies.libunwind-rs]
version = "0.4.0"
features = ["ptrace"]

[dependencies.nix]
version = "0.30.1"
features = [
    "fs",
    "process",
    "ptrace",
]

[dependencies.procfs]
version = "0.18.0"

[dependencies.rustyline]
version = "16.0.0"

[dependencies.serde]
version = "1.0.197"

[dependencies.serde_derive]
version = "1.0.197"

[dependencies.serde_json]
version = "1.0.114"

[dependencies.tempfile]
version = "3.22.0"

[dev-dependencies.regex]
version = "1"

[dev-dependencies.serial_test]
version = "3.1.1"

[lints.clippy]
all = "deny"
cargo = "deny"
pedantic = "deny"