mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-09 00:00:08 +02:00
@@ -0,0 +1,3 @@
|
|||||||
|
# 0.2.0 (August 8, 2018)
|
||||||
|
|
||||||
|
* Initial release with `tokio` support.
|
||||||
@@ -1,8 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tokio-tls"
|
name = "tokio-tls"
|
||||||
|
# When releasing to crates.io:
|
||||||
|
# - Update html_root_url.
|
||||||
|
# - Update CHANGELOG.md.
|
||||||
|
# - Create "tokio-tls-0.2.x" git tag.
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
authors = ["Carl Lerche <[email protected]>",
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
"Alex Crichton <[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"
|
||||||
@@ -19,7 +22,7 @@ travis-ci = { repository = "tokio-rs/tokio-tls" }
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.1.23"
|
futures = "0.1.23"
|
||||||
native-tls = "0.2"
|
native-tls = "0.2"
|
||||||
tokio-io = { version = "0.1", path = "../tokio-io" }
|
tokio-io = { version = "0.1.7", path = "../tokio-io" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.1", path = "../" }
|
tokio = { version = "0.1", path = "../" }
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
//! `native-tls` crate.
|
//! `native-tls` crate.
|
||||||
|
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.1")]
|
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.2.0")]
|
||||||
|
|
||||||
extern crate futures;
|
extern crate futures;
|
||||||
extern crate native_tls;
|
extern crate native_tls;
|
||||||
|
|||||||
Reference in New Issue
Block a user