Release tokio-postgres-native-tls v0.1.0-rc.1
This commit is contained in:
parent
e12902a2a5
commit
e434aadf04
9
tokio-postgres-native-tls/CHANGELOG.md
Normal file
9
tokio-postgres-native-tls/CHANGELOG.md
Normal 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
|
@ -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"]
|
||||
|
1
tokio-postgres-native-tls/LICENSE-APACHE
Symbolic link
1
tokio-postgres-native-tls/LICENSE-APACHE
Symbolic link
@ -0,0 +1 @@
|
||||
../tokio-postgres/LICENSE-APACHE
|
1
tokio-postgres-native-tls/LICENSE-MIT
Symbolic link
1
tokio-postgres-native-tls/LICENSE-MIT
Symbolic link
@ -0,0 +1 @@
|
||||
../tokio-postgres/LICENSE-MIT
|
@ -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};
|
||||
|
Loading…
Reference in New Issue
Block a user