tower/tower-make
Jon Gjengset 6baf381879
Consistently apply deny/warn rules (#352)
This makes all tower subcrates have the following lints as warn (rather
than allow): `missing_docs`, `rust_2018_idioms`, `unreachable_pub`, and
`missing_debug_implementations`. In addition, it consistently applies
`deny(warning)` *only* under CI so that deprecations and macro changes in minor
version bumps in dependencies will never cause `tower` crates to stop
compiling, and so that tests can be run even if not all warnings have been
dealt with. See also https://github.com/rust-unofficial/patterns/blob/master/anti_patterns/deny-warnings.md

Note that `tower-reconnect` has the `missing_docs` lint disabled for now
since it contained _no_ documentation previously. Also note that this
patch does not add documentation to the various `new` methods, as they
are considered self-explanatory. They are instead marked as
`#[allow(missing_docs)]`.
2019-09-23 17:28:14 -04:00
..
src Consistently apply deny/warn rules (#352) 2019-09-23 17:28:14 -04:00
CHANGELOG.md tower-make:v0.3.0-alpha.2 2019-09-20 15:09:09 -07:00
Cargo.toml tower-make:v0.3.0-alpha.2 2019-09-20 15:09:09 -07:00
LICENSE Update MakeService and MakeConnection (#313) 2019-08-27 12:39:14 -04:00
README.md Update MakeService and MakeConnection (#313) 2019-08-27 12:39:14 -04:00

README.md

Tower Service Makers

Trait aliases for Services that produce specific types of Responses.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tower by you, shall be licensed as MIT, without any additional terms or conditions.