Skip to content

Commit 152a6fe

Browse files
Remove unused NIOExtras dependency (#95)
Reduce the number of dependencies to simplify the build process in `apple/swift` CI jobs.
1 parent b30614e commit 152a6fe

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

Package.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ let package = Package(
2323
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.5"),
2424
.package(url: "https://github.com/apple/swift-crypto.git", from: "3.1.0"),
2525
.package(url: "https://github.com/apple/swift-nio.git", from: "2.63.0"),
26-
.package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.20.0"),
2726
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.3"),
2827
.package(url: "https://github.com/swift-server/swift-service-lifecycle.git", from: "2.3.0"),
2928
],
@@ -105,7 +104,6 @@ let package = Package(
105104
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
106105
.product(name: "Logging", package: "swift-log"),
107106
.product(name: "NIO", package: "swift-nio"),
108-
.product(name: "NIOExtras", package: "swift-nio-extras"),
109107
.product(name: "DequeModule", package: "swift-collections"),
110108
.product(name: "SystemPackage", package: "swift-system"),
111109
]

Sources/AsyncProcess/NIOAsyncPipeWriter.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
import Foundation
1414
import NIO
15-
import NIOExtras
1615

1716
struct NIOAsyncPipeWriter<Chunks: AsyncSequence & Sendable> where Chunks.Element == ByteBuffer {
1817
static func sinkSequenceInto(

0 commit comments

Comments
 (0)