Files
obikmer/src/obisys/Cargo.toml
T
Eric Coissac d0c277d5b6 feat(obisys): Add stage-based performance profiler
Establishes the `obisys` crate using Rust 2024 and the `libc` dependency. Introduces a lightweight profiler that captures wall-clock time and `getrusage` system metrics per pipeline stage. Automatically computes parallelism and efficiency ratios, detects bottlenecks such as memory pressure and disk I/O, and prints a formatted diagnostic summary to stderr.
2026-05-19 11:40:20 +02:00

8 lines
90 B
TOML

[package]
name = "obisys"
version = "0.1.0"
edition = "2024"
[dependencies]
libc = "0.2"