From 47738e37744a5b3c1a985adf4756dbb8485578cc Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 26 Dec 2016 16:36:34 -0500 Subject: [PATCH] Cargo.toml updates --- postgres-shared/Cargo.toml | 3 +++ postgres-tokio/Cargo.toml | 5 +++++ postgres-tokio/src/lib.rs | 2 +- postgres/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/postgres-shared/Cargo.toml b/postgres-shared/Cargo.toml index 3231f9c9..d02b8489 100644 --- a/postgres-shared/Cargo.toml +++ b/postgres-shared/Cargo.toml @@ -2,6 +2,9 @@ name = "postgres-shared" version = "0.1.0" authors = ["Steven Fackler "] +license = "MIT" +description = "Internal crate used by postgres libraries" +repository = "https://github.com/sfackler/rust-postgres" [features] with-bit-vec = ["bit-vec"] diff --git a/postgres-tokio/Cargo.toml b/postgres-tokio/Cargo.toml index b83e2969..67bc3ef5 100644 --- a/postgres-tokio/Cargo.toml +++ b/postgres-tokio/Cargo.toml @@ -2,6 +2,11 @@ name = "postgres-tokio" version = "0.1.0" authors = ["Steven Fackler "] +license = "MIT" +description = "A native PostgreSQL driver using Tokio" +repository = "https://github.com/sfackler/rust-postgres" +documentation = "https://docs.rs/postgres-tokio/0.13.4/postgres_tokio" +readme = "../README.md" [features] with-bit-vec = ["postgres-shared/with-bit-vec"] diff --git a/postgres-tokio/src/lib.rs b/postgres-tokio/src/lib.rs index a04b05e4..2cd45765 100644 --- a/postgres-tokio/src/lib.rs +++ b/postgres-tokio/src/lib.rs @@ -1,4 +1,4 @@ -//! An asynchronous Postgres driver. +//! An asynchronous Postgres driver using Tokio. #![warn(missing_docs)] extern crate fallible_iterator; diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 8c4a7790..0d247869 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" description = "A native PostgreSQL driver" repository = "https://github.com/sfackler/rust-postgres" documentation = "https://docs.rs/postgres/0.13.4/postgres" -readme = "README.md" +readme = "../README.md" keywords = ["database", "postgres", "postgresql", "sql"] include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]