tracing_lv_core/
lib.rs

1#![no_std]
2extern crate alloc;
3#[cfg(feature = "std")]
4extern crate std;
5mod flags;
6pub use flags::*;
7#[cfg(feature = "std")]
8#[path = "tracing.rs"]
9pub mod proto;
10#[cfg(feature = "std")]
11mod tonic;
12#[cfg(feature = "std")]
13pub use tonic::*;
14
15mod tracing_layer;
16#[cfg(feature = "std")]
17pub mod catch_panic;
18
19pub use tracing_layer::*;
20#[cfg(all(feature = "build-proto", not(feature = "build-proto-dev")))]
21::tonic::include_proto!("tracing");