1 个不稳定版本
0.12.0 | 2024年6月30日 |
---|
22 在 #tokio-postgres
10KB
198 行
tokio-postgres-rustls
这是 rustls TLS 堆栈和 tokio-postgres 异步 PostgreSQL 客户端库 之间的集成。
示例
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