opentelemetry-traceable 0.2.0

Per-function, multi-instrumentation, dynamically-configurable tracing library on top of opentelemetry-rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Asserts this suite is run with `cargo nextest run`, not plain `cargo test`.

#[test]
fn check_test_runner() {
    assert_eq!(
        std::env::var("NEXTEST").unwrap_or_default(),
        "1",
        "run this suite with `cargo nextest run` (e.g. `mise run test`), not `cargo test`"
    );
}