libpgdump 1.0.0

A Rust library for reading and writing PostgreSQL dump files
Documentation
services:
  postgres:
    image: postgres:18
    healthcheck:
      test: /usr/bin/pg_isready
      interval: 30s
      timeout: 10s
      start_period: 5s
      start_interval: 2s
      retries: 3
    environment:
      POSTGRES_HOST_AUTH_METHOD: trust
    ports:
      - "5432"
    volumes:
      - type: bind
        source: ./build/data
        target: /data
      - type: bind
        source: ./fixtures
        target: /fixtures