Skip to content

Commit 092a7ea

Browse files
committed
Switch dependencies over to registry, add metadata
1 parent 2eeb142 commit 092a7ea

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

Cargo.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
[package]
22
name = "postgres"
3-
version = "0.0.0"
3+
version = "0.0.1"
44
authors = [ "Steven Fackler <sfackler@gmail.com>" ]
55
license = "MIT"
66
description = "A native PostgreSQL driver"
7+
repository = "https://github.com/sfackler/rust-postgres"
8+
documentation = "https://sfackler.github.io/doc/postgres"
9+
readme = "README.md"
10+
keywords = ["database", "sql"]
711

812
[lib]
913
name = "postgres"
@@ -20,11 +24,9 @@ default = ["uuid", "time"]
2024
[dependencies.openssl]
2125
git = "https://github.com/sfackler/rust-openssl"
2226

23-
[dependencies.phf]
24-
git = "https://github.com/sfackler/rust-phf"
25-
26-
[dependencies.phf_mac]
27-
git = "https://github.com/sfackler/rust-phf"
27+
[dependencies]
28+
phf = "*"
29+
phf_mac = "*"
2830

2931
[dependencies.uuid]
3032
git = "https://github.com/rust-lang/uuid"
@@ -34,6 +36,6 @@ optional = true
3436
git = "https://github.com/rust-lang/time"
3537
optional = true
3638

37-
[dev-dependencies.url]
38-
git = "https://github.com/servo/rust-url"
39+
[dev-dependencies]
40+
url = "*"
3941

0 commit comments

Comments
 (0)