rust-postgres/postgres-openssl/Cargo.toml

29 lines
766 B
TOML
Raw Normal View History

2018-06-27 04:00:26 +00:00
[package]
name = "postgres-openssl"
version = "0.3.0-alpha.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]
2019-11-27 00:32:36 +00:00
bytes = "0.5"
futures = "0.3"
2018-06-27 04:00:26 +00:00
openssl = "0.10"
2019-11-27 00:32:36 +00:00
tokio = "0.2"
tokio-openssl = "0.4"
2019-11-28 01:48:01 +00:00
tokio-postgres = { version = "=0.5.0-alpha.2", path = "../tokio-postgres", default-features = false }
2018-06-27 04:00:26 +00:00
[dev-dependencies]
2019-11-27 00:32:36 +00:00
tokio = { version = "0.2", features = ["full"] }
2019-11-28 02:01:24 +00:00
postgres = { version = "=0.17.0-alpha.2", path = "../postgres" }