# Sentry Integration for Rust This package provides a simple integration with Sentry for Rust applications, allowing for custom DSN configuration. ## Usage Add this to your `Cargo.toml`: ```toml [dependencies] sentry_integration = "0.1.0" ``` Then in your Rust code: ```rust use sentry_integration; fn main() { let config = sentry_integration::Config { project_id: "your_project_id".to_string(), public_key: "your_public_key".to_string(), }; sentry_integration::init(config); // Your application code here } ``` ## License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. ``` ```