rust-postgres/postgres/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

2018-12-21 21:34:09 +00:00
[package]
name = "postgres"
2019-06-30 04:43:50 +00:00
version = "0.16.0-rc.2"
2018-12-21 21:34:09 +00:00
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
2019-04-07 03:59:01 +00:00
license = "MIT/Apache-2.0"
description = "A native, synchronous PostgreSQL client"
repository = "https://github.com/sfackler/rust-postgres"
readme = "../README.md"
keywords = ["database", "postgres", "postgresql", "sql"]
categories = ["database"]
[package.metadata.docs.rs]
all-features = true
[badges]
circle-ci = { repository = "sfackler/rust-postgres" }
2018-12-21 21:34:09 +00:00
[features]
default = ["runtime"]
runtime = ["tokio-postgres/runtime", "tokio", "lazy_static", "log"]
"with-bit-vec-0_6" = ["tokio-postgres/with-bit-vec-0_6"]
2019-03-06 03:03:36 +00:00
"with-chrono-0_4" = ["tokio-postgres/with-chrono-0_4"]
"with-eui48-0_4" = ["tokio-postgres/with-eui48-0_4"]
"with-geo-types-0_4" = ["tokio-postgres/with-geo-types-0_4"]
2019-01-31 05:19:39 +00:00
"with-serde_json-1" = ["tokio-postgres/with-serde_json-1"]
2019-03-06 03:03:36 +00:00
"with-uuid-0_7" = ["tokio-postgres/with-uuid-0_7"]
2019-01-31 05:19:39 +00:00
2018-12-21 21:34:09 +00:00
[dependencies]
2018-12-23 21:08:02 +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 = "=0.3.0-alpha.19"
2019-08-11 03:25:12 +00:00
pin-utils = "=0.1.0-alpha.4"
2019-03-06 05:49:41 +00:00
tokio-postgres = { version = "0.4.0-rc.2", path = "../tokio-postgres", default-features = false }
2019-10-01 01:26:23 +00:00
tokio-executor = "=0.2.0-alpha.6"
2018-12-21 21:34:09 +00:00
2019-10-01 01:26:23 +00:00
tokio = { version = "=0.2.0-alpha.6", optional = true }
2018-12-21 21:34:09 +00:00
lazy_static = { version = "1.0", optional = true }
log = { version = "0.4", optional = true }
2019-08-04 01:09:27 +00:00
[dev-dependencies]
2019-10-01 01:26:23 +00:00
tokio = "=0.2.0-alpha.6"