mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-27 00:00:12 +02:00
tls: Deprecate in favor of tokio-native-tls (#2485)
This commit is contained in:
@@ -1,11 +1,15 @@
|
|||||||
|
# 0.3.1 (April 4, 2020)
|
||||||
|
|
||||||
|
- Deprecate crate in favor of `tokio-native-tls`.
|
||||||
|
|
||||||
# 0.3.0 (November 26, 2019)
|
# 0.3.0 (November 26, 2019)
|
||||||
|
|
||||||
- Updates for tokio 0.2 release
|
- Updates for tokio 0.2 release.
|
||||||
|
|
||||||
# 0.3.0-alpha.6 (September 30, 2019)
|
# 0.3.0-alpha.6 (September 30, 2019)
|
||||||
|
|
||||||
- Move to `futures-*-preview 0.3.0-alpha.19`
|
- Move to `futures-*-preview 0.3.0-alpha.19`.
|
||||||
- Move to `pin-project 0.4`
|
- Move to `pin-project 0.4`.
|
||||||
|
|
||||||
# 0.3.0-alpha.5 (September 19, 2019)
|
# 0.3.0-alpha.5 (September 19, 2019)
|
||||||
|
|
||||||
@@ -15,7 +19,7 @@
|
|||||||
# 0.3.0-alpha.4 (August 30, 2019)
|
# 0.3.0-alpha.4 (August 30, 2019)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Track `tokio` 0.2.0-alpha.4
|
- Track `tokio` 0.2.0-alpha.4.
|
||||||
|
|
||||||
# 0.3.0-alpha.2 (August 17, 2019)
|
# 0.3.0-alpha.2 (August 17, 2019)
|
||||||
|
|
||||||
|
|||||||
@@ -8,18 +8,21 @@ name = "tokio-tls"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.3.x" git tag.
|
# - Create "v0.3.x" git tag.
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-tls/0.3.0-alpha.6/tokio_tls/"
|
documentation = "https://docs.rs/tokio-tls/0.3.1/tokio_tls/"
|
||||||
description = """
|
description = """
|
||||||
|
Deprecated in favor of `tokio-naitve-tls`.
|
||||||
|
|
||||||
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
|
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
|
||||||
for nonblocking I/O streams.
|
for nonblocking I/O streams.
|
||||||
"""
|
"""
|
||||||
categories = ["asynchronous", "network-programming"]
|
categories = ["asynchronous", "network-programming"]
|
||||||
|
maintenance = { status = "deprecated" }
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
travis-ci = { repository = "tokio-rs/tokio-tls" }
|
travis-ci = { repository = "tokio-rs/tokio-tls" }
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# tokio-tls
|
# tokio-tls
|
||||||
|
|
||||||
|
**Deprecated** in favor of `tokio-native-tls`.
|
||||||
|
|
||||||
An implementation of TLS/SSL streams for Tokio built on top of the [`native-tls`
|
An implementation of TLS/SSL streams for Tokio built on top of the [`native-tls`
|
||||||
crate]
|
crate]
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.0")]
|
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.1")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
@@ -13,6 +13,9 @@
|
|||||||
|
|
||||||
//! Async TLS streams
|
//! Async TLS streams
|
||||||
//!
|
//!
|
||||||
|
//! > **Note:** This crate is **deprecated** and has been moved
|
||||||
|
//! into the [`tokio-native-tls`] crate.
|
||||||
|
//!
|
||||||
//! This library is an implementation of TLS streams using the most appropriate
|
//! This library is an implementation of TLS streams using the most appropriate
|
||||||
//! system library by default for negotiating the connection. That is, on
|
//! system library by default for negotiating the connection. That is, on
|
||||||
//! Windows this library uses SChannel, on OSX it uses SecureTransport, and on
|
//! Windows this library uses SChannel, on OSX it uses SecureTransport, and on
|
||||||
|
|||||||
Reference in New Issue
Block a user