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§
- Column
ToAdd - A column missing from an existing table and planned for additive creation.
- Index
ToCreate - A standalone index missing from the database and planned for creation.
- Migration
Statement - A SQL statement emitted by a migration plan.
- Schema
Migration Plan - Additive schema changes planned for a live database.
- Table
ToCreate - A table missing from the database and planned for creation.
- Tokio
Postgres Adapter - Tokio
Postgres Rate Limit Store
Enums§
- Migration
Statement Kind - The additive operation represented by a migration statement.
- Schema
Migration Warning - Non-executable findings discovered while planning migrations.