tokio-postgres-rustls icon indicating copy to clipboard operation
tokio-postgres-rustls copied to clipboard

Integration between rustls and tokio-postgres

Results 9 tokio-postgres-rustls issues
Sort by recently updated
recently updated
newest added

This just came up in my automatic license check using `cargo-deny` and I wanted to raise awareness, because in my project and company this is a problem. #14 brought in...

It seems practically every user of the postgres lib is struggling with support `sslmode=require|verify-ca|verifu-full` per [pg ssl docs](https://www.postgresql.org/docs/current/libpq-ssl.html). I believe this requires these new features, and this lib is probably...

even if the user overrides the rustls use aws_lc_rs this crate still uses ring for digest calculation. same behaviour with the same api exists in aws_lc_rs so this pr exposes...

Hi thanks for helpful crate. As of `0.23.0` `rustls` defaults to use crypto provider `aws-lc-rs` [rustls crate 0.23.0 docs](https://docs.rs/crate/rustls/0.23.0/features) This project uses `rustls = { version = "0.23", default-features =...

Because of the requirement that `S: Unpin`, there's no need for awkward pin projection code. Alternatively, tokio already depends on [pin-project-lite](https://docs.rs/pin-project-lite/latest/pin_project_lite/) [unconditionally](https://github.com/tokio-rs/tokio/blob/0dbdd196b6a9af9a106c654a8613088b81a64655/tokio/Cargo.toml#L91). So if you don't want to rely on...

While [updating our test suite](https://github.com/neondatabase/neon/pull/9613) to use the latest tokio-postgres-rustls, I noticed that our channel binding tests started failing. I suspected this might be an incompatibility with rcgen but when...

This repo seems abandoned, nevertheless I wanted to perform my due diligence in offering this PR to backport the fixes from https://github.com/khorsolutions/tokio-postgres-rustls-improved/ - Incorporate @conradludgate's fixes for channel binding make...

Both tokio_postgres_rustls and postgres_native_tls are interchangeable. When I try to swap this library, however, the returned types don't match up. A more complete example would be great. Happy to submit...