Cargo.toml updates

This commit is contained in:
Steven Fackler 2016-12-26 16:36:34 -05:00
parent 87034feb2b
commit 47738e3774
4 changed files with 10 additions and 2 deletions

View File

@ -2,6 +2,9 @@
name = "postgres-shared"
version = "0.1.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT"
description = "Internal crate used by postgres libraries"
repository = "https://github.com/sfackler/rust-postgres"
[features]
with-bit-vec = ["bit-vec"]

View File

@ -2,6 +2,11 @@
name = "postgres-tokio"
version = "0.1.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"]

View File

@ -1,4 +1,4 @@
//! An asynchronous Postgres driver.
//! An asynchronous Postgres driver using Tokio.
#![warn(missing_docs)]
extern crate fallible_iterator;

View File

@ -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"]