mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-03 19:42:55 +00:00
Also, use Workaround D for `swift/PostgresClientKitExample`, which supports neither SNI nor connections options
18 lines
424 B
Swift
18 lines
424 B
Swift
// swift-tools-version:5.8
|
|
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" ])
|
|
]
|
|
)
|