@@ -9,7 +9,11 @@ let package = Package(
9
9
. library( name: " NIOInstrumentation " , targets: [ " NIOInstrumentation " ] )
10
10
] ,
11
11
dependencies: [
12
- . package ( url: " https://github.com/slashmo/gsoc-swift-baggage-context " , . branch( " main " ) ) ,
12
+ . package (
13
+ name: " swift-baggage-context " ,
14
+ url: " https://github.com/slashmo/gsoc-swift-baggage-context.git " ,
15
+ from: " 0.1.0 "
16
+ ) ,
13
17
. package ( url: " https://github.com/apple/swift-nio.git " , from: " 2.17.0 " ) ,
14
18
. package ( url: " https://github.com/apple/swift-log.git " , from: " 1.2.0 " )
15
19
] ,
@@ -20,24 +24,24 @@ let package = Package(
20
24
. target(
21
25
name: " BaggageLogging " ,
22
26
dependencies: [
23
- . product( name: " Baggage " , package : " gsoc- swift-baggage-context" ) ,
27
+ . product( name: " Baggage " , package : " swift-baggage-context " ) ,
24
28
. product( name: " Logging " , package : " swift-log " ) ,
25
29
]
26
30
) ,
27
31
. testTarget(
28
- name: " BaggageLoggingTests " ,
32
+ name: " BaggageLoggingTests " ,
29
33
dependencies: [
30
34
" BaggageLogging " ,
31
35
]
32
36
) ,
33
-
37
+
34
38
// ==== --------------------------------------------------------------------------------------------------------
35
39
// MARK: Instrumentation
36
40
37
41
. target(
38
42
name: " Instrumentation " ,
39
43
dependencies: [
40
- . product( name: " Baggage " , package : " gsoc- swift-baggage-context" ) ,
44
+ . product( name: " Baggage " , package : " swift-baggage-context " ) ,
41
45
]
42
46
) ,
43
47
. testTarget(
@@ -68,7 +72,7 @@ let package = Package(
68
72
. target(
69
73
name: " Benchmarks " ,
70
74
dependencies: [
71
- . product( name: " Baggage " , package : " gsoc- swift-baggage-context" ) ,
75
+ . product( name: " Baggage " , package : " swift-baggage-context " ) ,
72
76
" SwiftBenchmarkTools " ,
73
77
]
74
78
) ,
0 commit comments