This commit is contained in:
Joseph Birr-Pixton 2017-06-16 21:37:31 +01:00
parent 0d6bb1cde6
commit ffbd38100f
2 changed files with 10 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "rustls"
version = "0.8.0"
version = "0.9.0"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
license = "Apache-2.0/ISC/MIT"
readme = "README.md"
@ -12,10 +12,10 @@ categories = ["network-programming", "cryptography"]
[dependencies]
untrusted = "0.5"
time = "0.1.37"
base64 = "0.5"
base64 = "0.6"
log = { version = "0.3.6", optional = true }
ring = { version = "0.9", features = ["rsa_signing"] }
webpki = "0.12"
ring = { version = "0.11", features = ["rsa_signing"] }
webpki = "0.14"
[features]
default = ["logging"]
@ -28,7 +28,7 @@ env_logger = "0.4.2"
mio = "0.6"
docopt = "0.7"
rustc-serialize = "0.3"
webpki-roots = "0.10"
webpki-roots = "0.11"
regex = "0.2"
[[example]]

View File

@ -13,6 +13,11 @@ Rustls is currently in development and hence unstable. [Here's what I'm working
## Release history:
* 0.9.0 (2017-06-16):
- Update dependencies.
- Add IO helper function (`complete_io`) to `rustls::Session`.
- Add blocking stream type -- `rustls::Stream` -- to ease use on top
of blocking sockets.
* 0.8.0 (2017-05-14):
- Add `dangerous_configuration` feature for unsafe features.
* 0.7.0 (2017-05-08):