async-sqlx-session icon indicating copy to clipboard operation
async-sqlx-session copied to clipboard

Results 12 async-sqlx-session issues
Sort by recently updated
recently updated
newest added

Hi, I have an Axum server and was using `MemoryStore`. I just swapped that for `PostgresSessionStore`. I can see that between browser page reloads that my session is persisting but...

I see that sqlx was updated here https://github.com/jbr/async-sqlx-session/commit/3f2e1cfbad766926d387be70462e36d5794a243b Would you be able to publish a new version to crates.io with this upgrade please?

The issue im having is that I am trying to pass in a Pool object to the PostgresSessionStore::from_client(pool) and it gives me an issue of mismatched types Pool and Pool...

Repro steps: ``` cargo new bad-sqlx-sessions cd bad-sqlx-sessions cargo add async-sqlx-session -F pg cargo run ``` It will fail to build. Error text below because it is so long, but...

Updates the requirements on [sqlx](https://github.com/launchbadge/sqlx) to permit the latest version. Changelog Sourced from sqlx's changelog. 0.7.2 - 2023-09-25 23 pull requests were merged this release cycle. Added [#2121]: Add JSON...

dependencies

As per https://github.com/jbr/async-sqlx-session/pull/32

According to the cargo book ([source](https://doc.rust-lang.org/cargo/reference/features.html#feature-unification)): > When a dependency is used by multiple packages, Cargo will use the union of all features enabled on that dependency when building it....

It looks like recently some changes had been made to move away from async_std in this library, but it still didn't work for me using Tokio because the Cargo.toml only...