rust-postgres/tokio-postgres/Cargo.toml

59 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-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>"]
2018-12-09 01:40:37 +00:00
edition = "2018"
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",
2018-12-09 16:13:14 +00:00
"with-eui48-0.4",
2018-08-17 13:54:52 +00:00
"with-geo-0.10",
"with-serde_json-1",
2018-12-09 16:13:14 +00:00
"with-uuid-0.7",
2017-07-22 22:07:45 +00:00
]
[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]
2018-12-09 02:01:03 +00:00
"with-bit-vec-0.5" = ["bit-vec-05"]
"with-chrono-0.4" = ["chrono-04"]
2018-12-09 02:09:19 +00:00
"with-eui48-0.4" = ["eui48-04"]
2018-12-09 02:01:03 +00:00
"with-geo-0.10" = ["geo-010"]
with-serde_json-1 = ["serde-1", "serde_json-1"]
2018-12-09 02:09:19 +00:00
"with-uuid-0.7" = ["uuid-07"]
2016-12-26 20:35:28 +00:00
2016-12-20 23:42:28 +00:00
[dependencies]
2018-07-05 04:02:08 +00:00
antidote = "1.0"
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"
2018-06-19 02:34:25 +00:00
log = "0.4"
2018-12-09 01:39:20 +00:00
phf = "0.7.23"
2017-06-11 20:06:26 +00:00
postgres-protocol = { version = "0.3.0", path = "../postgres-protocol" }
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"
void = "1.0"
2018-06-19 02:34:25 +00:00
2018-12-09 02:01:03 +00:00
bit-vec-05 = { version = "0.5", package = "bit-vec", optional = true }
chrono-04 = { version = "0.4", package = "chrono", optional = true }
2018-12-09 02:09:19 +00:00
eui48-04 = { version = "0.4", package = "eui48", optional = true }
2018-12-09 02:01:03 +00:00
geo-010 = { version = "0.10", package = "geo", optional = true }
serde-1 = { version = "1.0", package = "serde", optional = true }
serde_json-1 = { version = "1.0", package = "serde_json", optional = true }
2018-12-09 02:09:19 +00:00
uuid-07 = { version = "0.7", package = "uuid", optional = true }
2018-12-09 01:39:20 +00:00
2018-06-19 02:34:25 +00:00
[dev-dependencies]
tokio = "0.1.7"
env_logger = "0.5"