Build Status Coverage Status crates.io MIT licensed docs

bugsnag-rs

The Bugsnag api in rust.

Example

```rust use bugsnag; let mut api = bugsnag::Bugsnag::new("api-key", Some(env!("CARGOMANIFESTDIR")));

// setting the appinfo is not required, but recommended api.setappinfo(Some(env!("CARGOPKGVERSION")), Some("development"), Some("rust"));

let stacktrace = bugsnag::stacktrace::createstacktrace(api.getprojectsourcedir());

api.notify("Info", "This is a message from the rust bugsnag api.", bugsnag::Severity::Info, &stacktrace, None); ```

For more examples on how to integrate bugsnag into a project, the examples folder provides some reference implementations.

Which json fields are missing?

The structure of the json can be found here.