File tree Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Original file line number Diff line number Diff line change
1
+ # 0.3.1 (April 4, 2020)
2
+
3
+ - Deprecate crate in favor of ` tokio-native-tls ` .
4
+
1
5
# 0.3.0 (November 26, 2019)
2
6
3
- - Updates for tokio 0.2 release
7
+ - Updates for tokio 0.2 release.
4
8
5
9
# 0.3.0-alpha.6 (September 30, 2019)
6
10
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 ` .
9
13
10
14
# 0.3.0-alpha.5 (September 19, 2019)
11
15
15
19
# 0.3.0-alpha.4 (August 30, 2019)
16
20
17
21
### Changed
18
- - Track ` tokio ` 0.2.0-alpha.4
22
+ - Track ` tokio ` 0.2.0-alpha.4.
19
23
20
24
# 0.3.0-alpha.2 (August 17, 2019)
21
25
Original file line number Diff line number Diff line change @@ -8,18 +8,21 @@ name = "tokio-tls"
8
8
# - README.md
9
9
# - Update CHANGELOG.md.
10
10
# - Create "v0.3.x" git tag.
11
- version = " 0.3.0 "
11
+ version = " 0.3.1 "
12
12
edition = " 2018"
13
13
authors = [" Tokio Contributors <team@tokio.rs>" ]
14
14
license = " MIT"
15
15
repository = " https://github.com/tokio-rs/tokio"
16
16
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/"
18
18
description = """
19
+ Deprecated in favor of `tokio-naitve-tls`.
20
+
19
21
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
20
22
for nonblocking I/O streams.
21
23
"""
22
24
categories = [" asynchronous" , " network-programming" ]
25
+ maintenance = { status = " deprecated" }
23
26
24
27
[badges ]
25
28
travis-ci = { repository = " tokio-rs/tokio-tls" }
Original file line number Diff line number Diff line change 1
1
# tokio-tls
2
2
3
+ ** Deprecated** in favor of ` tokio-native-tls ` .
4
+
3
5
An implementation of TLS/SSL streams for Tokio built on top of the [ ` native-tls `
4
6
crate]
5
7
Original file line number Diff line number Diff line change 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 " ) ]
2
2
#![ warn(
3
3
missing_debug_implementations,
4
4
missing_docs,
13
13
14
14
//! Async TLS streams
15
15
//!
16
+ //! > **Note:** This crate is **deprecated** and has been moved
17
+ //! into the [`tokio-native-tls`] crate.
18
+ //!
16
19
//! This library is an implementation of TLS streams using the most appropriate
17
20
//! system library by default for negotiating the connection. That is, on
18
21
//! Windows this library uses SChannel, on OSX it uses SecureTransport, and on
You can’t perform that action at this time.
0 commit comments