sqlx-adapter
sqlx-adapter copied to clipboard
Asynchronous casbin adapter for mysql, postgres, sqlite based on sqlx-rs
Results
2
sqlx-adapter issues
Sort by
recently updated
recently updated
newest added
Add support for `AnyPool` such that database can be chosen at runtime. `match` can then be used to run specific queries. ```rust match pool.any_kind() { AnyKind::Postgres => {...}, AnyKind::Sqlite =>...
enhancement
Add a `runtime-tokio` feature that does not select a tls impl. This is useful when using sqlx-adapter via a UDS backed pool.