rust-postgres/tokio-postgres/Cargo.toml

57 lines
1.6 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"
2017-06-11 20:11:19 +00:00
version = "0.2.3"
2016-12-20 23:42:28 +00:00
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"
2017-05-02 15:56:12 +00:00
documentation = "https://docs.rs/tokio-postgres/0.2.2/tokio_postgres"
2016-12-26 21:36:34 +00:00
readme = "../README.md"
2017-02-21 05:30:14 +00:00
keywords = ["database", "postgres", "postgresql", "sql", "async"]
categories = ["database"]
2017-07-22 22:07:45 +00:00
[package.metadata.docs.rs]
features = [
"with-bit-vec",
"with-chrono",
"with-eui48",
"with-geo",
"with-rustc-serialize",
"with-serde_json",
"with-time",
"with-uuid",
"with-openssl",
]
[badges]
travis-ci = { repository = "sfackler/rust-postgres" }
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"]
2017-03-10 23:33:43 +00:00
with-geo = ["postgres-shared/with-geo"]
2016-12-26 20:35:28 +00:00
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]
2017-04-23 22:39:07 +00:00
bytes = "0.4"
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"
2017-06-11 20:06:26 +00:00
postgres-protocol = { version = "0.3.0", path = "../postgres-protocol" }
postgres-shared = { version = "0.3.0", path = "../postgres-shared" }
2016-12-20 23:42:28 +00:00
tokio-core = "0.1"
tokio-dns-unofficial = "0.1"
2017-04-23 22:39:07 +00:00
tokio-io = "0.1"
2016-12-24 17:21:26 +00:00
tokio-openssl = { version = "0.1", optional = true }
openssl = { version = "0.9", optional = true }
[target.'cfg(unix)'.dependencies]
tokio-uds = "0.1"