axum-sqlx-tx 0.1.0

Request-scoped SQLx transactions for axum
docs.rs failed to build axum-sqlx-tx-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: axum-sqlx-tx-0.10.0

axum-sqlx-rx

Request-bound SQLx transactions for axum.

Summary

axum-sqlx-rx provides an axum extractor for obtaining a request-bound transaction. The transaction begins the first time the extractor is used, and is stored with the request for use by other middleware/handlers. The transaction is resolved depending on the status code of the response – successful (2XX) responses will commit the transaction, otherwise it will be rolled back.

See the crate documentation for more information and examples.