The Bugsnag api in 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.