rust-postgres/tokio-postgres/Cargo.toml

66 lines
1.8 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"
2019-12-25 16:19:04 +00:00
version = "0.5.1"
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"]
categories = ["database"]
[lib]
test = false
2019-10-16 01:17:10 +00:00
[[bench]]
name = "bench"
harness = 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
[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-11-27 00:32:36 +00:00
runtime = ["tokio/dns", "tokio/net", "tokio/time"]
2018-12-17 05:30:52 +00:00
2019-10-14 22:13:27 +00:00
with-bit-vec-0_6 = ["postgres-types/with-bit-vec-0_6"]
with-chrono-0_4 = ["postgres-types/with-chrono-0_4"]
with-eui48-0_4 = ["postgres-types/with-eui48-0_4"]
with-geo-types-0_4 = ["postgres-types/with-geo-types-0_4"]
with-serde_json-1 = ["postgres-types/with-serde_json-1"]
2019-10-19 17:37:28 +00:00
with-uuid-0_8 = ["postgres-types/with-uuid-0_8"]
2016-12-26 20:35:28 +00:00
2016-12-20 23:42:28 +00:00
[dependencies]
async-trait = "0.1"
2019-11-27 00:32:36 +00:00
bytes = "0.5"
byteorder = "1.0"
2019-03-10 23:32:28 +00:00
fallible-iterator = "0.2"
2019-11-27 00:32:36 +00:00
futures = "0.3"
2018-06-19 02:34:25 +00:00
log = "0.4"
2019-11-28 01:42:31 +00:00
parking_lot = "0.10"
2019-10-19 17:53:54 +00:00
percent-encoding = "2.0"
2019-11-19 02:12:34 +00:00
pin-project-lite = "0.1"
2019-10-19 17:53:54 +00:00
phf = "0.8"
2019-12-23 23:21:52 +00:00
postgres-protocol = { version = "0.5.0", path = "../postgres-protocol" }
2019-12-23 23:31:41 +00:00
postgres-types = { version = "0.1.0", path = "../postgres-types" }
2019-11-27 00:32:36 +00:00
tokio = { version = "0.2", features = ["io-util"] }
tokio-util = { version = "0.2", features = ["codec"] }
2018-06-19 02:34:25 +00:00
[dev-dependencies]
2019-11-27 00:32:36 +00:00
tokio = { version = "0.2", features = ["full"] }
2019-10-19 17:53:54 +00:00
env_logger = "0.7"
2019-10-16 01:17:10 +00:00
criterion = "0.3"
2019-10-08 00:18:00 +00:00
bit-vec-06 = { version = "0.6", package = "bit-vec" }
chrono-04 = { version = "0.4", package = "chrono" }
eui48-04 = { version = "0.4", package = "eui48" }
geo-types-04 = { version = "0.4", package = "geo-types" }
serde-1 = { version = "1.0", package = "serde" }
serde_json-1 = { version = "1.0", package = "serde_json" }
2019-10-19 17:37:28 +00:00
uuid-08 = { version = "0.8", package = "uuid" }