Skip to content

Commit 47738e3

Browse files
committed
Cargo.toml updates
1 parent 87034fe commit 47738e3

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

postgres-shared/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "postgres-shared"
33
version = "0.1.0"
44
authors = ["Steven Fackler <[email protected]>"]
5+
license = "MIT"
6+
description = "Internal crate used by postgres libraries"
7+
repository = "https://github.com/sfackler/rust-postgres"
58

69
[features]
710
with-bit-vec = ["bit-vec"]

postgres-tokio/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
name = "postgres-tokio"
33
version = "0.1.0"
44
authors = ["Steven Fackler <[email protected]>"]
5+
license = "MIT"
6+
description = "A native PostgreSQL driver using Tokio"
7+
repository = "https://github.com/sfackler/rust-postgres"
8+
documentation = "https://docs.rs/postgres-tokio/0.13.4/postgres_tokio"
9+
readme = "../README.md"
510

611
[features]
712
with-bit-vec = ["postgres-shared/with-bit-vec"]

postgres-tokio/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! An asynchronous Postgres driver.
1+
//! An asynchronous Postgres driver using Tokio.
22
#![warn(missing_docs)]
33

44
extern crate fallible_iterator;

postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT"
66
description = "A native PostgreSQL driver"
77
repository = "https://github.com/sfackler/rust-postgres"
88
documentation = "https://docs.rs/postgres/0.13.4/postgres"
9-
readme = "README.md"
9+
readme = "../README.md"
1010
keywords = ["database", "postgres", "postgresql", "sql"]
1111
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
1212

0 commit comments

Comments
 (0)