2018-10-15 00:44:46 +00:00
|
|
|
[package]
|
2019-06-29 23:07:56 +00:00
|
|
|
name = "postgres-native-tls"
|
2020-12-25 14:18:12 +00:00
|
|
|
version = "0.5.0"
|
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]
|
|
|
|
native-tls = "0.2"
|
2020-12-24 02:03:15 +00:00
|
|
|
tokio = "1.0"
|
|
|
|
tokio-native-tls = "0.3"
|
2020-12-25 14:08:20 +00:00
|
|
|
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false }
|
2018-10-15 00:44:46 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-14 15:43:12 +00:00
|
|
|
futures-util = "0.3"
|
|
|
|
tokio = { version = "1.0", features = ["macros", "net", "rt"] }
|
2020-12-25 14:14:06 +00:00
|
|
|
postgres = { version = "0.19.0", path = "../postgres" }
|