Skip to content

Commit 13e2a36

Browse files
authored
tls: Deprecate in favor of tokio-native-tls (tokio-rs#2485)
1 parent cc8a662 commit 13e2a36

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

tokio-tls/CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
# 0.3.1 (April 4, 2020)
2+
3+
- Deprecate crate in favor of `tokio-native-tls`.
4+
15
# 0.3.0 (November 26, 2019)
26

3-
- Updates for tokio 0.2 release
7+
- Updates for tokio 0.2 release.
48

59
# 0.3.0-alpha.6 (September 30, 2019)
610

7-
- Move to `futures-*-preview 0.3.0-alpha.19`
8-
- Move to `pin-project 0.4`
11+
- Move to `futures-*-preview 0.3.0-alpha.19`.
12+
- Move to `pin-project 0.4`.
913

1014
# 0.3.0-alpha.5 (September 19, 2019)
1115

@@ -15,7 +19,7 @@
1519
# 0.3.0-alpha.4 (August 30, 2019)
1620

1721
### Changed
18-
- Track `tokio` 0.2.0-alpha.4
22+
- Track `tokio` 0.2.0-alpha.4.
1923

2024
# 0.3.0-alpha.2 (August 17, 2019)
2125

tokio-tls/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,21 @@ name = "tokio-tls"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.3.x" git tag.
11-
version = "0.3.0"
11+
version = "0.3.1"
1212
edition = "2018"
1313
authors = ["Tokio Contributors <team@tokio.rs>"]
1414
license = "MIT"
1515
repository = "https://github.com/tokio-rs/tokio"
1616
homepage = "https://tokio.rs"
17-
documentation = "https://docs.rs/tokio-tls/0.3.0-alpha.6/tokio_tls/"
17+
documentation = "https://docs.rs/tokio-tls/0.3.1/tokio_tls/"
1818
description = """
19+
Deprecated in favor of `tokio-naitve-tls`.
20+
1921
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
2022
for nonblocking I/O streams.
2123
"""
2224
categories = ["asynchronous", "network-programming"]
25+
maintenance = { status = "deprecated" }
2326

2427
[badges]
2528
travis-ci = { repository = "tokio-rs/tokio-tls" }

tokio-tls/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# tokio-tls
22

3+
**Deprecated** in favor of `tokio-native-tls`.
4+
35
An implementation of TLS/SSL streams for Tokio built on top of the [`native-tls`
46
crate]
57

tokio-tls/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.0")]
1+
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.1")]
22
#![warn(
33
missing_debug_implementations,
44
missing_docs,
@@ -13,6 +13,9 @@
1313

1414
//! Async TLS streams
1515
//!
16+
//! > **Note:** This crate is **deprecated** and has been moved
17+
//! into the [`tokio-native-tls`] crate.
18+
//!
1619
//! This library is an implementation of TLS streams using the most appropriate
1720
//! system library by default for negotiating the connection. That is, on
1821
//! Windows this library uses SChannel, on OSX it uses SecureTransport, and on

0 commit comments

Comments
 (0)