Skip to main content

Crate openauth_tokio_postgres

Crate openauth_tokio_postgres 

Source
Expand description

Minimal tokio-postgres database adapter for OpenAuth.

This crate is useful when the application already owns a single tokio_postgres::Client or wants the smallest async Postgres adapter. Production applications that need pooling should prefer openauth-deadpool-postgres.

Modules§

driver
Shared tokio-postgres driver helpers for Postgres-based OpenAuth adapters.
migration
Migration compatibility re-exports for tokio-postgres adapters.

Structs§

ColumnToAdd
A column missing from an existing table and planned for additive creation.
IndexToCreate
A standalone index missing from the database and planned for creation.
MigrationStatement
A SQL statement emitted by a migration plan.
SchemaMigrationPlan
Additive schema changes planned for a live database.
TableToCreate
A table missing from the database and planned for creation.
TokioPostgresAdapter
TokioPostgresRateLimitStore

Enums§

MigrationStatementKind
The additive operation represented by a migration statement.
SchemaMigrationWarning
Non-executable findings discovered while planning migrations.