Skip to content

Commit 4379443

Browse files
committed
5.0 WIPWIPWIPWIWPIWPPWI
1 parent cb3ea34 commit 4379443

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

Package.swift

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.0
22
import PackageDescription
33

44
let package = Package(
@@ -10,11 +10,13 @@ let package = Package(
1010
.library(name: "OpenTelemetryInstrumentationSupport", targets: ["OpenTelemetryInstrumentationSupport"])
1111
],
1212
dependencies: [
13-
.package(
14-
name: "swift-baggage-context",
15-
url: "https://github.com/slashmo/gsoc-swift-baggage-context.git",
16-
from: "0.2.0"
17-
),
13+
// .package(
14+
// name: "swift-baggage-context",
15+
// url: "https://github.com/slashmo/gsoc-swift-baggage-context.git",
16+
// from: "0.2.0"
17+
// ),
18+
// .package(url: "https://github.com/slashmo/gsoc-swift-baggage-context.git", from: "0.2.0"),
19+
.package(url: "file:///users/ktoso/code/gsoc-swift-baggage-context", .branch("main")),
1820
.package(url: "https://github.com/apple/swift-nio.git", from: "2.17.0")
1921
],
2022
targets: [
@@ -24,7 +26,7 @@ let package = Package(
2426
.target(
2527
name: "Instrumentation",
2628
dependencies: [
27-
.product(name: "Baggage", package: "swift-baggage-context"),
29+
"Baggage",
2830
]
2931
),
3032
.testTarget(
@@ -45,15 +47,15 @@ let package = Package(
4547
dependencies: [
4648
"Instrumentation",
4749
"TracingInstrumentation",
48-
.product(name: "BaggageLogging", package: "swift-baggage-context"),
50+
"BaggageLogging",
4951
]
5052
),
5153

5254
.target(
5355
name: "NIOInstrumentation",
5456
dependencies: [
55-
.product(name: "NIO", package: "swift-nio"),
56-
.product(name: "NIOHTTP1", package: "swift-nio"),
57+
"NIO",
58+
"NIOHTTP1",
5759
"Instrumentation",
5860
]
5961
),
@@ -83,7 +85,7 @@ let package = Package(
8385
.target(
8486
name: "Benchmarks",
8587
dependencies: [
86-
.product(name: "Baggage", package: "swift-baggage-context"),
88+
"Baggage",
8789
"SwiftBenchmarkTools",
8890
]
8991
),

0 commit comments

Comments
 (0)