@@ -11,7 +11,7 @@ let package = Package(
11
11
dependencies: [
12
12
. package ( name: " gsoc-swift-tracing " , path: " ../ " ) ,
13
13
. package ( url: " https://github.com/swift-server/async-http-client.git " , from: " 1.1.1 " ) ,
14
- . package ( url: " https://github.com/apple/swift-nio.git " , from: " 2.18 .0 " )
14
+ . package ( url: " https://github.com/apple/swift-nio.git " , from: " 2.9 .0 " ) ,
15
15
] ,
16
16
targets: [
17
17
. target( name: " ManualContextPropagation " , dependencies: [
@@ -20,14 +20,15 @@ let package = Package(
20
20
. target( name: " ManualAsyncHTTPClient " , dependencies: [
21
21
. product( name: " Instrumentation " , package : " gsoc-swift-tracing " ) ,
22
22
. product( name: " NIOInstrumentation " , package : " gsoc-swift-tracing " ) ,
23
- . product( name: " AsyncHTTPClient " , package : " async-http-client " )
23
+ . product( name: " AsyncHTTPClient " , package : " async-http-client " ) ,
24
+ . product( name: " NIO " , package : " swift-nio " ) ,
24
25
] ) ,
25
26
. target( name: " HTTPEndToEnd " , dependencies: [
26
27
. product( name: " BaggageLogging " , package : " gsoc-swift-tracing " ) ,
27
28
. product( name: " Instrumentation " , package : " gsoc-swift-tracing " ) ,
28
29
. product( name: " NIOInstrumentation " , package : " gsoc-swift-tracing " ) ,
29
30
. product( name: " AsyncHTTPClient " , package : " async-http-client " ) ,
30
- . product( name: " NIO " , package : " swift-nio " )
31
+ . product( name: " NIO " , package : " swift-nio " ) ,
31
32
] )
32
33
]
33
34
)
0 commit comments