mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-08 22:12:56 +00:00
It supports SNI. See discussion at https://community.neon.tech/t/postgresnio-swift-sni-support/419/4
18 lines
425 B
Swift
18 lines
425 B
Swift
// swift-tools-version:5.7
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PostgresNIOExample",
|
|
dependencies: [
|
|
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.8.0")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "PostgresNIOExample",
|
|
dependencies: [
|
|
.product(name: "PostgresNIO", package: "postgres-nio"),
|
|
]
|
|
)
|
|
]
|
|
)
|