rust-postgres/tokio-postgres/Cargo.toml

57 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-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"]
categories = ["database"]
[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
[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-10-14 22:07:03 +00:00
runtime = ["tokio/rt-full", "tokio/tcp", "tokio/uds"]
2018-12-17 05:30:52 +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"]
"with-uuid-0_7" = ["postgres-types/with-uuid-0_7"]
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"
2019-03-10 23:32:28 +00:00
fallible-iterator = "0.2"
2019-10-01 01:26:23 +00:00
futures-preview = { version = "=0.3.0-alpha.19", features = ["async-await"] }
2018-06-19 02:34:25 +00:00
log = "0.4"
2019-07-24 03:16:31 +00:00
parking_lot = "0.9"
percent-encoding = "1.0"
2019-08-11 03:25:12 +00:00
pin-utils = "=0.1.0-alpha.4"
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" }
postgres-types = { version = "0.1.0", path = "../postgres-types" }
2019-10-01 01:26:23 +00:00
tokio = { version = "=0.2.0-alpha.6", default-features = false, features = ["io", "codec"] }
2018-06-19 02:34:25 +00:00
[dev-dependencies]
2019-10-01 01:26:23 +00:00
tokio = "=0.2.0-alpha.6"
2018-06-19 02:34:25 +00:00
env_logger = "0.5"
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" }
uuid-07 = { version = "0.7", package = "uuid" }