rust-postgres/Cargo.toml
2015-03-21 15:32:49 -07:00

47 lines
818 B
TOML

[package]
name = "postgres"
version = "0.7.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/rust-postgres/doc/postgres"
readme = "README.md"
keywords = ["database", "sql"]
build = "build.rs"
[lib]
name = "postgres"
path = "src/lib.rs"
test = false
bench = false
[[test]]
name = "test"
path = "tests/test.rs"
[build-dependencies]
phf_codegen = "0.6.11"
[dependencies]
phf = "0.6"
openssl = "0.5"
log = "0.2"
rustc-serialize = "0.3"
byteorder = "0.3"
[dependencies.uuid]
optional = true
version = "0.1"
[dependencies.unix_socket]
optional = true
version = "0.2"
[dependencies.time]
optional = true
version = "0.1.14"
[dev-dependencies]
url = "0.2"