2016-12-20 23:42:28 +00:00
|
|
|
[package]
|
2016-12-26 21:41:09 +00:00
|
|
|
name = "tokio-postgres"
|
2019-06-30 04:18:28 +00:00
|
|
|
version = "0.4.0-rc.3"
|
2016-12-20 23:42:28 +00:00
|
|
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
2018-12-09 01:40:37 +00:00
|
|
|
edition = "2018"
|
2019-03-06 03:03:36 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
description = "A native, asynchronous PostgreSQL client"
|
2016-12-26 21:36:34 +00:00
|
|
|
repository = "https://github.com/sfackler/rust-postgres"
|
|
|
|
readme = "../README.md"
|
2017-02-21 05:30:14 +00:00
|
|
|
keywords = ["database", "postgres", "postgresql", "sql", "async"]
|
2017-04-29 17:03:52 +00:00
|
|
|
categories = ["database"]
|
|
|
|
|
2018-12-14 05:03:47 +00:00
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
|
2017-07-22 22:07:45 +00:00
|
|
|
[package.metadata.docs.rs]
|
2019-03-06 03:03:36 +00:00
|
|
|
all-features = true
|
2017-07-22 22:07:45 +00:00
|
|
|
|
2017-04-29 17:03:52 +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-17 05:30:52 +00:00
|
|
|
default = ["runtime"]
|
2019-07-21 23:09:45 +00:00
|
|
|
runtime = ["tokio-tcp", "tokio-timer", "tokio-uds", "tokio-threadpool", "lazy_static"]
|
2018-12-17 05:30:52 +00:00
|
|
|
|
2019-03-06 03:03:36 +00:00
|
|
|
"with-bit-vec-0_5" = ["bit-vec-05"]
|
|
|
|
"with-chrono-0_4" = ["chrono-04"]
|
|
|
|
"with-eui48-0_4" = ["eui48-04"]
|
|
|
|
"with-geo-types-0_4" = ["geo-types-04"]
|
2018-12-09 02:01:03 +00:00
|
|
|
with-serde_json-1 = ["serde-1", "serde_json-1"]
|
2019-03-06 03:03:36 +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"
|
2019-03-10 23:32:28 +00:00
|
|
|
fallible-iterator = "0.2"
|
2018-06-19 02:34:25 +00:00
|
|
|
log = "0.4"
|
2019-01-01 03:17:04 +00:00
|
|
|
percent-encoding = "1.0"
|
2018-12-09 01:39:20 +00:00
|
|
|
phf = "0.7.23"
|
2019-06-30 04:06:23 +00:00
|
|
|
postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" }
|
2019-07-21 23:09:45 +00:00
|
|
|
tokio-codec = { git = "https://github.com/tokio-rs/tokio" }
|
|
|
|
tokio-io = { git = "https://github.com/tokio-rs/tokio" }
|
2018-06-19 02:34:25 +00:00
|
|
|
|
2019-07-21 23:09:45 +00:00
|
|
|
tokio-tcp = { git = "https://github.com/tokio-rs/tokio", optional = true }
|
|
|
|
tokio-threadpool = { git = "https://github.com/tokio-rs/tokio", optional = true }
|
2018-12-18 05:25:21 +00:00
|
|
|
lazy_static = { version = "1.0", optional = true }
|
2019-07-21 23:09:45 +00:00
|
|
|
tokio-timer = { git = "https://github.com/tokio-rs/tokio", optional = true }
|
2018-12-17 05:30:52 +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 }
|
2019-02-17 20:33:52 +00:00
|
|
|
geo-types-04 = { version = "0.4", package = "geo-types", optional = true }
|
2018-12-09 02:01:03 +00:00
|
|
|
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-12-17 05:30:52 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2019-07-21 23:09:45 +00:00
|
|
|
tokio-uds = { git = "https://github.com/tokio-rs/tokio", optional = true }
|
2018-12-17 05:30:52 +00:00
|
|
|
|
2018-06-19 02:34:25 +00:00
|
|
|
[dev-dependencies]
|
2019-07-21 23:09:45 +00:00
|
|
|
tokio = { git = "https://github.com/tokio-rs/tokio" }
|
2018-06-19 02:34:25 +00:00
|
|
|
env_logger = "0.5"
|