Skip to content

Commit e4958d5

Browse files
committed
Dependency updates
1 parent 5ae338c commit e4958d5

File tree

3 files changed

+29
-27
lines changed

3 files changed

+29
-27
lines changed

Package.resolved

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.6
1+
// swift-tools-version:5.7
22

33
import PackageDescription
44

@@ -12,13 +12,15 @@ let package = Package(
1212
],
1313
dependencies: [
1414
.package(url: "https://github.com/apple/swift-collections", from: "1.0.2"),
15-
.package(url: "https://github.com/vapor/postgres-kit", from: "2.8.0"),
15+
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.14.0"),
16+
.package(url: "https://github.com/vapor/postgres-kit", from: "2.10.0"),
1617
],
1718
targets: [
1819
.target(
1920
name: "PostgresConnectionPool",
2021
dependencies: [
2122
.product(name: "Collections", package: "swift-collections"),
23+
.product(name: "PostgresNIO", package: "postgres-nio"),
2224
.product(name: "PostgresKit", package: "postgres-kit"),
2325
]),
2426
])

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A simple connection pool on top of PostgresNIO.
99

1010
```swift
1111
dependencies: [
12-
.package(url: "https://github.com/Outdooractive/PostgresConnectionPool.git", from: "0.1.0"),
12+
.package(url: "https://github.com/Outdooractive/PostgresConnectionPool.git", from: "0.3.1"),
1313
],
1414
targets: [
1515
.target(name: "MyTarget", dependencies: [

0 commit comments

Comments
 (0)