rust-postgres/Cargo.toml
2015-12-06 14:41:55 -08:00

47 lines
1.3 KiB
TOML

[package]
name = "postgres"
version = "0.10.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/v0.10.2/postgres"
readme = "README.md"
keywords = ["database", "sql"]
build = "build.rs"
exclude = [".travis.yml", ".gitignore", ".travis/*", "benches/*", "tests/*"]
[lib]
name = "postgres"
path = "src/lib.rs"
test = false
bench = false
[[test]]
name = "test"
path = "tests/test.rs"
[build-dependencies]
phf_codegen = "0.7"
[dependencies]
bufstream = "0.1"
byteorder = ">= 0.3, < 0.5"
log = "0.3"
phf = "0.7"
hex = "0.1"
net2 = { version = "0.2", features = ["nightly"] }
rustc-serialize = { version = "0.3", optional = true }
chrono = { version = "0.2.14", optional = true }
openssl = { version = ">= 0.6.4, < 0.8", optional = true }
serde = { version = "0.3", optional = true } # Delete for 0.11
serde_json = { version = "0.6", optional = true }
time = { version = "0.1.14", optional = true }
unix_socket = { version = "0.4.1", optional = true, features = ["socket_timeout"] }
uuid = { version = "0.1", optional = true }
security-framework = { version = "0.1.1", optional = true }
bit-vec = { version = "0.4", optional = true }
[dev-dependencies]
url = "0.2"