rust-postgres/postgres-openssl/Cargo.toml

28 lines
726 B
TOML
Raw Normal View History

2018-06-27 04:00:26 +00:00
[package]
name = "postgres-openssl"
2020-12-25 14:20:58 +00:00
version = "0.5.0"
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
futures = "0.3"
2018-06-27 04:00:26 +00:00
openssl = "0.10"
2020-12-24 02:03:15 +00:00
tokio = "1.0"
tokio-openssl = "0.6"
2020-12-25 14:08:20 +00:00
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false }
2018-06-27 04:00:26 +00:00
[dev-dependencies]
2020-12-24 02:03:15 +00:00
tokio = { version = "1.0", features = ["full"] }
2020-12-25 14:14:06 +00:00
postgres = { version = "0.19.0", path = "../postgres" }