From 092a7ea9d6e489bd1efe86773117665bd6ef66c0 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 22 Nov 2014 15:52:11 -0800 Subject: [PATCH] Switch dependencies over to registry, add metadata --- Cargo.toml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 437d04e1..c83f7120 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,13 @@ [package] name = "postgres" -version = "0.0.0" +version = "0.0.1" authors = [ "Steven Fackler " ] license = "MIT" 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] name = "postgres" @@ -20,11 +24,9 @@ default = ["uuid", "time"] [dependencies.openssl] git = "https://github.com/sfackler/rust-openssl" -[dependencies.phf] -git = "https://github.com/sfackler/rust-phf" - -[dependencies.phf_mac] -git = "https://github.com/sfackler/rust-phf" +[dependencies] +phf = "*" +phf_mac = "*" [dependencies.uuid] git = "https://github.com/rust-lang/uuid" @@ -34,6 +36,6 @@ optional = true git = "https://github.com/rust-lang/time" optional = true -[dev-dependencies.url] -git = "https://github.com/servo/rust-url" +[dev-dependencies] +url = "*"