Switch dependencies over to registry, add metadata
This commit is contained in:
parent
2eeb142112
commit
092a7ea9d6
18
Cargo.toml
18
Cargo.toml
@ -1,9 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "postgres"
|
name = "postgres"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
authors = [ "Steven Fackler <sfackler@gmail.com>" ]
|
authors = [ "Steven Fackler <sfackler@gmail.com>" ]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "A native PostgreSQL driver"
|
description = "A native PostgreSQL driver"
|
||||||
|
repository = "https://github.com/sfackler/rust-postgres"
|
||||||
|
documentation = "https://sfackler.github.io/doc/postgres"
|
||||||
|
readme = "README.md"
|
||||||
|
keywords = ["database", "sql"]
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "postgres"
|
name = "postgres"
|
||||||
@ -20,11 +24,9 @@ default = ["uuid", "time"]
|
|||||||
[dependencies.openssl]
|
[dependencies.openssl]
|
||||||
git = "https://github.com/sfackler/rust-openssl"
|
git = "https://github.com/sfackler/rust-openssl"
|
||||||
|
|
||||||
[dependencies.phf]
|
[dependencies]
|
||||||
git = "https://github.com/sfackler/rust-phf"
|
phf = "*"
|
||||||
|
phf_mac = "*"
|
||||||
[dependencies.phf_mac]
|
|
||||||
git = "https://github.com/sfackler/rust-phf"
|
|
||||||
|
|
||||||
[dependencies.uuid]
|
[dependencies.uuid]
|
||||||
git = "https://github.com/rust-lang/uuid"
|
git = "https://github.com/rust-lang/uuid"
|
||||||
@ -34,6 +36,6 @@ optional = true
|
|||||||
git = "https://github.com/rust-lang/time"
|
git = "https://github.com/rust-lang/time"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dev-dependencies.url]
|
[dev-dependencies]
|
||||||
git = "https://github.com/servo/rust-url"
|
url = "*"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user