15 个版本 (重大更新)
0.12.0 | 2024年4月2日 |
---|---|
0.11.1 | 2024年1月18日 |
0.10.0 | 2023年4月14日 |
0.9.0 | 2021年11月16日 |
0.2.0 | 2019年7月12日 |
#95 在 数据库接口
70,584 每月下载量
在 18 个 Crates 中使用 (直接使用 10 个)
11KB
199 行代码
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
~508K SLoC