This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build NIOErrorKit with Swift 6.0 for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/einstore/nioerrorkit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/einstore/nioerrorkit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 9c82433 Update README.md
Cloned https://github.com/einstore/nioerrorkit.git
Revision (git rev-parse @):
9c82433ca1371a52a1eff48a55c006badb42b11c
SUCCESS checkout https://github.com/einstore/nioerrorkit.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/einstore/nioerrorkit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/12] Write sources
[5/12] Compiling CNIOLinux ifaddrs-android.c
[6/12] Compiling CNIOLinux shim.c
[7/12] Write swift-version-6F35C1178C84523A.txt
[8/20] Compiling CNIOSHA1 c_nio_sha1.c
[9/20] Compiling CNIODarwin shim.c
[10/20] Compiling CNIOHTTPParser c_nio_http_parser.c
[11/20] Compiling c-atomics.c
[13/23] Compiling NIOConcurrencyHelpers lock.swift
[14/23] Compiling NIOConcurrencyHelpers atomics.swift
[15/23] Emitting module NIOConcurrencyHelpers
[16/74] Compiling NIO PendingWritesManager.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingWritesManager.swift:134:27: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
132 |     /// - parameters:
133 |     ///     - bytes: How many bytes of the item were written.
134 |     private mutating func partiallyWrittenFirst(bytes: Int) {
    |                           `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
135 |         self.pendingWrites[self.pendingWrites.startIndex].data.moveReaderIndex(forwardBy: bytes)
136 |         self.subtractOutstanding(bytes: bytes)
[17/74] Compiling NIO PriorityQueue.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingWritesManager.swift:134:27: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
132 |     /// - parameters:
133 |     ///     - bytes: How many bytes of the item were written.
134 |     private mutating func partiallyWrittenFirst(bytes: Int) {
    |                           `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
135 |         self.pendingWrites[self.pendingWrites.startIndex].data.moveReaderIndex(forwardBy: bytes)
136 |         self.subtractOutstanding(bytes: bytes)
[18/74] Compiling NIO RecvByteBufferAllocator.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingWritesManager.swift:134:27: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
132 |     /// - parameters:
133 |     ///     - bytes: How many bytes of the item were written.
134 |     private mutating func partiallyWrittenFirst(bytes: Int) {
    |                           `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
135 |         self.pendingWrites[self.pendingWrites.startIndex].data.moveReaderIndex(forwardBy: bytes)
136 |         self.subtractOutstanding(bytes: bytes)
[19/74] Compiling NIO Resolver.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingWritesManager.swift:134:27: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
132 |     /// - parameters:
133 |     ///     - bytes: How many bytes of the item were written.
134 |     private mutating func partiallyWrittenFirst(bytes: Int) {
    |                           `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
135 |         self.pendingWrites[self.pendingWrites.startIndex].data.moveReaderIndex(forwardBy: bytes)
136 |         self.subtractOutstanding(bytes: bytes)
[20/74] Compiling NIO Selectable.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingWritesManager.swift:134:27: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
132 |     /// - parameters:
133 |     ///     - bytes: How many bytes of the item were written.
134 |     private mutating func partiallyWrittenFirst(bytes: Int) {
    |                           `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
135 |         self.pendingWrites[self.pendingWrites.startIndex].data.moveReaderIndex(forwardBy: bytes)
136 |         self.subtractOutstanding(bytes: bytes)
[21/79] Compiling NIO ChannelOption.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
[22/79] Compiling NIO ChannelPipeline.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
[23/79] Compiling NIO CircularBuffer.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
[24/79] Compiling NIO Codec.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
[25/79] Compiling NIO DatagramVectorReadManager.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
[26/79] Compiling NIO DeadChannel.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
[27/79] Compiling NIO NIOAny.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingDatagramWritesManager.swift:326:17: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
324 |             while let markedIndex = self.markedIndex, self.pendingWrites.pendingWrites.distance(from: self.index,
325 |                                                                                                 to: markedIndex) >= 0 {
326 |                 let element = self.pendingWrites.pendingWrites[index]
    |                 `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
327 |                 index = self.pendingWrites.pendingWrites.index(after: index)
328 |                 return element
[28/79] Compiling NIO NIOCloseOnErrorHandler.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingDatagramWritesManager.swift:326:17: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
324 |             while let markedIndex = self.markedIndex, self.pendingWrites.pendingWrites.distance(from: self.index,
325 |                                                                                                 to: markedIndex) >= 0 {
326 |                 let element = self.pendingWrites.pendingWrites[index]
    |                 `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
327 |                 index = self.pendingWrites.pendingWrites.index(after: index)
328 |                 return element
[29/79] Compiling NIO NIOThreadPool.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingDatagramWritesManager.swift:326:17: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
324 |             while let markedIndex = self.markedIndex, self.pendingWrites.pendingWrites.distance(from: self.index,
325 |                                                                                                 to: markedIndex) >= 0 {
326 |                 let element = self.pendingWrites.pendingWrites[index]
    |                 `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
327 |                 index = self.pendingWrites.pendingWrites.index(after: index)
328 |                 return element
[30/79] Compiling NIO NonBlockingFileIO.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingDatagramWritesManager.swift:326:17: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
324 |             while let markedIndex = self.markedIndex, self.pendingWrites.pendingWrites.distance(from: self.index,
325 |                                                                                                 to: markedIndex) >= 0 {
326 |                 let element = self.pendingWrites.pendingWrites[index]
    |                 `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
327 |                 index = self.pendingWrites.pendingWrites.index(after: index)
328 |                 return element
[31/79] Compiling NIO PendingDatagramWritesManager.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/PendingDatagramWritesManager.swift:326:17: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
324 |             while let markedIndex = self.markedIndex, self.pendingWrites.pendingWrites.distance(from: self.index,
325 |                                                                                                 to: markedIndex) >= 0 {
326 |                 let element = self.pendingWrites.pendingWrites[index]
    |                 `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
327 |                 index = self.pendingWrites.pendingWrites.index(after: index)
328 |                 return element
[32/79] Compiling NIO SocketOptionProvider.swift
[33/79] Compiling NIO System.swift
[34/79] Compiling NIO Thread.swift
[35/79] Compiling NIO TypeAssistedChannelHandler.swift
[36/79] Compiling NIO Utilities.swift
[37/79] Compiling NIO ByteBuffer-int.swift
[38/79] Compiling NIO ByteBuffer-views.swift
[39/79] Compiling NIO Channel.swift
[40/79] Compiling NIO ChannelHandler.swift
[41/79] Compiling NIO ChannelHandlers.swift
[42/79] Compiling NIO ChannelInvoker.swift
[43/79] Compiling NIO GetaddrinfoResolver.swift
[44/79] Compiling NIO HappyEyeballs.swift
[45/79] Compiling NIO Heap.swift
[46/79] Compiling NIO IO.swift
[47/79] Compiling NIO IOData.swift
[48/79] Compiling NIO IntegerTypes.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[49/79] Emitting module NIO
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift:106:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
104 |
105 | // MARK: Collection/MutableCollection implementation
106 | extension CircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
107 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
108 |     public typealias SubSequence = CircularBuffer<Element>
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
[50/79] Compiling NIO Embedded.swift
[51/79] Compiling NIO EventLoop.swift
[52/79] Compiling NIO EventLoopFuture.swift
[53/79] Compiling NIO FileDescriptor.swift
[54/79] Compiling NIO FileHandle.swift
[55/79] Compiling NIO FileRegion.swift
[56/79] Compiling NIO Selector.swift
[57/79] Compiling NIO ServerSocket.swift
[58/79] Compiling NIO Socket.swift
[59/79] Compiling NIO SocketAddresses.swift
[60/79] Compiling NIO SocketChannel.swift
[61/79] Compiling NIO AddressedEnvelope.swift
[62/79] Compiling NIO BaseSocket.swift
[63/79] Compiling NIO BaseSocketChannel.swift
[64/79] Compiling NIO Bootstrap.swift
[65/79] Compiling NIO ByteBuffer-aux.swift
[66/79] Compiling NIO ByteBuffer-core.swift
[67/79] Compiling NIO Interfaces.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:121:40: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
119 |     /// Returns the marked element.
120 |     @inlinable
121 |     public var markedElement: Element? {
    |                                        `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
122 |         return self.markedElementIndex.map { self._buffer[$0] }
123 |     }
[68/79] Compiling NIO Linux.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:121:40: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
119 |     /// Returns the marked element.
120 |     @inlinable
121 |     public var markedElement: Element? {
    |                                        `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
122 |         return self.markedElementIndex.map { self._buffer[$0] }
123 |     }
[69/79] Compiling NIO LinuxCPUSet.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:121:40: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
119 |     /// Returns the marked element.
120 |     @inlinable
121 |     public var markedElement: Element? {
    |                                        `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
122 |         return self.markedElementIndex.map { self._buffer[$0] }
123 |     }
[70/79] Compiling NIO MarkedCircularBuffer.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:121:40: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
119 |     /// Returns the marked element.
120 |     @inlinable
121 |     public var markedElement: Element? {
    |                                        `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
122 |         return self.markedElementIndex.map { self._buffer[$0] }
123 |     }
[71/79] Compiling NIO MulticastChannel.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: type 'MarkedCircularBuffer<Element>' does not conform to protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:132:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
130 | }
131 |
132 | extension MarkedCircularBuffer: Collection, MutableCollection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'MutableCollection'
133 |     public typealias RangeType<Bound> = Range<Bound> where Bound: Strideable, Bound.Stride: SignedInteger
134 |     public typealias Index = CircularBuffer<Element>.Index
Swift.MutableCollection:8:12: note: 'subscript(_:)' declared here
 6 |     @inlinable public subscript(bounds: Range<Self.Index>) -> Slice<Self> { get set }
 7 |     @available(*, unavailable)
 8 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |            `- note: 'subscript(_:)' declared here
 9 |     @inlinable public mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
10 | }
Swift.MutableCollection:6:14: note: requirement 'subscript(_:)' declared here
 4 |     associatedtype SubSequence
 5 |     override subscript(position: Self.Index) -> Self.Element { get set }
 6 |     override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get set }
   |              `- note: requirement 'subscript(_:)' declared here
 7 |     mutating func partition(by belongsInSecondPartition: (Self.Element) throws -> Bool) rethrows -> Self.Index
 8 |     mutating func swapAt(_ i: Self.Index, _ j: Self.Index)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift:121:40: error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
119 |     /// Returns the marked element.
120 |     @inlinable
121 |     public var markedElement: Element? {
    |                                        `- error: type 'CircularBuffer<Element>' does not conform to protocol 'MutableCollection'
122 |         return self.markedElementIndex.map { self._buffer[$0] }
123 |     }
Fetching https://github.com/Einstore/WebErrorKit.git
Fetching https://github.com/apple/swift-nio.git
[1/28] Fetching weberrorkit
[29/65556] Fetching weberrorkit, swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (3.79s)
Fetched https://github.com/Einstore/WebErrorKit.git from cache (3.79s)
Computing version for https://github.com/Einstore/WebErrorKit.git
Computed https://github.com/Einstore/WebErrorKit.git at 0.0.1 (0.70s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.4.0 (0.71s)
Creating working copy for https://github.com/Einstore/WebErrorKit.git
Working copy of https://github.com/Einstore/WebErrorKit.git resolved at 0.0.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.4.0
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.