mirror of https://github.com/fafhrd91/actix-web
review nits part 2
This commit is contained in:
parent
56ddb771d7
commit
5e1293a48b
|
@ -7,13 +7,12 @@
|
||||||
- Add `unicode` crate feature (on-by-default) to switch between `regex` and `regex-lite` as a trade-off between full unicode support and binary size.
|
- Add `unicode` crate feature (on-by-default) to switch between `regex` and `regex-lite` as a trade-off between full unicode support and binary size.
|
||||||
- Add `rustls-0_23` crate feature.
|
- Add `rustls-0_23` crate feature.
|
||||||
- Add `HttpServer::{bind_rustls_0_23, listen_rustls_0_23}()` builder methods.
|
- Add `HttpServer::{bind_rustls_0_23, listen_rustls_0_23}()` builder methods.
|
||||||
- Add `HttpServer::tls_handshake_timeout` builder method for `rustls-0_22` and `rustls-0_23`
|
- Add `HttpServer::tls_handshake_timeout()` builder method for `rustls-0_22` and `rustls-0_23`.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Update `brotli` dependency to `6`.
|
- Update `brotli` dependency to `6`.
|
||||||
- Minimum supported Rust version (MSRV) is now 1.72.
|
- Minimum supported Rust version (MSRV) is now 1.72.
|
||||||
- Avoid type confusion in rare circumstances
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
|
@ -625,7 +625,7 @@ where
|
||||||
/// Binds to existing listener for accepting incoming TLS connection requests using Rustls
|
/// Binds to existing listener for accepting incoming TLS connection requests using Rustls
|
||||||
/// v0.21.
|
/// v0.21.
|
||||||
///
|
///
|
||||||
/// See [`listen()`](Self::listen) for more details on the `lst` argument.
|
/// See [`listen()`](Self::listen()) for more details on the `lst` argument.
|
||||||
///
|
///
|
||||||
/// ALPN protocols "h2" and "http/1.1" are added to any configured ones.
|
/// ALPN protocols "h2" and "http/1.1" are added to any configured ones.
|
||||||
#[cfg(feature = "rustls-0_21")]
|
#[cfg(feature = "rustls-0_21")]
|
||||||
|
@ -742,7 +742,7 @@ where
|
||||||
/// Binds to existing listener for accepting incoming TLS connection requests using Rustls
|
/// Binds to existing listener for accepting incoming TLS connection requests using Rustls
|
||||||
/// v0.22.
|
/// v0.22.
|
||||||
///
|
///
|
||||||
/// See [`listen()`](Self::listen) for more details on the `lst` argument.
|
/// See [`listen()`](Self::listen()) for more details on the `lst` argument.
|
||||||
///
|
///
|
||||||
/// ALPN protocols "h2" and "http/1.1" are added to any configured ones.
|
/// ALPN protocols "h2" and "http/1.1" are added to any configured ones.
|
||||||
#[cfg(feature = "rustls-0_22")]
|
#[cfg(feature = "rustls-0_22")]
|
||||||
|
@ -808,7 +808,7 @@ where
|
||||||
/// Binds to existing listener for accepting incoming TLS connection requests using Rustls
|
/// Binds to existing listener for accepting incoming TLS connection requests using Rustls
|
||||||
/// v0.23.
|
/// v0.23.
|
||||||
///
|
///
|
||||||
/// See [`listen()`](Self::listen) for more details on the `lst` argument.
|
/// See [`listen()`](Self::listen()) for more details on the `lst` argument.
|
||||||
///
|
///
|
||||||
/// ALPN protocols "h2" and "http/1.1" are added to any configured ones.
|
/// ALPN protocols "h2" and "http/1.1" are added to any configured ones.
|
||||||
#[cfg(feature = "rustls-0_23")]
|
#[cfg(feature = "rustls-0_23")]
|
||||||
|
|
Loading…
Reference in New Issue