tower_test/lib.rs
1#![warn(
2 missing_debug_implementations,
3 missing_docs,
4 rust_2018_idioms,
5 unreachable_pub
6)]
7#![forbid(unsafe_code)]
8#![allow(elided_lifetimes_in_paths)]
9// `rustdoc::broken_intra_doc_links` is checked on CI
10
11//! Mock `Service` that can be used in tests.
12
13mod macros;
14pub mod mock;