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