dsykes16

Results 19 comments of dsykes16

I also ran into this issue. In the interest of saving time for anyone else that stumbles upon this issue, the fix seems to be setting `--wait=false` on the Helm...

Per [RFC 7519](https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.2): > The "sub" value is a case-sensitive string containing a StringOrURI value The current implementation in `jsonwebtoken` appears to be compliant with that RFC. This request is...

Do you realize how ironic it is to create _more_ work for the maintainers of this repo, whom are potentially working without pay, by posting political opinions as an issue...

The real solution here is to add proper response schemas to the OpenAPI Spec, then folks can generate strongly typed API Clients in any language they want. It's a straightforward...

v10 introduced `rust_crypto` or `aws_lc_rs` feature support (#428), so I believe this is resolved. @Keats

There is a maintained fork with a comprehensive test suite, fixes for SASL/SCRAM channel binding, and unsafe code removed that would welcome any contributions: https://github.com/khorsolutions/tokio-postgres-rustls-improved A full usage example is:...

@snspinn, based on your error, I think you're trying to abstract out the actual connection. You'd want to keep that generic, like this: ```rust async fn connect( pg_config: Config, tls:...

@snspinn, if you want to support either backend with feature flags, a crude (but working) example is: `src/main.rs` ```rust use tokio_postgres::config::{Config, SslMode}; use tokio_postgres::{Client, Connection, Error, Socket, tls::MakeTlsConnect}; #[cfg(feature =...

This will require some manual work, and also requires https://github.com/Keats/jsonwebtoken/pull/441 on the `jsonwebtoken` side. I'll put up a PR once the upstream change is made in `jsonwebtoken`. The main benefit...

`scope` isn't a standardized claim for JWTs per [RFC 7519](https://datatracker.ietf.org/doc/html/rfc7519). It is standardized for OAuth 2.0 Token Exchange in [RFC 8693](https://datatracker.ietf.org/doc/html/rfc8693#name-scope-scopes-claim), but `jsonwebtoken` is not an OAuth library. This seems...