log_types/lib.rs
1//! Structured log types.
2//!
3//! This crate is useful when creating shared log abstractions between crates; consistently marking
4//! pairs of logs.
5//!
6//! See also: [`async-log`](https://docs.rs/async-log/),
7//! [`log::kv`](https://docs.rs/log/0.4.8/log/kv/index.html),
8
9#![forbid(unsafe_code, future_incompatible, rust_2018_idioms)]
10#![deny(missing_debug_implementations, nonstandard_style)]
11#![warn(missing_docs, missing_doc_code_examples, unreachable_pub)]
12#![cfg_attr(test, deny(warnings))]
13
14mod http;
15mod span;
16
17pub use http::Http;
18pub use span::Span;