Release tokio-postgres-native-tls v0.1.0-rc.1

This commit is contained in:
Steven Fackler 2019-03-06 21:16:03 -08:00
parent e12902a2a5
commit e434aadf04
5 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,9 @@
# Change Log
## [Unreleased]
## v0.1.0-rc.1 - 2019-03-06
* Initial release.
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-native-tls-v0.1.0-rc.1...master

View File

@ -1,8 +1,15 @@
[package]
name = "tokio-postgres-native-tls"
version = "0.1.0"
version = "0.1.0-rc.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
description = "TLS support for tokio-postgres via native-tls"
repository = "https://github.com/sfackler/rust-postgres"
readme = "../README.md"
[badges]
circle-ci = { repository = "sfackler/rust-postgres" }
[features]
default = ["runtime"]

View File

@ -0,0 +1 @@
../tokio-postgres/LICENSE-APACHE

View File

@ -0,0 +1 @@
../tokio-postgres/LICENSE-MIT

View File

@ -22,7 +22,7 @@
//!
//! // ...
//! ```
#![doc(html_root_url = "https://docs.rs/tokio-postgres-native-tls/0.1.0-rc.1")]
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
use futures::{try_ready, Async, Future, Poll};