obs-kit 0.2.1

Façade for the obs observability SDK; re-exports the everyday API (init, observer, sinks, macros).
Documentation
//! Dev-ergonomics test suite — backs every claim in spec 60 § 13 +
//! spec 72 § 7. Each `mod` below is one of the named test files in
//! that catalogue. Lint-fail / compile-error suite (`test_compile_errors`)
//! delegates to the trybuild fixtures in `obs-macros`; keeping the
//! pinned snapshots in one place avoids duplicating expected outputs.
//!
//! `#[cfg(feature = "test")]` is intentionally **not** required at the
//! file level — `obs-kit`'s `dev-dependencies` enable `obs-core/test`,
//! so the `#[obs::test]` macro and `assert_emitted!` are always
//! available within `cargo test`.

#![allow(
    missing_docs,
    clippy::unwrap_used,
    clippy::expect_used,
    clippy::indexing_slicing,
    clippy::panic,
    clippy::disallowed_methods,
    clippy::disallowed_types
)]

mod test_audit_spool_recovery;
mod test_compile_errors;
mod test_hot_reload;
mod test_in_memory_observer;
mod test_multi_tenant_observer;
mod test_no_observer_noop;
mod test_obs_test_attribute;
mod test_panic_hook;
mod test_parallel_tests;
mod test_quickstart_60s;
mod test_redaction_pipeline;
mod test_registry_init;
mod test_scrubbed_envelope;
mod test_tracing_bridge;
mod test_worker_pool;