tokio-postgres-tls

Crates.iotokio-postgres-tls
lib.rstokio-postgres-tls
version0.12.0
sourcesrc
created_at2024-06-30 13:02:30.426826
updated_at2024-06-30 13:02:30.426826
descriptionRustls integration for tokio-postgres
homepage
repositoryhttps://github.com/i18n-now/tokio-postgres-tls
max_upload_size
id1287978
size10,979
(3tieto)

documentation

README

tokio-postgres-rustls

This is an integration between the rustls TLS stack and the tokio-postgres asynchronous PostgreSQL client library.

Crate

API Documentation

Example

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);
// ...

License

tokio-postgres-rustls is distributed under the MIT license.

Commit count: 57

cargo fmt