renacer 0.3.2

Pure Rust system call tracer with source-aware correlation for Rust binaries
Documentation
[[bin]]
name = "renacer"
path = "src/main.rs"

[dependencies.addr2line]
version = "0.24"

[dependencies.anyhow]
version = "1.0"

[dependencies.aprender]
version = "0.2.0"

[dependencies.backtrace]
version = "0.3"

[dependencies.clap]
features = ["derive", "cargo"]
version = "4.5"

[dependencies.gimli]
version = "0.31"

[dependencies.libc]
version = "0.2"

[dependencies.memmap2]
version = "0.9"

[dependencies.nix]
features = ["ptrace", "process", "signal", "uio"]
version = "0.29"

[dependencies.object]
version = "0.37"

[dependencies.regex]
version = "1.10"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter", "fmt"]
version = "0.3"

[dependencies.trueno]
version = "0.2.2"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.tempfile]
version = "3.13"

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

[package]
authors = ["Pragmatic AI Labs <info@paiml.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::debugging", "development-tools::profiling"]
description = "Pure Rust system call tracer with source-aware correlation for Rust binaries"
edition = "2021"
keywords = ["strace", "tracing", "syscall", "debugging", "profiling"]
license = "MIT"
name = "renacer"
readme = "README.md"
repository = "https://github.com/paiml/renacer"
version = "0.3.2"

[profile.dev]
debug = 2
opt-level = 0

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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