mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 17:32:56 +00:00
## Problem Closes https://github.com/neondatabase/neon/security/dependabot/56 Supersedes https://github.com/neondatabase/neon/pull/7013 Workflow run: https://github.com/neondatabase/neon/actions/runs/8157302480 ## Summary of changes - Update client libs for `test_runner/pg_clients` to their latest versions
18 lines
426 B
Swift
18 lines
426 B
Swift
// swift-tools-version:5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PostgresNIOExample",
|
|
dependencies: [
|
|
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.20.2")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "PostgresNIOExample",
|
|
dependencies: [
|
|
.product(name: "PostgresNIO", package: "postgres-nio"),
|
|
]
|
|
)
|
|
]
|
|
)
|