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 Slack 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/twof/slackforvapor.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/twof/slackforvapor
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 2d8204e Adding bot client
Cloned https://github.com/twof/slackforvapor.git
Revision (git rev-parse @):
2d8204ef1519d6762a6b0c333e30b56e0ff93279
SUCCESS checkout https://github.com/twof/slackforvapor.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/twof/slackforvapor.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/37] Write sources
[29/37] Compiling CNIOLinux shim.c
[29/37] Compiling CNIOZlib empty.c
[29/37] Compiling CNIOOpenSSL empty.c
[32/37] Write swift-version-6F35C1178C84523A.txt
[33/46] Compiling CNIODarwin shim.c
[34/46] Compiling CNIOHTTPParser c_nio_http_parser.c
[35/46] Compiling CNIOSHA1 c_nio_sha1.c
[36/46] Compiling c-atomics.c
[38/49] Compiling NIOPriorityQueue PriorityQueue.swift
[39/49] Compiling COperatingSystem libc.swift
[40/49] Emitting module COperatingSystem
[41/49] Compiling NIOConcurrencyHelpers lock.swift
[42/49] Emitting module NIOConcurrencyHelpers
[43/49] Compiling NIOConcurrencyHelpers atomics.swift
[44/49] Emitting module NIOPriorityQueue
[45/49] Compiling NIOPriorityQueue Heap.swift
[46/94] Compiling NIO ByteBuffer-aux.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: type 'StaticString' does not conform to protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: type 'StaticString' does not conform to protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
Swift.Collection:3:12: note: 'subscript(_:)' declared here
1 | extension Collection {
2 |     @available(*, unavailable)
3 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
  |            `- note: 'subscript(_:)' declared here
4 | }
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
12 |     associatedtype SubSequence : Collection = Slice<Self> where Self.Element == Self.SubSequence.Element, Self.SubSequence == Self.SubSequence.SubSequence
13 |     subscript(position: Self.Index) -> Self.Element { get }
14 |     subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
   |     `- note: requirement 'subscript(_:)' declared here
15 |     associatedtype Indices : Collection = DefaultIndices<Self> where Self.Indices == Self.Indices.SubSequence
16 |     var indices: Self.Indices { get }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:42:35: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 40 |     /// many places.
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
    |                                   |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                   |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                   `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
 44 |                   hookedFree: { sysFree($0) },
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:43:36: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
    |                                    |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                    |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                    `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 44 |                   hookedFree: { sysFree($0) },
 45 |                   hookedMemcpy: { $0.copyMemory(from: $1, byteCount: $2) })
[47/94] Compiling NIO ByteBuffer-core.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: type 'StaticString' does not conform to protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: type 'StaticString' does not conform to protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
Swift.Collection:3:12: note: 'subscript(_:)' declared here
1 | extension Collection {
2 |     @available(*, unavailable)
3 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
  |            `- note: 'subscript(_:)' declared here
4 | }
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
12 |     associatedtype SubSequence : Collection = Slice<Self> where Self.Element == Self.SubSequence.Element, Self.SubSequence == Self.SubSequence.SubSequence
13 |     subscript(position: Self.Index) -> Self.Element { get }
14 |     subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
   |     `- note: requirement 'subscript(_:)' declared here
15 |     associatedtype Indices : Collection = DefaultIndices<Self> where Self.Indices == Self.Indices.SubSequence
16 |     var indices: Self.Indices { get }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:42:35: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 40 |     /// many places.
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
    |                                   |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                   |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                   `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
 44 |                   hookedFree: { sysFree($0) },
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:43:36: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
    |                                    |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                    |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                    `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 44 |                   hookedFree: { sysFree($0) },
 45 |                   hookedMemcpy: { $0.copyMemory(from: $1, byteCount: $2) })
[48/94] Compiling NIO ByteBuffer-int.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: type 'StaticString' does not conform to protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: type 'StaticString' does not conform to protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
Swift.Collection:3:12: note: 'subscript(_:)' declared here
1 | extension Collection {
2 |     @available(*, unavailable)
3 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
  |            `- note: 'subscript(_:)' declared here
4 | }
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
12 |     associatedtype SubSequence : Collection = Slice<Self> where Self.Element == Self.SubSequence.Element, Self.SubSequence == Self.SubSequence.SubSequence
13 |     subscript(position: Self.Index) -> Self.Element { get }
14 |     subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
   |     `- note: requirement 'subscript(_:)' declared here
15 |     associatedtype Indices : Collection = DefaultIndices<Self> where Self.Indices == Self.Indices.SubSequence
16 |     var indices: Self.Indices { get }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:42:35: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 40 |     /// many places.
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
    |                                   |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                   |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                   `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
 44 |                   hookedFree: { sysFree($0) },
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:43:36: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
    |                                    |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                    |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                    `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 44 |                   hookedFree: { sysFree($0) },
 45 |                   hookedMemcpy: { $0.copyMemory(from: $1, byteCount: $2) })
[49/94] Compiling NIO Channel.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: type 'StaticString' does not conform to protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: type 'StaticString' does not conform to protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
Swift.Collection:3:12: note: 'subscript(_:)' declared here
1 | extension Collection {
2 |     @available(*, unavailable)
3 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
  |            `- note: 'subscript(_:)' declared here
4 | }
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
12 |     associatedtype SubSequence : Collection = Slice<Self> where Self.Element == Self.SubSequence.Element, Self.SubSequence == Self.SubSequence.SubSequence
13 |     subscript(position: Self.Index) -> Self.Element { get }
14 |     subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
   |     `- note: requirement 'subscript(_:)' declared here
15 |     associatedtype Indices : Collection = DefaultIndices<Self> where Self.Indices == Self.Indices.SubSequence
16 |     var indices: Self.Indices { get }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:42:35: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 40 |     /// many places.
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
    |                                   |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                   |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                   `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
 44 |                   hookedFree: { sysFree($0) },
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:43:36: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
    |                                    |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                    |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                    `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 44 |                   hookedFree: { sysFree($0) },
 45 |                   hookedMemcpy: { $0.copyMemory(from: $1, byteCount: $2) })
[50/94] Compiling NIO ChannelHandler.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: type 'StaticString' does not conform to protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: type 'StaticString' does not conform to protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
Swift.Collection:3:12: note: 'subscript(_:)' declared here
1 | extension Collection {
2 |     @available(*, unavailable)
3 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
  |            `- note: 'subscript(_:)' declared here
4 | }
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
12 |     associatedtype SubSequence : Collection = Slice<Self> where Self.Element == Self.SubSequence.Element, Self.SubSequence == Self.SubSequence.SubSequence
13 |     subscript(position: Self.Index) -> Self.Element { get }
14 |     subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
   |     `- note: requirement 'subscript(_:)' declared here
15 |     associatedtype Indices : Collection = DefaultIndices<Self> where Self.Indices == Self.Indices.SubSequence
16 |     var indices: Self.Indices { get }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:42:35: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 40 |     /// many places.
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
    |                                   |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                   |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                   `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
 44 |                   hookedFree: { sysFree($0) },
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:43:36: error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
 41 |     public init() {
 42 |         self.init(hookedMalloc: { sysMalloc($0) },
 43 |                   hookedRealloc: { sysRealloc($0, $1) },
    |                                    |- error: value of optional type 'UnsafeMutableRawPointer?' must be unwrapped to a value of type 'UnsafeMutableRawPointer'
    |                                    |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                    `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 44 |                   hookedFree: { sysFree($0) },
 45 |                   hookedMemcpy: { $0.copyMemory(from: $1, byteCount: $2) })
error: emit-module command failed with exit code 1 (use -v to see invocation)
[51/98] Emitting module NIO
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: type 'StaticString' does not conform to protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: type 'StaticString' does not conform to protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift:575:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
573 | }
574 |
575 | extension StaticString: Collection {
    | `- error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
576 |     public typealias Element = UInt8
577 |     public typealias SubSequence = ArraySlice<UInt8>
Swift.Collection:3:12: note: 'subscript(_:)' declared here
1 | extension Collection {
2 |     @available(*, unavailable)
3 |     public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
  |            `- note: 'subscript(_:)' declared here
4 | }
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
12 |     associatedtype SubSequence : Collection = Slice<Self> where Self.Element == Self.SubSequence.Element, Self.SubSequence == Self.SubSequence.SubSequence
13 |     subscript(position: Self.Index) -> Self.Element { get }
14 |     subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
   |     `- note: requirement 'subscript(_:)' declared here
15 |     associatedtype Indices : Collection = DefaultIndices<Self> where Self.Indices == Self.Indices.SubSequence
16 |     var indices: Self.Indices { get }
[52/98] Compiling NIO System.swift
[53/98] Compiling NIO Thread.swift
[54/98] Compiling NIO TypeAssistedChannelHandler.swift
[55/98] Compiling NIO Utilities.swift
[56/98] Compiling NIO HappyEyeballs.swift
[57/98] Compiling NIO IO.swift
[58/98] Compiling NIO IOData.swift
[59/98] Compiling NIO Interfaces.swift
[60/98] Compiling NIO Linux.swift
[61/98] Compiling NIO Codec.swift
[62/98] Compiling NIO CompositeError.swift
[63/98] Compiling NIO DeadChannel.swift
[64/98] Compiling NIO Embedded.swift
[65/98] Compiling NIO EventLoop.swift
[66/98] Compiling NIO ChannelHandlers.swift
[67/98] Compiling NIO ChannelInvoker.swift
[68/98] Compiling NIO ChannelOption.swift
[69/98] Compiling NIO ChannelPipeline.swift
[70/98] Compiling NIO CircularBuffer.swift
[71/98] Compiling NIO EventLoopFuture.swift
[72/98] Compiling NIO FileDescriptor.swift
[73/98] Compiling NIO FileHandle.swift
[74/98] Compiling NIO FileRegion.swift
[75/98] Compiling NIO GetaddrinfoResolver.swift
[76/98] Compiling NIO PendingWritesManager.swift
[77/98] Compiling NIO RecvByteBufferAllocator.swift
[78/98] Compiling NIO Resolver.swift
[79/98] Compiling NIO Selectable.swift
[80/98] Compiling NIO Selector.swift
[81/98] Compiling NIO ServerSocket.swift
[82/98] Compiling NIO Socket.swift
[83/98] Compiling NIO SocketAddresses.swift
[84/98] Compiling NIO SocketChannel.swift
[85/98] Compiling NIO LinuxCPUSet.swift
[86/98] Compiling NIO MarkedCircularBuffer.swift
[87/98] Compiling NIO NIOAny.swift
[88/98] Compiling NIO NonBlockingFileIO.swift
[89/98] Compiling NIO PendingDatagramWritesManager.swift
[90/98] Compiling NIO AddressedEnvelope.swift
[91/98] Compiling NIO BaseSocket.swift
[92/98] Compiling NIO BaseSocketChannel.swift
[93/98] Compiling NIO BlockingIOThreadPool.swift
[94/98] Compiling NIO Bootstrap.swift
Fetching https://github.com/vapor/template-kit.git
Fetching https://github.com/vapor/engine.git
Fetching https://github.com/vapor/console.git
Fetching https://github.com/vapor/vapor.git
Fetching https://github.com/vapor/crypto.git
Fetching https://github.com/apple/swift-nio-ssl-support.git
Fetching https://github.com/vapor/core.git
[1/16] Fetching swift-nio-ssl-support
[16/2802] Fetching swift-nio-ssl-support, crypto
[212/28269] Fetching swift-nio-ssl-support, crypto, engine
[213/29551] Fetching swift-nio-ssl-support, crypto, engine, template-kit
[329/49694] Fetching swift-nio-ssl-support, crypto, engine, template-kit, core
[590/55095] Fetching swift-nio-ssl-support, crypto, engine, template-kit, core, console
[32367/123789] Fetching swift-nio-ssl-support, crypto, engine, template-kit, core, console, vapor
Fetched https://github.com/apple/swift-nio-ssl-support.git from cache (2.71s)
Fetching https://github.com/vapor/routing.git
Fetched https://github.com/vapor/template-kit.git from cache (2.71s)
Fetching https://github.com/apple/swift-nio.git
Fetched https://github.com/vapor/vapor.git from cache (2.72s)
Fetching https://github.com/vapor/database-kit.git
Computing version for https://github.com/vapor/vapor.git
Fetched https://github.com/vapor/core.git from cache (2.72s)
Fetching https://github.com/apple/swift-nio-zlib-support.git
Fetched https://github.com/vapor/engine.git from cache (2.72s)
Fetching https://github.com/apple/swift-nio-ssl.git
Fetched https://github.com/vapor/crypto.git from cache (2.72s)
Fetched https://github.com/vapor/console.git from cache (2.72s)
Fetching https://github.com/vapor/service.git
Fetching https://github.com/vapor/validation.git
[1/1181] Fetching database-kit
[25/1760] Fetching database-kit, validation
[43/2679] Fetching database-kit, validation, service
[98/2694] Fetching database-kit, validation, service, swift-nio-zlib-support
[539/23384] Fetching database-kit, validation, service, swift-nio-zlib-support, routing
[2596/35652] Fetching database-kit, validation, service, swift-nio-zlib-support, routing, swift-nio-ssl
Fetched https://github.com/vapor/database-kit.git from cache (0.93s)
[1837/34471] Fetching validation, service, swift-nio-zlib-support, routing, swift-nio-ssl
[9692/100078] Fetching validation, service, swift-nio-zlib-support, routing, swift-nio-ssl, swift-nio
Fetched https://github.com/vapor/routing.git from cache (1.64s)
[25591/79388] Fetching validation, service, swift-nio-zlib-support, swift-nio-ssl, swift-nio
Fetched https://github.com/vapor/validation.git from cache (1.78s)
Fetched https://github.com/apple/swift-nio-zlib-support.git from cache (1.78s)
Fetched https://github.com/vapor/service.git from cache (1.78s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.78s)
[28868/65607] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (3.56s)
Computed https://github.com/vapor/vapor.git at 3.0.0-rc.2.2.4 (4.27s)
Computing version for https://github.com/vapor/validation.git
Computed https://github.com/vapor/validation.git at 2.0.0-rc.2.1.1 (0.68s)
Computing version for https://github.com/vapor/template-kit.git
Computed https://github.com/vapor/template-kit.git at 1.0.0-rc.2.0.3 (0.67s)
Computing version for https://github.com/vapor/service.git
Computed https://github.com/vapor/service.git at 1.0.0 (0.67s)
Computing version for https://github.com/vapor/routing.git
Computed https://github.com/vapor/routing.git at 3.0.0-rc.2 (0.67s)
Computing version for https://github.com/vapor/engine.git
Computed https://github.com/vapor/engine.git at 3.0.0-rc.2.1.1 (0.69s)
Computing version for https://github.com/vapor/database-kit.git
Computed https://github.com/vapor/database-kit.git at 1.0.0-rc.2.2.2 (0.67s)
Computing version for https://github.com/vapor/crypto.git
Computed https://github.com/vapor/crypto.git at 3.0.0 (0.67s)
Computing version for https://github.com/vapor/core.git
Computed https://github.com/vapor/core.git at 3.0.2 (0.67s)
Computing version for https://github.com/vapor/console.git
Computed https://github.com/vapor/console.git at 3.0.0 (0.66s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 1.3.1 (0.70s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 1.0.1 (0.68s)
Computing version for https://github.com/apple/swift-nio-zlib-support.git
Computed https://github.com/apple/swift-nio-zlib-support.git at 1.0.0 (0.67s)
Computing version for https://github.com/apple/swift-nio-ssl-support.git
Computed https://github.com/apple/swift-nio-ssl-support.git at 1.0.0 (0.68s)
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 3.0.0-rc.2.2.4
Creating working copy for https://github.com/vapor/engine.git
Working copy of https://github.com/vapor/engine.git resolved at 3.0.0-rc.2.1.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 1.3.1
Creating working copy for https://github.com/vapor/validation.git
Working copy of https://github.com/vapor/validation.git resolved at 2.0.0-rc.2.1.1
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 1.0.1
Creating working copy for https://github.com/vapor/database-kit.git
Working copy of https://github.com/vapor/database-kit.git resolved at 1.0.0-rc.2.2.2
Creating working copy for https://github.com/apple/swift-nio-zlib-support.git
Working copy of https://github.com/apple/swift-nio-zlib-support.git resolved at 1.0.0
Creating working copy for https://github.com/vapor/core.git
Working copy of https://github.com/vapor/core.git resolved at 3.0.2
Creating working copy for https://github.com/vapor/routing.git
Working copy of https://github.com/vapor/routing.git resolved at 3.0.0-rc.2
Creating working copy for https://github.com/vapor/console.git
Working copy of https://github.com/vapor/console.git resolved at 3.0.0
Creating working copy for https://github.com/vapor/service.git
Working copy of https://github.com/vapor/service.git resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-nio-ssl-support.git
Working copy of https://github.com/apple/swift-nio-ssl-support.git resolved at 1.0.0
Creating working copy for https://github.com/vapor/crypto.git
Working copy of https://github.com/vapor/crypto.git resolved at 3.0.0
Creating working copy for https://github.com/vapor/template-kit.git
Working copy of https://github.com/vapor/template-kit.git resolved at 1.0.0-rc.2.0.3
warning: 'swift-nio-ssl-support': ignoring declared target(s) 'swift-nio-ssl-support' in the system package
warning: 'swift-nio-zlib-support': ignoring declared target(s) 'swift-nio-zlib-support' 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 openssl using your system-packager:
    brew install libressl
warning: couldn't find pc file for zlib
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.