rust-postgres/tokio-postgres/Cargo.toml

34 lines
1.0 KiB
TOML
Raw Normal View History

2016-12-20 23:42:28 +00:00
[package]
2016-12-26 21:41:09 +00:00
name = "tokio-postgres"
2016-12-20 23:42:28 +00:00
version = "0.1.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
2016-12-26 21:36:34 +00:00
license = "MIT"
description = "A native PostgreSQL driver using Tokio"
repository = "https://github.com/sfackler/rust-postgres"
2016-12-26 22:00:07 +00:00
documentation = "https://docs.rs/tokio-postgres/0.1.0/tokio_postgres"
2016-12-26 21:36:34 +00:00
readme = "../README.md"
2016-12-20 23:42:28 +00:00
2016-12-24 17:21:26 +00:00
[features]
2016-12-26 20:35:28 +00:00
with-bit-vec = ["postgres-shared/with-bit-vec"]
with-chrono = ["postgres-shared/with-chrono"]
with-eui48 = ["postgres-shared/with-eui48"]
with-rustc-serialize = ["postgres-shared/with-rustc-serialize"]
with-serde_json = ["postgres-shared/with-serde_json"]
with-time = ["postgres-shared/with-time"]
with-uuid = ["postgres-shared/with-uuid"]
2016-12-24 17:21:26 +00:00
with-openssl = ["tokio-openssl", "openssl"]
2016-12-20 23:42:28 +00:00
[dependencies]
2016-12-21 03:50:44 +00:00
fallible-iterator = "0.1.3"
2016-12-20 23:42:28 +00:00
futures = "0.1.7"
2016-12-26 20:23:13 +00:00
futures-state-stream = "0.1"
2016-12-26 21:47:22 +00:00
postgres-shared = { version = "0.1.0", path = "../postgres-shared" }
2016-12-20 23:42:28 +00:00
postgres-protocol = "0.2"
tokio-core = "0.1"
tokio-dns-unofficial = "0.1"
tokio-uds = "0.1"
2016-12-24 17:21:26 +00:00
tokio-openssl = { version = "0.1", optional = true }
openssl = { version = "0.9", optional = true }