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 ShellKit with Swift 6.0 (beta) 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/shellkit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/einstore/shellkit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at da8dcb4 formatting
Cloned https://github.com/einstore/shellkit.git
Revision (git rev-parse @):
da8dcb4252a5cb479094559d111d3a221689ae2b
SUCCESS checkout https://github.com/einstore/shellkit.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/einstore/shellkit.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/17] Write sources
[11/17] Compiling CNIOLinux ifaddrs-android.c
[11/17] Compiling CNIOLinux shim.c
[13/17] Write swift-version-6F35C1178C84523A.txt
[14/29] Compiling CNIOSHA1 c_nio_sha1.c
[15/29] Compiling CNIODarwin shim.c
[16/29] Compiling c-atomics.c
[18/32] Emitting module NIOConcurrencyHelpers
[19/32] Compiling NIOConcurrencyHelpers lock.swift
[20/32] Compiling NIOConcurrencyHelpers atomics.swift
[21/83] 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 |     }
[22/83] 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 |     }
[23/83] 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 |     }
[24/83] 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 |     }
[25/83] 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 |     }
[26/88] 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)
[27/88] 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)
[28/88] 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)
[29/88] 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)
[30/88] 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)
[31/88] 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
[32/88] 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
[33/88] 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
[34/88] 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
[35/88] 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
[36/88] 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)
[37/88] 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)
[38/88] 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)
[39/88] 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)
[40/88] 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)
[41/88] 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)
[42/88] Compiling NIO SocketOptionProvider.swift
[43/88] Compiling NIO System.swift
[44/88] Compiling NIO Thread.swift
[45/88] Compiling NIO TypeAssistedChannelHandler.swift
[46/88] Compiling NIO Utilities.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[47/88] 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)
[48/88] Compiling NIO Embedded.swift
[49/88] Compiling NIO EventLoop.swift
[50/88] Compiling NIO EventLoopFuture.swift
[51/88] Compiling NIO FileDescriptor.swift
[52/88] Compiling NIO FileHandle.swift
[53/88] Compiling NIO FileRegion.swift
[54/88] Compiling NIO ByteBuffer-int.swift
[55/88] Compiling NIO ByteBuffer-views.swift
[56/88] Compiling NIO Channel.swift
[57/88] Compiling NIO ChannelHandler.swift
[58/88] Compiling NIO ChannelHandlers.swift
[59/88] Compiling NIO ChannelInvoker.swift
[60/88] Compiling NIO GetaddrinfoResolver.swift
[61/88] Compiling NIO HappyEyeballs.swift
[62/88] Compiling NIO Heap.swift
[63/88] Compiling NIO IO.swift
[64/88] Compiling NIO IOData.swift
[65/88] Compiling NIO IntegerTypes.swift
[66/88] Compiling NIO Selector.swift
[67/88] Compiling NIO ServerSocket.swift
[68/88] Compiling NIO Socket.swift
[69/88] Compiling NIO SocketAddresses.swift
[70/88] Compiling NIO SocketChannel.swift
[71/88] Compiling NIO AddressedEnvelope.swift
[72/88] Compiling NIO BaseSocket.swift
[73/88] Compiling NIO BaseSocketChannel.swift
[74/88] Compiling NIO Bootstrap.swift
[75/88] Compiling NIO ByteBuffer-aux.swift
[76/88] Compiling NIO ByteBuffer-core.swift
Fetching https://github.com/jakeheis/CSSH
Fetching https://github.com/Einstore/Shout.git
Fetching https://github.com/IBM-Swift/BlueSocket
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/Einstore/WebErrorKit.git
[1/28] Fetching weberrorkit
[29/54] Fetching weberrorkit, cssh
Fetched https://github.com/jakeheis/CSSH from cache (0.65s)
[1/412] Fetching shout
[170/3354] Fetching shout, bluesocket
Fetched https://github.com/Einstore/WebErrorKit.git from cache (1.18s)
[1/65528] Fetching swift-nio
Fetched https://github.com/Einstore/Shout.git from cache (3.95s)
Fetched https://github.com/IBM-Swift/BlueSocket from cache (3.95s)
Fetched https://github.com/apple/swift-nio.git from cache (3.95s)
Computing version for https://github.com/Einstore/Shout.git
Computed https://github.com/Einstore/Shout.git at 0.5.1 (2.73s)
Computing version for https://github.com/Einstore/WebErrorKit.git
Computed https://github.com/Einstore/WebErrorKit.git at 0.0.1 (0.67s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.7.0 (0.72s)
Computing version for https://github.com/jakeheis/CSSH
Computed https://github.com/jakeheis/CSSH at 1.0.3 (0.68s)
Computing version for https://github.com/IBM-Swift/BlueSocket
Computed https://github.com/IBM-Swift/BlueSocket at 1.0.48 (0.70s)
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/jakeheis/CSSH
Working copy of https://github.com/jakeheis/CSSH resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.7.0
Creating working copy for https://github.com/IBM-Swift/BlueSocket
Working copy of https://github.com/IBM-Swift/BlueSocket resolved at 1.0.48
Creating working copy for https://github.com/Einstore/Shout.git
Working copy of https://github.com/Einstore/Shout.git resolved at 0.5.1
warning: 'cssh': ignoring declared target(s) 'CSSH' in the system package
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: you may be able to install libssh2 using your system-packager:
    brew install libssh2
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.