2016-12-20 23:42:28 +00:00
|
|
|
[package]
|
|
|
|
name = "postgres-tokio"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
|
|
|
|
2016-12-24 17:21:26 +00:00
|
|
|
[features]
|
|
|
|
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-23 03:10:45 +00:00
|
|
|
futures-state-stream = { git = "https://github.com/sfackler/futures-state-stream" }
|
2016-12-20 23:42:28 +00:00
|
|
|
postgres-shared = { path = "../postgres-shared" }
|
|
|
|
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 }
|