gitextract_j417607q/ ├── .github/ │ ├── CODEOWNERS │ ├── dependabot.yml │ └── workflows/ │ ├── api-docs.yml │ └── test.yml ├── .gitignore ├── .spi.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ └── PostgresKit/ │ ├── ConnectionPool+Postgres.swift │ ├── Deprecations/ │ │ ├── PostgresColumnType.swift │ │ ├── PostgresConfiguration.swift │ │ ├── PostgresConnectionSource+PostgresConfiguration.swift │ │ ├── PostgresDataDecoder.swift │ │ ├── PostgresDataEncoder.swift │ │ └── PostgresDatabase+SQL+Deprecated.swift │ ├── Docs.docc/ │ │ ├── PostgresKit.md │ │ └── theme-settings.json │ ├── Exports.swift │ ├── PostgresConnectionSource.swift │ ├── PostgresDataTranslation.swift │ ├── PostgresDatabase+SQL.swift │ ├── PostgresDialect.swift │ ├── PostgresRow+SQL.swift │ └── SQLPostgresConfiguration.swift └── Tests/ └── PostgresKitTests/ ├── PostgresKitTests.swift ├── SQLPostgresConfigurationTests.swift └── Utilities.swift