sentry 0.46.2

Sentry (sentry.io) client for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    // Define cfg aliases for better readability, and to reduce repetition.
    cfg_aliases::cfg_aliases! {
        sentry_embedded_svc_http: { all(target_os = "espidf", feature = "embedded-svc-http") },
        sentry_any_http_transport: { any(
            feature = "reqwest",
            feature = "curl",
            feature = "ureq",
            sentry_embedded_svc_http
        )},
    }
}