#postgresql #rustls #async-client #integration

tokio-postgres-rustls

Rustls integration for tokio-postgres

16 releases (breaking)

0.13.0 Oct 19, 2024
0.12.0 Apr 2, 2024
0.11.1 Jan 18, 2024
0.10.0 Apr 14, 2023
0.2.0 Jul 12, 2019

#91 in Database interfaces

Download history 30542/week @ 2024-11-30 35204/week @ 2024-12-07 26177/week @ 2024-12-14 10677/week @ 2024-12-21 15861/week @ 2024-12-28 34430/week @ 2025-01-04 36756/week @ 2025-01-11 31422/week @ 2025-01-18 44189/week @ 2025-01-25 54503/week @ 2025-02-01 49754/week @ 2025-02-08 41452/week @ 2025-02-15 45061/week @ 2025-02-22 47103/week @ 2025-03-01 49516/week @ 2025-03-08 52080/week @ 2025-03-15

200,966 downloads per month
Used in 25 crates (14 directly)

MIT license

13KB
236 lines

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.

Dependencies

~16–26MB
~499K SLoC