mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 23:12:54 +00:00
18 lines
426 B
Swift
18 lines
426 B
Swift
// swift-tools-version:5.8
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PostgresNIOExample",
|
|
dependencies: [
|
|
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.16.0")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "PostgresNIOExample",
|
|
dependencies: [
|
|
.product(name: "PostgresNIO", package: "postgres-nio"),
|
|
]
|
|
)
|
|
]
|
|
)
|