rust-postgres/tokio-postgres/Cargo.toml

55 lines
1.4 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-09-30 23:14:46 +00:00
version = "0.3.0"
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"
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-0.5",
"with-chrono-0.4",
"with-eui48-0.3",
"with-geo-0.8",
"with-serde_json-1",
"with-uuid-0.6",
2017-07-22 22:07:45 +00:00
"with-openssl",
]
[badges]
2017-07-22 22:09:06 +00:00
circle-ci = { repository = "sfackler/rust-postgres" }
2016-12-20 23:42:28 +00:00
2016-12-24 17:21:26 +00:00
[features]
"with-bit-vec-0.5" = ["postgres-shared/with-bit-vec-0.5"]
"with-chrono-0.4" = ["postgres-shared/with-chrono-0.4"]
"with-eui48-0.3" = ["postgres-shared/with-eui48-0.3"]
"with-geo-0.8" = ["postgres-shared/with-geo-0.8"]
"with-serde_json-1" = ["postgres-shared/with-serde_json-1"]
"with-uuid-0.6" = ["postgres-shared/with-uuid-0.6"]
2016-12-26 20:35:28 +00:00
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"
2018-06-17 04:29:27 +00:00
futures-cpupool = "0.1"
lazy_static = "1.0"
2018-06-19 02:34:25 +00:00
log = "0.4"
2017-06-11 20:06:26 +00:00
postgres-protocol = { version = "0.3.0", path = "../postgres-protocol" }
2017-07-23 20:08:12 +00:00
postgres-shared = { version = "0.4.0", path = "../postgres-shared" }
2018-06-17 04:29:27 +00:00
state_machine_future = "0.1.7"
tokio-codec = "0.1"
2017-04-23 22:39:07 +00:00
tokio-io = "0.1"
2018-06-17 04:29:27 +00:00
tokio-tcp = "0.1"
tokio-timer = "0.2"
[target.'cfg(unix)'.dependencies]
2018-06-17 04:29:27 +00:00
tokio-uds = "0.2"
2018-06-19 02:34:25 +00:00
[dev-dependencies]
tokio = "0.1.7"
env_logger = "0.5"