mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 05:22:56 +00:00
Update client libraries and runtimes for Postgres libraries we test.
- `pg8000` works with Neon now 🎉
- `PostgresClientKit` still doesn't support SNI
18 lines
424 B
Swift
18 lines
424 B
Swift
// swift-tools-version:5.7
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PostgresClientKitExample",
|
|
dependencies: [
|
|
.package(
|
|
url: "https://github.com/codewinsdotcom/PostgresClientKit.git",
|
|
revision: "v1.5.0"
|
|
)
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "PostgresClientKitExample",
|
|
dependencies: [ "PostgresClientKit" ])
|
|
]
|
|
)
|