rust-postgres/postgres/Cargo.toml

64 lines
1.6 KiB
TOML
Raw Normal View History

2016-12-20 23:20:00 +00:00
[package]
name = "postgres"
2017-02-04 23:36:15 +00:00
version = "0.13.6"
2016-12-20 23:20:00 +00:00
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT"
description = "A native PostgreSQL driver"
repository = "https://github.com/sfackler/rust-postgres"
2017-02-04 23:36:15 +00:00
documentation = "https://docs.rs/postgres/0.13.6/postgres"
2016-12-26 21:36:34 +00:00
readme = "../README.md"
2016-12-20 23:20:00 +00:00
keywords = ["database", "postgres", "postgresql", "sql"]
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
[lib]
name = "postgres"
path = "src/lib.rs"
test = false
bench = false
[[test]]
name = "test"
path = "tests/test.rs"
[features]
2016-12-21 16:14:24 +00:00
with-bit-vec = ["postgres-shared/with-bit-vec"]
with-chrono = ["postgres-shared/with-chrono"]
with-eui48 = ["postgres-shared/with-eui48"]
2016-12-23 15:47:04 +00:00
with-rustc-serialize = ["postgres-shared/with-rustc-serialize"]
2016-12-21 16:14:24 +00:00
with-serde_json = ["postgres-shared/with-serde_json"]
2016-12-23 15:47:04 +00:00
with-time = ["postgres-shared/with-time"]
2016-12-21 16:14:24 +00:00
with-uuid = ["postgres-shared/with-uuid"]
2016-12-20 23:20:00 +00:00
with-openssl = ["openssl"]
with-native-tls = ["native-tls"]
with-schannel = ["schannel"]
with-security-framework = ["security-framework"]
no-logging = []
[dependencies]
bufstream = "0.1"
fallible-iterator = "0.1.3"
hex = "0.2"
log = "0.3"
postgres-protocol = "0.2"
2016-12-21 16:14:24 +00:00
openssl = { version = "0.9.2", optional = true }
2016-12-20 23:20:00 +00:00
native-tls = { version = "0.1", optional = true }
rustc-serialize = { version = "0.3", optional = true }
schannel = { version = "0.1", optional = true }
security-framework = { version = "0.1.2", optional = true }
2017-01-13 21:12:03 +00:00
postgres-shared = { version = "0.1", path = "../postgres-shared" }
2016-12-21 00:07:45 +00:00
2016-12-20 23:20:00 +00:00
[dev-dependencies]
url = "1.0"
2016-12-23 15:47:04 +00:00
bit-vec = "0.4"
2017-02-08 04:18:26 +00:00
chrono = "0.3"
2016-12-23 15:47:04 +00:00
eui48 = "0.1"
rustc-serialize = "0.3"
2017-01-31 14:54:59 +00:00
serde_json = ">= 0.6, < 0.10"
2016-12-23 15:47:04 +00:00
time = "0.1.14"
2017-02-04 23:15:17 +00:00
uuid = ">= 0.1, < 0.5"