tokio-postgres-generic-rustls/Cargo.toml

22 lines
720 B
TOML
Raw Normal View History

2024-05-03 16:56:02 +00:00
[package]
name = "tokio-postgres-generic-rustls"
version = "0.1.0"
edition = "2021"
2024-05-03 16:56:09 +00:00
[features]
aws-lc-rs = ["dep:aws-lc-rs"]
ring = ["dep:ring"]
rustcrypto = ["dep:sha2"]
2024-05-03 16:56:02 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-05-03 16:56:09 +00:00
aws-lc-rs = { version = "1.7.0", optional = true }
ring = { version = "0.17.8", optional = true }
rustls = { version = "0.23.5", default-features = false }
sha2 = { version = "0.10.8", optional = true }
tokio = { version = "1.37.0", default-features = false }
tokio-postgres = { version = "0.7.10", default-features = false, features = ["runtime"] }
tokio-rustls = { version = "0.26.0", default-features = false }
x509-cert = "0.2.5"