File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -6,27 +6,26 @@ let package = Package(
6
6
name: " swift-jobs-postgres " ,
7
7
platforms: [ . macOS( . v14) , . iOS( . v17) , . tvOS( . v17) ] ,
8
8
products: [
9
- . library( name: " JobsPostgres2 " , targets: [ " JobsPostgres2 " ] ) ,
9
+ . library( name: " JobsPostgres " , targets: [ " JobsPostgres " ] ) ,
10
10
] ,
11
11
dependencies: [
12
12
. 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 " ) ,
14
14
. package ( url: " https://github.com/vapor/postgres-nio.git " , from: " 1.21.0 " ) ,
15
15
] ,
16
16
targets: [
17
17
. target(
18
- name: " JobsPostgres2 " ,
18
+ name: " JobsPostgres " ,
19
19
dependencies: [
20
20
. product( name: " PostgresMigrations " , package : " hummingbird-postgres " ) ,
21
21
. product( name: " Jobs " , package : " swift-jobs " ) ,
22
22
. product( name: " PostgresNIO " , package : " postgres-nio " ) ,
23
- ] ,
24
- path: " Sources/JobsPostgres "
23
+ ]
25
24
) ,
26
25
. testTarget(
27
26
name: " JobsPostgresTests " ,
28
27
dependencies: [
29
- " JobsPostgres2 "
28
+ " JobsPostgres " ,
30
29
]
31
30
) ,
32
31
]
You can’t perform that action at this time.
0 commit comments