The Bugsnag api in rust.
```rust use bugsnag; let mut api = bugsnag::Bugsnag::new("api-key", env!("CARGOMANIFESTDIR"));
// setting the appinfo is not required, but recommended api.setappinfo(Some(env!("CARGOPKGVERSION")), Some("development"), Some("rust"));
api.notify("Info", "This is a message from the rust bugsnag api.") .severity(bugsnag::Severity::Info); ```
Or in a panic handler you could do the following:
```rust
use bugsnag; let mut api = bugsnag::Bugsnag::new("api-key", env!("CARGOMANIFESTDIR"));
bugsnag::panic::handle(&api, panic_info, None);
```
For more examples on how to integrate bugsnag into a project, the examples folder provides some reference implementations.
The structure of the json can be found here.