kerf 0.1.2

Simple tokio-based trace event collector
Documentation
pub mod kerf;
use kerf::{DroppedEventCallback, EventCallback, SilencedEventCallback};
pub use kerf::{Kerf, KerfBuilder};

pub mod event;
pub use event::{ArcEvent, Event, TraceEventId, TracingLevel};

pub mod matcher;
pub use matcher::{IntoMatcherSet, Level, Match, MatcherSet, PatternMatcher, matches};

pub mod dispatcher;
use dispatcher::{Dispatcher, DispatcherCommand, ResultSender};

pub mod config;
pub use config::{Config, Tab};

pub mod tracing_subscriber;
pub use tracing_subscriber::TracingSubscriber;

pub mod stats;
pub use stats::{
    AtomicCounter, EventType, Location, LocationStats, ModuleStats, StatEntry, StatsConfig,
    StatsSnapshot, StatsTracker,
};

pub mod env_config;
pub use env_config::{EnvConfig, OutputFormat, TuiConfig, parse_level};