rust-postgres/Cargo.toml
Steven Fackler d0a5bd7679 Release 0.1.2
Just fixes for upstream changes
2014-11-28 12:27:32 -08:00

40 lines
665 B
TOML

[package]
name = "postgres"
version = "0.1.2"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"
path = "src/lib.rs"
test = false
[[test]]
name = "test"
path = "tests/test.rs"
[features]
default = ["uuid", "time"]
[dependencies]
phf = "0.1"
phf_mac = "0.1"
openssl = "0.2"
[dependencies.uuid]
optional = true
version = "0.1"
[dependencies.time]
optional = true
version = "0.1"
[dev-dependencies]
url = "0.2"