A Rust library implementing a task queue based on PostgreSQL.
- Rust 1.71+
- sqlx is used to run the SQL migrations
# build the project with clippy warnings
make
# run test
make test
# watch changes, live build and test during development
make dev
# run DB migration
make migrate
# clear database tables
make clear-db
# setup database from scratch with sqlx
make init-db
# re-create database with sqlx
make reset-db