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", 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.", bugsnag::Severity::Info, None, None); ```

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.

Which json fields are missing?

The structure of the json can be found here.