[go: up one dir, main page]

sentry 0.6.1

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

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

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

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