sentry 0.4.1

Sentry (getsentry.com) client for rust ;)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(feature = "with_client_implementation")]
mod real;

#[cfg(any(not(feature = "with_client_implementation"), feature = "with_shim_api"))]
pub(crate) mod noop;

#[cfg(feature = "with_client_implementation")]
pub use self::real::*;

#[cfg(not(feature = "with_client_implementation"))]
pub use self::noop::*;

#[cfg(feature = "with_shim_api")]
pub mod shim {
    pub use super::noop::*;
}