@@ -22,27 +22,36 @@ let package = Package(
2222 . package ( url: " https://github.com/apple/swift-log.git " , from: " 1.5.2 " ) ,
2323 ] ,
2424 targets: [
25- . target( name: " PostgresNIO " , dependencies: [
26- . product( name: " Atomics " , package : " swift-atomics " ) ,
27- . product( name: " Crypto " , package : " swift-crypto " ) ,
28- . product( name: " Logging " , package : " swift-log " ) ,
29- . product( name: " Metrics " , package : " swift-metrics " ) ,
30- . product( name: " NIO " , package : " swift-nio " ) ,
31- . product( name: " NIOCore " , package : " swift-nio " ) ,
32- . product( name: " NIOPosix " , package : " swift-nio " ) ,
33- . product( name: " NIOTransportServices " , package : " swift-nio-transport-services " ) ,
34- . product( name: " NIOTLS " , package : " swift-nio " ) ,
35- . product( name: " NIOSSL " , package : " swift-nio-ssl " ) ,
36- . product( name: " NIOFoundationCompat " , package : " swift-nio " ) ,
37- ] ) ,
38- . testTarget( name: " PostgresNIOTests " , dependencies: [
39- . target( name: " PostgresNIO " ) ,
40- . product( name: " NIOEmbedded " , package : " swift-nio " ) ,
41- . product( name: " NIOTestUtils " , package : " swift-nio " ) ,
42- ] ) ,
43- . testTarget( name: " IntegrationTests " , dependencies: [
44- . target( name: " PostgresNIO " ) ,
45- . product( name: " NIOTestUtils " , package : " swift-nio " ) ,
46- ] ) ,
25+ . target(
26+ name: " PostgresNIO " ,
27+ dependencies: [
28+ . product( name: " Atomics " , package : " swift-atomics " ) ,
29+ . product( name: " Crypto " , package : " swift-crypto " ) ,
30+ . product( name: " Logging " , package : " swift-log " ) ,
31+ . product( name: " Metrics " , package : " swift-metrics " ) ,
32+ . product( name: " NIO " , package : " swift-nio " ) ,
33+ . product( name: " NIOCore " , package : " swift-nio " ) ,
34+ . product( name: " NIOPosix " , package : " swift-nio " ) ,
35+ . product( name: " NIOTransportServices " , package : " swift-nio-transport-services " ) ,
36+ . product( name: " NIOTLS " , package : " swift-nio " ) ,
37+ . product( name: " NIOSSL " , package : " swift-nio-ssl " ) ,
38+ . product( name: " NIOFoundationCompat " , package : " swift-nio " ) ,
39+ ]
40+ ) ,
41+ . testTarget(
42+ name: " PostgresNIOTests " ,
43+ dependencies: [
44+ . target( name: " PostgresNIO " ) ,
45+ . product( name: " NIOEmbedded " , package : " swift-nio " ) ,
46+ . product( name: " NIOTestUtils " , package : " swift-nio " ) ,
47+ ]
48+ ) ,
49+ . testTarget(
50+ name: " IntegrationTests " ,
51+ dependencies: [
52+ . target( name: " PostgresNIO " ) ,
53+ . product( name: " NIOTestUtils " , package : " swift-nio " ) ,
54+ ]
55+ ) ,
4756 ]
4857)
0 commit comments