rust-postgres/Cargo.toml
2014-11-17 19:11:32 -08:00

38 lines
674 B
TOML

[package]
name = "postgres"
version = "0.0.0"
authors = [ "Steven Fackler <sfackler@gmail.com>" ]
[lib]
name = "postgres"
path = "src/lib.rs"
test = false
[[test]]
name = "test"
path = "tests/test.rs"
[features]
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.uuid]
git = "https://github.com/rust-lang/uuid"
optional = true
[dependencies.time]
git = "https://github.com/rust-lang/time"
optional = true
[dev-dependencies.url]
git = "https://github.com/servo/rust-url"