Skip to content

Commit

Permalink
futures_api stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Browning committed Apr 25, 2019
1 parent 6908038 commit ced1300
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ edition = "2018"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.3.0-alpha.4"
version = "0.3.0-alpha.5"
license = "MIT"
readme = "README.md"
description = """
TLS support for AsyncRead/AsyncWrite using native-tls
"""
authors = ["Danny Browning <bdbrowning2@gmail.com>", "Carl Lerche <me@carllerche.com>"]
categories = ["asynchronous", "network-programming"]
documentation = "https://docs.rs/tls-async/0.3.0-alpha.4/tls_async/"
documentation = "https://docs.rs/tls-async/0.3.0-alpha.5/tls_async/"
repository = "https://github.com/dbcfd/tls-async"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This is an experimental fork of [tokio-tls](https://github.com/tokio-rs/tokio/tr
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`
crate]

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

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

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

```toml
[dependencies]
tls-async = "0.3.0-alpha.3"
tls-async = "0.3.0-alpha.5"
```

Next, add this to your crate:
Expand Down
2 changes: 1 addition & 1 deletion examples/download-rust-lang.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(async_await, await_macro, futures_api)]
#![feature(async_await, await_macro)]
use std::net::ToSocketAddrs;

use futures::{FutureExt, TryFutureExt};
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//! functionality provided by the `native-tls` crate, on which this crate is
//! built. Configuration of TLS parameters is still primarily done through the
//! `native-tls` crate.
#![feature(async_await, await_macro, futures_api)]
#![feature(async_await, await_macro)]
mod acceptor;
mod connector;
mod errors;
Expand Down Expand Up @@ -109,4 +109,4 @@ impl<S: AsyncRead + AsyncWrite + Unpin> AsyncWrite for TlsStream<S> {
Err(e) => Poll::Ready(Err(e))
}
}
}
}
2 changes: 1 addition & 1 deletion tests/bad.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(async_await, await_macro, futures_api)]
#![feature(async_await, await_macro)]
use std::net::ToSocketAddrs;

use cfg_if::cfg_if;
Expand Down
2 changes: 1 addition & 1 deletion tests/google.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(async_await, await_macro, futures_api)]
#![feature(async_await, await_macro)]
use std::net::ToSocketAddrs;

use cfg_if::cfg_if;
Expand Down
2 changes: 1 addition & 1 deletion tests/smoke.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(async_await, await_macro, futures_api)]
#![feature(async_await, await_macro)]
use std::io::Write;
use std::process::Command;

Expand Down

0 comments on commit ced1300

Please sign in to comment.