Skip to content

Commit e437e92

Browse files
author
Ignacio Bonafonte
authored
Merge pull request #236 from nachoBonafonte/remove-external-dependencies
2 parents 9e8b97d + 0a6bd4a commit e437e92

File tree

6 files changed

+924
-25
lines changed

6 files changed

+924
-25
lines changed

Package.resolved

Lines changed: 0 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ let package = Package(
5151
.package(name: "grpc-swift", url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0"),
5252
.package(name: "swift-atomics", url: "https://github.com/apple/swift-atomics.git", from: "0.0.1"),
5353
.package(name: "swift-metrics", url: "https://github.com/apple/swift-metrics.git", from: "2.1.1"),
54-
.package(name: "Reachability", url: "https://github.com/ashleymills/Reachability.swift", from: "5.1.0"),
55-
.package(name: "DataCompression", url: "https://github.com/mw99/DataCompression.git", from: "3.5.0")
5654
],
5755
targets: [
5856
.target(name: "OpenTelemetryApi",
@@ -69,7 +67,7 @@ let package = Package(
6967
path: "Sources/Instrumentation/URLSession",
7068
exclude: ["README.md"]),
7169
.target(name: "NetworkStatus",
72-
dependencies: ["Reachability", "OpenTelemetryApi"],
70+
dependencies: ["OpenTelemetryApi"],
7371
path: "Sources/Instrumentation/NetworkStatus",
7472
linkerSettings: [.linkedFramework("CoreTelephony", .when(platforms: [.iOS], configuration: nil))]),
7573
.target(name: "SignPostIntegration",
@@ -110,7 +108,7 @@ let package = Package(
110108
dependencies: ["OpenTelemetrySdk"],
111109
path: "Sources/Exporters/InMemory"),
112110
.target(name: "DatadogExporter",
113-
dependencies: ["OpenTelemetrySdk", "DataCompression"],
111+
dependencies: ["OpenTelemetrySdk"],
114112
path: "Sources/Exporters/DatadogExporter",
115113
exclude: ["NOTICE", "README.md"]),
116114
.testTarget(name: "NetworkStatusTests",

Sources/Exporters/DatadogExporter/Upload/RequestBuilder.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*/
55

66
import Foundation
7-
import DataCompression
87

98
/// Builds `URLRequest` for sending data to Datadog.
109
internal struct RequestBuilder {

0 commit comments

Comments
 (0)