rust-postgres/tokio-postgres-openssl/Cargo.toml

28 lines
717 B
TOML
Raw Normal View History

2018-06-27 04:00:26 +00:00
[package]
name = "tokio-postgres-openssl"
version = "0.1.0-rc.1"
2018-06-27 04:00:26 +00:00
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
description = "TLS support for tokio-postgres via openssl"
repository = "https://github.com/sfackler/rust-postgres"
readme = "../README.md"
[badges]
circle-ci = { repository = "sfackler/rust-postgres" }
2018-06-27 04:00:26 +00:00
2018-12-19 05:39:05 +00:00
[features]
default = ["runtime"]
runtime = ["tokio-postgres/runtime"]
2018-06-27 04:00:26 +00:00
[dependencies]
futures = "0.1"
openssl = "0.10"
tokio-io = "0.1"
tokio-openssl = "0.3"
2019-03-06 03:03:36 +00:00
tokio-postgres = { version = "0.4.0-rc.1", path = "../tokio-postgres", default-features = false }
2018-06-27 04:00:26 +00:00
[dev-dependencies]
tokio = "0.1.7"
2019-04-07 03:59:01 +00:00
postgres = { version = "0.16.0-rc.1", path = "../postgres" }