Skip to content

Commit ced1300

Browse files
author
Danny Browning
committed
futures_api stable
1 parent 6908038 commit ced1300

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ edition = "2018"
77
# - Update CHANGELOG.md.
88
# - Update doc URL.
99
# - Create "v0.1.x" git tag.
10-
version = "0.3.0-alpha.4"
10+
version = "0.3.0-alpha.5"
1111
license = "MIT"
1212
readme = "README.md"
1313
description = """
1414
TLS support for AsyncRead/AsyncWrite using native-tls
1515
"""
1616
authors = ["Danny Browning <[email protected]>", "Carl Lerche <[email protected]>"]
1717
categories = ["asynchronous", "network-programming"]
18-
documentation = "https://docs.rs/tls-async/0.3.0-alpha.4/tls_async/"
18+
documentation = "https://docs.rs/tls-async/0.3.0-alpha.5/tls_async/"
1919
repository = "https://github.com/dbcfd/tls-async"
2020

2121
[dependencies]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is an experimental fork of [tokio-tls](https://github.com/tokio-rs/tokio/tr
1010
An implementation of TLS/SSL streams for [Futures 0.3](https://github.com/rust-lang-nursery/futures-rs) built on top of the [`native-tls`
1111
crate]
1212

13-
[Documentation](https://docs.rs/tls-async/0.3.0-alpha.3/)
13+
[Documentation](https://docs.rs/tls-async/0.3.0-alpha.5/)
1414

1515
[`native-tls` crate]: https://github.com/sfackler/rust-native-tls
1616

@@ -29,7 +29,7 @@ First, add this to your `Cargo.toml`:
2929

3030
```toml
3131
[dependencies]
32-
tls-async = "0.3.0-alpha.3"
32+
tls-async = "0.3.0-alpha.5"
3333
```
3434

3535
Next, add this to your crate:

examples/download-rust-lang.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(async_await, await_macro, futures_api)]
1+
#![feature(async_await, await_macro)]
22
use std::net::ToSocketAddrs;
33

44
use futures::{FutureExt, TryFutureExt};

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//! functionality provided by the `native-tls` crate, on which this crate is
1515
//! built. Configuration of TLS parameters is still primarily done through the
1616
//! `native-tls` crate.
17-
#![feature(async_await, await_macro, futures_api)]
17+
#![feature(async_await, await_macro)]
1818
mod acceptor;
1919
mod connector;
2020
mod errors;
@@ -109,4 +109,4 @@ impl<S: AsyncRead + AsyncWrite + Unpin> AsyncWrite for TlsStream<S> {
109109
Err(e) => Poll::Ready(Err(e))
110110
}
111111
}
112-
}
112+
}

tests/bad.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(async_await, await_macro, futures_api)]
1+
#![feature(async_await, await_macro)]
22
use std::net::ToSocketAddrs;
33

44
use cfg_if::cfg_if;

tests/google.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(async_await, await_macro, futures_api)]
1+
#![feature(async_await, await_macro)]
22
use std::net::ToSocketAddrs;
33

44
use cfg_if::cfg_if;

tests/smoke.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(async_await, await_macro, futures_api)]
1+
#![feature(async_await, await_macro)]
22
use std::io::Write;
33
use std::process::Command;
44

0 commit comments

Comments
 (0)