mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-26 07:39:58 +00:00
* Add tests for different postgres clients * test/fixtures: sanitize test name for test_output_dir * test/fixtures: do not look for etcd before runtime * Add workflow for testing Postgres client libraries
18 lines
414 B
Swift
18 lines
414 B
Swift
// swift-tools-version:5.6
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PostgresClientKitExample",
|
|
dependencies: [
|
|
.package(
|
|
url: "https://github.com/codewinsdotcom/PostgresClientKit.git",
|
|
revision: "v1.4.3"
|
|
)
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "PostgresClientKitExample",
|
|
dependencies: [ "PostgresClientKit" ])
|
|
]
|
|
)
|