diff --git a/tokio-postgres-native-tls/CHANGELOG.md b/tokio-postgres-native-tls/CHANGELOG.md new file mode 100644 index 000000000..008c0eaf9 --- /dev/null +++ b/tokio-postgres-native-tls/CHANGELOG.md @@ -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 diff --git a/tokio-postgres-native-tls/Cargo.toml b/tokio-postgres-native-tls/Cargo.toml index 0c7e77b25..26f21f932 100644 --- a/tokio-postgres-native-tls/Cargo.toml +++ b/tokio-postgres-native-tls/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "tokio-postgres-native-tls" -version = "0.1.0" +version = "0.1.0-rc.1" authors = ["Steven Fackler "] 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"] diff --git a/tokio-postgres-native-tls/LICENSE-APACHE b/tokio-postgres-native-tls/LICENSE-APACHE new file mode 120000 index 000000000..b9e46b0fc --- /dev/null +++ b/tokio-postgres-native-tls/LICENSE-APACHE @@ -0,0 +1 @@ +../tokio-postgres/LICENSE-APACHE \ No newline at end of file diff --git a/tokio-postgres-native-tls/LICENSE-MIT b/tokio-postgres-native-tls/LICENSE-MIT new file mode 120000 index 000000000..162832a42 --- /dev/null +++ b/tokio-postgres-native-tls/LICENSE-MIT @@ -0,0 +1 @@ +../tokio-postgres/LICENSE-MIT \ No newline at end of file diff --git a/tokio-postgres-native-tls/src/lib.rs b/tokio-postgres-native-tls/src/lib.rs index 46c103462..1b873beae 100644 --- a/tokio-postgres-native-tls/src/lib.rs +++ b/tokio-postgres-native-tls/src/lib.rs @@ -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};