Skip to content

Commit 352feee

Browse files
committed
Use hummingbird-postgres delete-jobs-postgres branch
1 parent 3f86d96 commit 352feee

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Package.swift

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,26 @@ let package = Package(
66
name: "swift-jobs-postgres",
77
platforms: [.macOS(.v14), .iOS(.v17), .tvOS(.v17)],
88
products: [
9-
.library(name: "JobsPostgres2", targets: ["JobsPostgres2"]),
9+
.library(name: "JobsPostgres", targets: ["JobsPostgres"]),
1010
],
1111
dependencies: [
1212
.package(url: "https://github.com/hummingbird-project/swift-jobs.git", branch: "main"),
13-
.package(url: "https://github.com/hummingbird-project/hummingbird-postgres.git", branch: "split-libraru"),
13+
.package(url: "https://github.com/hummingbird-project/hummingbird-postgres.git", branch: "delete-jobs-postgres"),
1414
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.21.0"),
1515
],
1616
targets: [
1717
.target(
18-
name: "JobsPostgres2",
18+
name: "JobsPostgres",
1919
dependencies: [
2020
.product(name: "PostgresMigrations", package: "hummingbird-postgres"),
2121
.product(name: "Jobs", package: "swift-jobs"),
2222
.product(name: "PostgresNIO", package: "postgres-nio"),
23-
],
24-
path: "Sources/JobsPostgres"
23+
]
2524
),
2625
.testTarget(
2726
name: "JobsPostgresTests",
2827
dependencies: [
29-
"JobsPostgres2"
28+
"JobsPostgres",
3029
]
3130
),
3231
]

0 commit comments

Comments
 (0)