Skip to content

Commit e3a4dd0

Browse files
committed
Fix merge conflict
1 parent ebbee6b commit e3a4dd0

File tree

1 file changed

+1
-85
lines changed

1 file changed

+1
-85
lines changed

Package.swift

Lines changed: 1 addition & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ extension Package {
169169
)
170170
products.append(contentsOf: [
171171
.library(name: "JaegerExporter", targets: ["JaegerExporter"]),
172-
>>>>>>> main
173172
.executable(name: "simpleExporter", targets: ["SimpleExporter"]),
174173
.library(name: "NetworkStatus", targets: ["NetworkStatus"]),
175174
.library(name: "URLSessionInstrumentation", targets: ["URLSessionInstrumentation"]),
@@ -208,89 +207,6 @@ extension Package {
208207
dependencies: ["OpenTelemetrySdk", "NetworkStatus"],
209208
path: "Sources/Instrumentation/URLSession",
210209
exclude: ["README.md"]),
211-
<<<<<<< HEAD
212-
.target(name: "NetworkStatus",
213-
dependencies: [
214-
"OpenTelemetryApi",
215-
.product(name: "Reachability", package: "Reachability.swift")
216-
],
217-
path: "Sources/Instrumentation/NetworkStatus",
218-
linkerSettings: [.linkedFramework("CoreTelephony", .when(platforms: [.iOS]))]),
219-
.target(name: "SignPostIntegration",
220-
dependencies: ["OpenTelemetrySdk"],
221-
path: "Sources/Instrumentation/SignPostIntegration",
222-
exclude: ["README.md"]),
223-
.target(name: "OpenTracingShim",
224-
dependencies: ["OpenTelemetrySdk",
225-
"Opentracing"],
226-
path: "Sources/Importers/OpenTracingShim",
227-
exclude: ["README.md"]),
228-
.target(name: "SwiftMetricsShim",
229-
dependencies: ["OpenTelemetrySdk",
230-
.product(name: "CoreMetrics", package: "swift-metrics")],
231-
path: "Sources/Importers/SwiftMetricsShim",
232-
exclude: ["README.md"]),
233-
.target(name: "JaegerExporter",
234-
dependencies: ["OpenTelemetrySdk",
235-
.product(name: "Thrift", package: "Thrift")],
236-
path: "Sources/Exporters/Jaeger"),
237-
.target(name: "ZipkinExporter",
238-
dependencies: ["OpenTelemetrySdk"],
239-
path: "Sources/Exporters/Zipkin"),
240-
.target(name: "PrometheusExporter",
241-
dependencies: ["OpenTelemetrySdk",
242-
.product(name: "NIO", package: "swift-nio"),
243-
.product(name: "NIOHTTP1", package: "swift-nio")],
244-
path: "Sources/Exporters/Prometheus"),
245-
.target(name: "OpenTelemetryProtocolExporterCommon",
246-
dependencies: ["OpenTelemetrySdk",
247-
.product(name: "Logging", package: "swift-log"),
248-
.product(name: "SwiftProtobuf", package: "swift-protobuf")],
249-
path: "Sources/Exporters/OpenTelemetryProtocolCommon"),
250-
.target(name: "OpenTelemetryProtocolExporterHttp",
251-
dependencies: ["OpenTelemetrySdk",
252-
"OpenTelemetryProtocolExporterCommon",
253-
"OTelDataCompression"],
254-
path: "Sources/Exporters/OpenTelemetryProtocolHttp"),
255-
.target(name: "OpenTelemetryProtocolExporterGrpc",
256-
dependencies: ["OpenTelemetrySdk",
257-
"OpenTelemetryProtocolExporterCommon",
258-
.product(name: "GRPC", package: "grpc-swift")],
259-
path: "Sources/Exporters/OpenTelemetryProtocolGrpc"),
260-
.target(name: "OTelDataCompression",
261-
dependencies: [],
262-
path: "Sources/Exporters/DataCompression"),
263-
.target(name: "StdoutExporter",
264-
dependencies: ["OpenTelemetrySdk"],
265-
path: "Sources/Exporters/Stdout"),
266-
.target(name: "InMemoryExporter",
267-
dependencies: ["OpenTelemetrySdk"],
268-
path: "Sources/Exporters/InMemory"),
269-
.target(name: "DatadogExporter",
270-
dependencies: ["OpenTelemetrySdk",
271-
"OTelDataCompression"],
272-
path: "Sources/Exporters/DatadogExporter",
273-
exclude: ["NOTICE", "README.md"]),
274-
.target(name: "PersistenceExporter",
275-
dependencies: ["OpenTelemetrySdk"],
276-
path: "Sources/Exporters/Persistence"),
277-
.testTarget(name: "OTelSwiftLogTests",
278-
dependencies: ["OTelSwiftLog"],
279-
path: "Tests/BridgesTests/OTelSwiftLog"),
280-
.testTarget(name: "NetworkStatusTests",
281-
dependencies: ["NetworkStatus", .product(name: "Reachability", package: "Reachability.swift")],
282-
path: "Tests/InstrumentationTests/NetworkStatusTests"),
283-
.testTarget(name: "OpenTelemetryApiTests",
284-
dependencies: ["OpenTelemetryApi", "OpenTelemetryTestUtils"],
285-
path: "Tests/OpenTelemetryApiTests"),
286-
.testTarget(name: "OpenTelemetrySdkTests",
287-
dependencies: ["OpenTelemetrySdk"],
288-
path: "Tests/OpenTelemetrySdkTests"),
289-
.testTarget(name: "ResourceExtensionTests",
290-
dependencies: ["ResourceExtension", "OpenTelemetrySdk"],
291-
path: "Tests/InstrumentationTests/SDKResourceExtensionTests"),
292-
=======
293-
>>>>>>> main
294210
.testTarget(name: "URLSessionInstrumentationTests",
295211
dependencies: ["URLSessionInstrumentation",
296212
.product(name: "NIO", package: "swift-nio"),
@@ -346,4 +262,4 @@ if ProcessInfo.processInfo.environment["OTEL_ENABLE_SWIFTLINT"] != nil {
346262
.plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")
347263
]
348264
}
349-
}
265+
}

0 commit comments

Comments
 (0)