1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! OpenTelemetry semantic conventions are agreed standardized naming patterns //! for OpenTelemetry things. This crate aims to be the centralized place to //! interact with these conventions. #![warn( future_incompatible, missing_debug_implementations, missing_docs, nonstandard_style, rust_2018_idioms, unreachable_pub, unused )] #![cfg_attr(test, deny(warnings))] #![doc( html_logo_url = "https://raw.githubusercontent.com/open-telemetry/opentelemetry-rust/main/assets/logo.svg" )] pub mod resource; pub mod trace;