1#![doc(html_root_url = "https://docs.rs/tower-test/0.4.0")]
2#![warn(
3 missing_debug_implementations,
4 missing_docs,
5 rust_2018_idioms,
6 unreachable_pub
7)]
8#![allow(elided_lifetimes_in_paths)]
910//! Mock `Service` that can be used in tests.
1112mod macros;
13pub mod mock;