reliar-store-postgres 0.7.0

PostgreSQL provider for the Reliar transactional outbox and inbox: migrations, migrate(), enqueue and the SKIP LOCKED claim.
Documentation
1
2
3
4
5
6
7
8
//! Shared connect-time checks both stores use — the server-version floor ([`version`]) and the
//! `search_path`/relation verification plus its transaction-local wrap ([`schema`]). Nothing here
//! names `outbox` or `inbox`: the table is a bind parameter, never interpolated into a query.

pub(crate) mod schema;
pub(crate) mod version;

pub use version::MIN_SERVER_VERSION_NUM;