2018-10-15 00:44:46 +00:00
|
|
|
[package]
|
|
|
|
name = "tokio-postgres-native-tls"
|
2019-03-07 05:16:03 +00:00
|
|
|
version = "0.1.0-rc.1"
|
2018-10-15 00:44:46 +00:00
|
|
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
2018-12-09 01:26:14 +00:00
|
|
|
edition = "2018"
|
2019-03-07 05:16:03 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
description = "TLS support for tokio-postgres via native-tls"
|
|
|
|
repository = "https://github.com/sfackler/rust-postgres"
|
|
|
|
readme = "../README.md"
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
circle-ci = { repository = "sfackler/rust-postgres" }
|
2018-10-15 00:44:46 +00:00
|
|
|
|
2019-01-17 02:30:04 +00:00
|
|
|
[features]
|
|
|
|
default = ["runtime"]
|
|
|
|
runtime = ["tokio-postgres/runtime"]
|
|
|
|
|
2018-10-15 00:44:46 +00:00
|
|
|
[dependencies]
|
|
|
|
futures = "0.1"
|
|
|
|
native-tls = "0.2"
|
|
|
|
tokio-io = "0.1"
|
2019-01-17 02:30:04 +00:00
|
|
|
tokio-tls = "0.2.1"
|
2019-03-06 03:03:36 +00:00
|
|
|
tokio-postgres = { version = "0.4.0-rc.1", path = "../tokio-postgres", default-features = false }
|
2018-10-15 00:44:46 +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" }
|