Segfault.ai SDK for Rust ======================== This is the Segfault.ai SDK for Rust. ## Installation Add this to your `Cargo.toml`: ```toml [dependencies] segfaultai = "*" ``` ## Usage ```rust fn main() { // Initialize the sdk segfaultai::init(); // Create your gstreamer pipeline let pipeline = gstreamer::Pipeline::new("my-pipeline"); // Start tracing the pipeline with some metadata segfaultai::trace_start(&pipeline, &[("key", "value")]); // Do stuff... // Stop tracing the pipeline segfaultai::trace_stop(&pipeline); // Gracefully shutdown the sdk segfaultai::shutdown(); } ```