forked from jbg/tokio-postgres-rustls
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
23 lines (21 loc) · 864 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "tokio-postgres-rustls"
description = "Rustls integration for tokio-postgres"
version = "0.10.0"
authors = ["Jasper Hugo <[email protected]>"]
repository = "https://github.com/jbg/tokio-postgres-rustls"
edition = "2018"
license = "MIT"
readme = "README.md"
[dependencies]
futures = { version = "0.3", default-features = false }
ring = { version = "0.16", default-features = false }
rustls = { version = "0.21", default-features = false }
tokio = { version = "1", default-features = false }
tokio-postgres = { version = "0.7", default-features = false }
tokio-rustls = { version = "0.24", default-features = false }
[dev-dependencies]
env_logger = { version = "0.8", default-features = false }
tokio = { version = "1", features = ["macros", "rt"] }
tokio-postgres = "0.7"
rustls = { version = "0.21", features = ["dangerous_configuration"] }