Add quic to README and document quic feature

This commit is contained in:
Joseph Birr-Pixton 2018-05-14 21:01:53 +01:00
parent dd765a9eb2
commit da4d331565
2 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,7 @@ Rustls is currently in development and hence unstable. [Here's what I'm working
* Next release:
- Move TLS1.3 support from draft 22 to 23.
- Add support for `SSLKEYLOGFILE`; not enabled by default.
- Add support for basic usage in QUIC.
* 0.12.0 (2018-01-06):
- New API for learning negotiated cipher suite.
- Move TLS1.3 support from draft 18 to 22.

View File

@ -179,6 +179,11 @@
//! such as replacing the certificate verification process. Applications
//! requesting this feature should be reviewed carefully.
//!
//! - `quic`: this feature exposes additional constructors and functions
//! for using rustls as a TLS library for QUIC. See the `quic` module for
//! details of these. You will only need this if you're writing a QUIC
//! implementation.
//!
// Require docs for public APIs, deny unsafe code, etc.
#![forbid(unsafe_code,