#rustls #integration #tokio-postgres #postgresql #tls

tokio-postgres-tls

tokio-postgres 的 Rustls 集成

1 个不稳定版本

0.12.0 2024年6月30日

22#tokio-postgres

MIT 许可证

10KB
198

tokio-postgres-rustls

这是 rustls TLS 堆栈和 tokio-postgres 异步 PostgreSQL 客户端库 之间的集成。

Crate

API 文档

示例

let config = rustls::ClientConfig::builder()
    .with_root_certificates(rustls::RootCertStore::empty())
    .with_no_client_auth();
let tls = tokio_postgres_rustls::MakeRustlsConnect::new(config);
let connect_fut = tokio_postgres::connect("sslmode=require host=localhost user=postgres", tls);
// ...

许可证

tokio-postgres-rustls 在 MIT 许可证下分发。

依赖项

~16–27MB
~507K SLoC