2018-06-27 04:00:26 +00:00
|
|
|
[package]
|
2019-06-29 23:07:56 +00:00
|
|
|
name = "postgres-openssl"
|
2019-12-23 23:57:28 +00:00
|
|
|
version = "0.3.0"
|
2018-06-27 04:00:26 +00:00
|
|
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
2018-12-09 01:27:56 +00:00
|
|
|
edition = "2018"
|
2019-03-07 05:05:04 +00:00
|
|
|
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
|
|
|
futures = "0.3"
|
2018-06-27 04:00:26 +00:00
|
|
|
openssl = "0.10"
|
2020-10-17 13:49:45 +00:00
|
|
|
tokio = "0.3"
|
|
|
|
tokio-openssl = "0.5"
|
2019-12-23 23:40:49 +00:00
|
|
|
tokio-postgres = { version = "0.5.0", path = "../tokio-postgres", default-features = false }
|
2018-06-27 04:00:26 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-10-17 13:49:45 +00:00
|
|
|
tokio = { version = "0.3", features = ["full"] }
|
2019-12-23 23:52:16 +00:00
|
|
|
postgres = { version = "0.17.0", path = "../postgres" }
|