mirror of
https://github.com/tower-rs/tower.git
synced 2025-09-28 13:30:43 +00:00

* Actually check MSCV on CI * check broken_intra_doc_links on CI * clean up CI * fix other crates * bump MSRV to 1.42 because of tracing-core * attempt to fix http not working on 1.42 * use `--workspace` instead of `--all` `--all` is deprecated * make tower-service build on 1.42 * force http version 0.2.4 * actually msrv is 1.46 because of tokio * fix running `cargo fmt` * clean up * also run tests on 1.46 * ignore rustsec in time
15 lines
332 B
Rust
15 lines
332 B
Rust
#![doc(html_root_url = "https://docs.rs/tower-test/0.4.0")]
|
|
#![warn(
|
|
missing_debug_implementations,
|
|
missing_docs,
|
|
rust_2018_idioms,
|
|
unreachable_pub
|
|
)]
|
|
#![allow(elided_lifetimes_in_paths)]
|
|
// `rustdoc::broken_intra_doc_links` is checked on CI
|
|
|
|
//! Mock `Service` that can be used in tests.
|
|
|
|
mod macros;
|
|
pub mod mock;
|