This commit is contained in:
Joseph Birr-Pixton 2017-02-03 19:41:53 +00:00
parent 456dbd13a6
commit 8b93a148a9
2 changed files with 8 additions and 1 deletions

View File

@ -1,12 +1,13 @@
[package]
name = "rustls"
version = "0.5.4"
version = "0.5.5"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
license = "Apache-2.0/ISC/MIT"
readme = "README.md"
description = "Rustls is a modern TLS library written in Rust."
homepage = "https://github.com/ctz/rustls"
repository = "https://github.com/ctz/rustls"
catgories = ["network-programming", "cryptography"]
[dependencies]
untrusted = "0.3.1"

View File

@ -13,6 +13,12 @@ Rustls is currently in development and hence unstable. [Here's what I'm working
## Release history:
* 0.5.5:
- Crate categories.
- Protocol errors now permanent for given session.
- Exposed `ResolvesServerCert` trait for customising certification
selection.
- Exposed `SignatureScheme` enum.
* 0.5.4:
- First release with TLS1.3-draft-18 support.
- More performance improvements (now ~15Gbps per core).