The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Core, reference 3.10.1 (89c698), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 03:23:33 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vapor/core.git
Reference: 3.10.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/vapor/core
 * tag               3.10.1     -> FETCH_HEAD
HEAD is now at 89c6989 Fix compilation error in Xcode 13
Cloned https://github.com/vapor/core.git
Revision (git rev-parse @):
89c6989fd8b1e08acfd198afba1c38971bb814b2
SUCCESS checkout https://github.com/vapor/core.git at 3.10.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/vapor/core.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/15] Write sources
[9/15] Write swift-version-1EA4D86E10B52AF.txt
[10/15] Compiling CNIOLinux ifaddrs-android.c
[11/15] Compiling CNIOLinux shim.c
[12/24] Compiling CNIODarwin shim.c
[13/24] Compiling CNIOSHA1 c_nio_sha1.c
[15/24] Compiling NIOPriorityQueue PriorityQueue.swift
[16/24] Compiling COperatingSystem libc.swift
[17/24] Emitting module COperatingSystem
[18/24] Emitting module NIOPriorityQueue
[19/24] Compiling NIOPriorityQueue Heap.swift
[19/24] Compiling c-atomics.c
[21/27] Compiling NIOConcurrencyHelpers lock.swift
[22/27] Emitting module NIOConcurrencyHelpers
[23/27] Compiling NIOConcurrencyHelpers atomics.swift
[24/78] Compiling NIO IOData.swift
[25/78] Compiling NIO IntegerTypes.swift
[26/78] Compiling NIO Interfaces.swift
[27/78] Compiling NIO Linux.swift
[28/78] Compiling NIO LinuxCPUSet.swift
[29/83] Compiling NIO FileHandle.swift
[30/83] Compiling NIO FileRegion.swift
[31/83] Compiling NIO GetaddrinfoResolver.swift
[32/83] Compiling NIO HappyEyeballs.swift
[33/83] Compiling NIO Heap.swift
[34/83] Compiling NIO IO.swift
[35/83] Compiling NIO MarkedCircularBuffer.swift
[36/83] Compiling NIO MulticastChannel.swift
[37/83] Compiling NIO NIOAny.swift
[38/83] Compiling NIO NonBlockingFileIO.swift
[39/83] Compiling NIO PendingDatagramWritesManager.swift
[40/83] Compiling Debugging Demangler.swift
[41/83] Compiling Debugging SourceLocation.swift
[42/83] Compiling Debugging Debuggable.swift
[43/83] Emitting module Debugging
[44/83] Compiling NIO ChannelInvoker.swift
[45/83] Compiling NIO ChannelOption.swift
[46/83] Compiling NIO ChannelPipeline.swift
[47/83] Compiling NIO CircularBuffer.swift
[48/83] Compiling NIO Codec.swift
[49/83] Compiling NIO CompositeError.swift
[50/83] Emitting module NIO
[51/83] Compiling NIO ContiguousCollection.swift
[52/83] Compiling NIO DeadChannel.swift
[53/83] Compiling NIO Embedded.swift
[54/83] Compiling NIO EventLoop.swift
[55/83] Compiling NIO EventLoopFuture.swift
[56/83] Compiling NIO FileDescriptor.swift
[57/83] Compiling NIO AddressedEnvelope.swift
[58/83] Compiling NIO BaseSocket.swift
[59/83] Compiling NIO BaseSocketChannel.swift
[60/83] Compiling NIO BlockingIOThreadPool.swift
[61/83] Compiling NIO Bootstrap.swift
[62/83] Compiling NIO ByteBuffer-aux.swift
[63/83] Compiling NIO ByteBuffer-core.swift
[64/83] Compiling NIO ByteBuffer-int.swift
[65/83] Compiling NIO ByteBuffer-views.swift
[66/83] Compiling NIO Channel.swift
[67/83] Compiling NIO ChannelHandler.swift
[68/83] Compiling NIO ChannelHandlers.swift
[69/83] Compiling NIO SocketOptionProvider.swift
[70/83] Compiling NIO System.swift
[71/83] Compiling NIO Thread.swift
[72/83] Compiling NIO TypeAssistedChannelHandler.swift
[73/83] Compiling NIO Utilities.swift
[74/83] Compiling NIO PendingWritesManager.swift
[75/83] Compiling NIO PriorityQueue.swift
[76/83] Compiling NIO RecvByteBufferAllocator.swift
[77/83] Compiling NIO Resolver.swift
[78/83] Compiling NIO Selectable.swift
[79/83] Compiling NIO Selector.swift
[80/83] Compiling NIO ServerSocket.swift
[81/83] Compiling NIO Socket.swift
[82/83] Compiling NIO SocketAddresses.swift
[83/83] Compiling NIO SocketChannel.swift
[84/112] Compiling Async Future+Void.swift
[85/113] Compiling Async Async+NIO.swift
[86/113] Compiling Async AsyncError.swift
[87/113] Compiling Async Future+Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Map.swift:16:21: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// See `flatMap(to:_:)` for mapping `Future` results to other `Future` types.
16 |     public func map<T>(to type: T.Type = T.self, _ callback: @escaping (Expectation) throws -> T) -> Future<T> {
   |                     `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 |         return self.thenThrowing(callback)
18 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Map.swift:32:25: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
30 |     ///
31 |     /// See `map(to:_:)` for mapping `Future` results to non-`Future` types.
32 |     public func flatMap<T>(to type: T.Type = T.self, _ callback: @escaping (Expectation) throws -> Future<T>) -> Future<T> {
   |                         `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 |         return self.then { input in
34 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Transform.swift:8:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 6 |     ///     user.save(on: req).transform(to: HTTPStatus.created)
 7 |     ///
 8 |     public func transform<T>(to instance: @escaping @autoclosure () -> T) -> Future<T> {
   |                           `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 9 |         return self.map(to: T.self) { _ in
10 |             instance()
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Transform.swift:19:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 |     ///     posts.save(on: request).transform(to: user)
18 |     ///
19 |     public func transform<T>(to future: Future<T>) -> Future<T> {
   |                           `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
20 |         return self.flatMap(to: T.self) { _ in
21 |             future
[88/113] Compiling Async Future+Transform.swift
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Map.swift:16:21: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// See `flatMap(to:_:)` for mapping `Future` results to other `Future` types.
16 |     public func map<T>(to type: T.Type = T.self, _ callback: @escaping (Expectation) throws -> T) -> Future<T> {
   |                     `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 |         return self.thenThrowing(callback)
18 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Map.swift:32:25: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
30 |     ///
31 |     /// See `map(to:_:)` for mapping `Future` results to non-`Future` types.
32 |     public func flatMap<T>(to type: T.Type = T.self, _ callback: @escaping (Expectation) throws -> Future<T>) -> Future<T> {
   |                         `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 |         return self.then { input in
34 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Transform.swift:8:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 6 |     ///     user.save(on: req).transform(to: HTTPStatus.created)
 7 |     ///
 8 |     public func transform<T>(to instance: @escaping @autoclosure () -> T) -> Future<T> {
   |                           `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 9 |         return self.map(to: T.self) { _ in
10 |             instance()
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Transform.swift:19:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 |     ///     posts.save(on: request).transform(to: user)
18 |     ///
19 |     public func transform<T>(to future: Future<T>) -> Future<T> {
   |                           `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
20 |         return self.flatMap(to: T.self) { _ in
21 |             future
[89/113] Compiling Async Future+Flatten.swift
[90/113] Compiling Async Future+Global.swift
[91/113] Compiling Async Exports.swift
[92/113] Compiling Async Future+DoCatch.swift
[93/113] Emitting module Async
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Map.swift:16:21: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
14 |     ///
15 |     /// See `flatMap(to:_:)` for mapping `Future` results to other `Future` types.
16 |     public func map<T>(to type: T.Type = T.self, _ callback: @escaping (Expectation) throws -> T) -> Future<T> {
   |                     `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 |         return self.thenThrowing(callback)
18 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Map.swift:32:25: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
30 |     ///
31 |     /// See `map(to:_:)` for mapping `Future` results to non-`Future` types.
32 |     public func flatMap<T>(to type: T.Type = T.self, _ callback: @escaping (Expectation) throws -> Future<T>) -> Future<T> {
   |                         `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
33 |         return self.then { input in
34 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Transform.swift:8:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 6 |     ///     user.save(on: req).transform(to: HTTPStatus.created)
 7 |     ///
 8 |     public func transform<T>(to instance: @escaping @autoclosure () -> T) -> Future<T> {
   |                           `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 9 |         return self.map(to: T.self) { _ in
10 |             instance()
/Users/admin/builder/spi-builder-workspace/Sources/Async/Future+Transform.swift:19:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
17 |     ///     posts.save(on: request).transform(to: user)
18 |     ///
19 |     public func transform<T>(to future: Future<T>) -> Future<T> {
   |                           `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
20 |         return self.flatMap(to: T.self) { _ in
21 |             future
[94/113] Compiling Async Collection+Future.swift
[95/113] Compiling Async Deprecated.swift
[96/113] Compiling Async Future+Variadic.swift
[97/113] Compiling Async FutureType.swift
[98/113] Compiling Async QueueHandler.swift
[99/113] Compiling Async Worker.swift
[100/113] Compiling Bits ByteBuffer+string.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/ByteBuffer+string.swift:6:68: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
 4 |     /// - parameters:
 5 |     ///     - encoding: `String.Encoding` to use when converting the bytes to a `String`
 6 |     public mutating func readNullTerminatedString(encoding: String.Encoding = .utf8) -> String? {
   |                                                                    `- warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
 7 |         var bytes: [UInt8] = []
 8 |         parse: while true {
Foundation.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
/Users/admin/builder/spi-builder-workspace/Sources/Bits/ByteBuffer+string.swift:6:80: warning: static property 'utf8' cannot be used in a default argument value because 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
 4 |     /// - parameters:
 5 |     ///     - encoding: `String.Encoding` to use when converting the bytes to a `String`
 6 |     public mutating func readNullTerminatedString(encoding: String.Encoding = .utf8) -> String? {
   |                                                                                |- warning: static property 'utf8' cannot be used in a default argument value because 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
   |                                                                                `- note: The missing import of module 'Foundation' will be added implicitly
 7 |         var bytes: [UInt8] = []
 8 |         parse: while true {
/Users/admin/builder/spi-builder-workspace/Sources/Bits/ByteBuffer+string.swift:23:75: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
21 |     ///
22 |     /// See `readNullTerminatedString(encoding:)`
23 |     public mutating func requireReadNullTerminatedString(encoding: String.Encoding = .utf8) throws -> String {
   |                                                                           `- warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
24 |         guard let string = readNullTerminatedString(encoding: encoding) else {
25 |             throw BitsError(identifier: "nullTerminatedString", reason: "This was not available in the buffer")
Foundation.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
/Users/admin/builder/spi-builder-workspace/Sources/Bits/ByteBuffer+string.swift:23:87: warning: static property 'utf8' cannot be used in a default argument value because 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
21 |     ///
22 |     /// See `readNullTerminatedString(encoding:)`
23 |     public mutating func requireReadNullTerminatedString(encoding: String.Encoding = .utf8) throws -> String {
   |                                                                                       |- warning: static property 'utf8' cannot be used in a default argument value because 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
   |                                                                                       `- note: The missing import of module 'Foundation' will be added implicitly
24 |         guard let string = readNullTerminatedString(encoding: encoding) else {
25 |             throw BitsError(identifier: "nullTerminatedString", reason: "This was not available in the buffer")
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[101/114] Compiling Bits ByteBuffer+binaryFloatingPointOperations.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[104/114] Emitting module NIOFoundationCompat
[105/114] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[108/114] Emitting module Bits
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/Bits/ByteBuffer+string.swift:6:68: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
 4 |     /// - parameters:
 5 |     ///     - encoding: `String.Encoding` to use when converting the bytes to a `String`
 6 |     public mutating func readNullTerminatedString(encoding: String.Encoding = .utf8) -> String? {
   |                                                                    `- warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
 7 |         var bytes: [UInt8] = []
 8 |         parse: while true {
Foundation.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
/Users/admin/builder/spi-builder-workspace/Sources/Bits/ByteBuffer+string.swift:6:80: warning: static property 'utf8' cannot be used in a default argument value because 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
 4 |     /// - parameters:
 5 |     ///     - encoding: `String.Encoding` to use when converting the bytes to a `String`
 6 |     public mutating func readNullTerminatedString(encoding: String.Encoding = .utf8) -> String? {
   |                                                                                |- warning: static property 'utf8' cannot be used in a default argument value because 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
   |                                                                                `- note: The missing import of module 'Foundation' will be added implicitly
 7 |         var bytes: [UInt8] = []
 8 |         parse: while true {
/Users/admin/builder/spi-builder-workspace/Sources/Bits/ByteBuffer+string.swift:23:75: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
21 |     ///
22 |     /// See `readNullTerminatedString(encoding:)`
23 |     public mutating func requireReadNullTerminatedString(encoding: String.Encoding = .utf8) throws -> String {
   |                                                                           `- warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
24 |         guard let string = readNullTerminatedString(encoding: encoding) else {
25 |             throw BitsError(identifier: "nullTerminatedString", reason: "This was not available in the buffer")
Foundation.String.Encoding:2:15: note: struct declared here
 1 | struct String {
 2 | public struct Encoding : RawRepresentable, Sendable, Equatable {
   |               `- note: struct declared here
 3 |     public var rawValue: UInt
 4 |     public init(rawValue: UInt)
/Users/admin/builder/spi-builder-workspace/Sources/Bits/ByteBuffer+string.swift:23:87: warning: static property 'utf8' cannot be used in a default argument value because 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
21 |     ///
22 |     /// See `readNullTerminatedString(encoding:)`
23 |     public mutating func requireReadNullTerminatedString(encoding: String.Encoding = .utf8) throws -> String {
   |                                                                                       |- warning: static property 'utf8' cannot be used in a default argument value because 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
   |                                                                                       `- note: The missing import of module 'Foundation' will be added implicitly
24 |         guard let string = readNullTerminatedString(encoding: encoding) else {
25 |             throw BitsError(identifier: "nullTerminatedString", reason: "This was not available in the buffer")
[109/114] Compiling Bits Bytes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[110/114] Compiling Bits ByteBuffer+require.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[111/114] Compiling Bits ByteBuffer+peek.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[112/114] Compiling Bits Data+Bytes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[113/114] Compiling Bits Data+Strings.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[114/114] Compiling Bits Deprecated.swift
/Users/admin/builder/spi-builder-workspace/Sources/Bits/Deprecated.swift:3:15: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
1 | extension Byte {
2 |     /// ~
3 |     @available (*, deprecated, renamed: "tilde")
  |               `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
4 |     public static let tilda: Byte = 0x7E
5 | }
[115/138] Compiling Core HeaderValue.swift
[116/138] Compiling Core LosslessDataConvertible.swift
[117/138] Compiling Core BasicKey.swift
[118/138] Compiling Core CaseInsensitiveString.swift
[119/138] Compiling Core Decodable+Reflectable.swift
[120/140] Compiling Core NotFound.swift
[121/140] Compiling Core OptionalType.swift
[122/140] Compiling Core File.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/FutureEncoder.swift:9:1: warning: extension declares a conformance of imported type 'EventLoopFuture' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'NIO' introduce this conformance in the future
 7 |
 8 | /// Conforms future to `Encodable` where its expectation is also `Encodable`.
 9 | extension Future: Encodable where T: Encodable {
   | |- warning: extension declares a conformance of imported type 'EventLoopFuture' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'NIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |     /// See `Encodable`.
11 |     public func encode(to encoder: Encoder) throws {
[123/140] Compiling Core Future+Unwrap.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/FutureEncoder.swift:9:1: warning: extension declares a conformance of imported type 'EventLoopFuture' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'NIO' introduce this conformance in the future
 7 |
 8 | /// Conforms future to `Encodable` where its expectation is also `Encodable`.
 9 | extension Future: Encodable where T: Encodable {
   | |- warning: extension declares a conformance of imported type 'EventLoopFuture' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'NIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |     /// See `Encodable`.
11 |     public func encode(to encoder: Encoder) throws {
[124/140] Compiling Core FutureEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/FutureEncoder.swift:9:1: warning: extension declares a conformance of imported type 'EventLoopFuture' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'NIO' introduce this conformance in the future
 7 |
 8 | /// Conforms future to `Encodable` where its expectation is also `Encodable`.
 9 | extension Future: Encodable where T: Encodable {
   | |- warning: extension declares a conformance of imported type 'EventLoopFuture' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'NIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |     /// See `Encodable`.
11 |     public func encode(to encoder: Encoder) throws {
[125/140] Compiling Core String+Utilities.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/String+Utilities.swift:24:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
22 | }
23 |
24 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
25 |     /// See `LosslessStringConvertible`.
26 |     public init?(_ string: String) {
[126/140] Compiling Core Thread+Async.swift
/Users/admin/builder/spi-builder-workspace/Sources/Core/String+Utilities.swift:24:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
22 | }
23 |
24 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
25 |     /// See `LosslessStringConvertible`.
26 |     public init?(_ string: String) {
[127/140] Compiling Core Process+Execute.swift
[128/140] Compiling Core Reflectable.swift
[129/140] Compiling Core ReflectionDecodable.swift
[130/140] Compiling Core ReflectionDecoders.swift
[131/140] Compiling Core CoreError.swift
[132/140] Emitting module Core
/Users/admin/builder/spi-builder-workspace/Sources/Core/FutureEncoder.swift:9:1: warning: extension declares a conformance of imported type 'EventLoopFuture' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'NIO' introduce this conformance in the future
 7 |
 8 | /// Conforms future to `Encodable` where its expectation is also `Encodable`.
 9 | extension Future: Encodable where T: Encodable {
   | |- warning: extension declares a conformance of imported type 'EventLoopFuture' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'NIO' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |     /// See `Encodable`.
11 |     public func encode(to encoder: Encoder) throws {
/Users/admin/builder/spi-builder-workspace/Sources/Core/String+Utilities.swift:24:1: warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
22 | }
23 |
24 | extension UUID: LosslessStringConvertible {
   | |- warning: extension declares a conformance of imported type 'UUID' to imported protocol 'LosslessStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
25 |     /// See `LosslessStringConvertible`.
26 |     public init?(_ string: String) {
[133/140] Compiling Core Data+Base64URL.swift
[134/140] Compiling Core Data+Hex.swift
[135/140] Compiling Core DataCoders.swift
[136/140] Compiling Core Deprecated.swift
[137/140] Compiling Core DirectoryConfig.swift
[138/140] Compiling Core Exports.swift
[139/140] Compiling Core MediaType.swift
[140/140] Compiling Core NestedData.swift
Build complete! (14.40s)
Fetching https://github.com/apple/swift-nio.git
[1/76327] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (3.64s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 1.14.4 (4.15s)
Fetching https://github.com/apple/swift-nio-zlib-support.git
[1/15] Fetching swift-nio-zlib-support
Fetched https://github.com/apple/swift-nio-zlib-support.git from cache (0.54s)
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 (1.06s)
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 1.14.4
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
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: couldn't find pc file for zlib
warning: couldn't find pc file for zlib
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.14.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    }
  ],
  "manifest_display_name" : "Core",
  "name" : "Core",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Async",
      "targets" : [
        "Async"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Bits",
      "targets" : [
        "Bits"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Core",
      "targets" : [
        "Core"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "COperatingSystem",
      "targets" : [
        "COperatingSystem"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Debugging",
      "targets" : [
        "Debugging"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "DebuggingTests",
      "module_type" : "SwiftTarget",
      "name" : "DebuggingTests",
      "path" : "Tests/DebuggingTests",
      "sources" : [
        "FooError.swift",
        "FooErrorTests.swift",
        "GeneralTests.swift",
        "MinimumError.swift",
        "TestError.swift",
        "TraceableTests.swift"
      ],
      "target_dependencies" : [
        "Debugging"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Debugging",
      "module_type" : "SwiftTarget",
      "name" : "Debugging",
      "path" : "Sources/Debugging",
      "product_memberships" : [
        "Bits",
        "Core",
        "Debugging"
      ],
      "sources" : [
        "Debuggable.swift",
        "Demangler.swift",
        "SourceLocation.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CoreTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreTests",
      "path" : "Tests/CoreTests",
      "sources" : [
        "CoreTests.swift",
        "ReflectableTests.swift"
      ],
      "target_dependencies" : [
        "Core"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Core",
      "module_type" : "SwiftTarget",
      "name" : "Core",
      "path" : "Sources/Core",
      "product_dependencies" : [
        "NIOFoundationCompat"
      ],
      "product_memberships" : [
        "Core"
      ],
      "sources" : [
        "BasicKey.swift",
        "CaseInsensitiveString.swift",
        "CodableReflection/Decodable+Reflectable.swift",
        "CodableReflection/ReflectionDecodable.swift",
        "CodableReflection/ReflectionDecoders.swift",
        "CoreError.swift",
        "Data+Base64URL.swift",
        "Data+Hex.swift",
        "DataCoders.swift",
        "Deprecated.swift",
        "DirectoryConfig.swift",
        "Exports.swift",
        "File.swift",
        "Future+Unwrap.swift",
        "FutureEncoder.swift",
        "HeaderValue.swift",
        "LosslessDataConvertible.swift",
        "MediaType.swift",
        "NestedData.swift",
        "NotFound.swift",
        "OptionalType.swift",
        "Process+Execute.swift",
        "Reflectable.swift",
        "String+Utilities.swift",
        "Thread+Async.swift"
      ],
      "target_dependencies" : [
        "Async",
        "Bits",
        "COperatingSystem",
        "Debugging"
      ],
      "type" : "library"
    },
    {
      "c99name" : "COperatingSystem",
      "module_type" : "SwiftTarget",
      "name" : "COperatingSystem",
      "path" : "Sources/COperatingSystem",
      "product_memberships" : [
        "Core",
        "COperatingSystem"
      ],
      "sources" : [
        "libc.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BitsTests",
      "module_type" : "SwiftTarget",
      "name" : "BitsTests",
      "path" : "Tests/BitsTests",
      "product_dependencies" : [
        "NIO"
      ],
      "sources" : [
        "ByteBufferPeekTests.swift",
        "ByteBufferRequireTests.swift"
      ],
      "target_dependencies" : [
        "Bits"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Bits",
      "module_type" : "SwiftTarget",
      "name" : "Bits",
      "path" : "Sources/Bits",
      "product_dependencies" : [
        "NIO"
      ],
      "product_memberships" : [
        "Bits",
        "Core"
      ],
      "sources" : [
        "BitsError.swift",
        "Byte+Alphabet.swift",
        "Byte+Control.swift",
        "Byte+Digit.swift",
        "ByteBuffer+binaryFloatingPointOperations.swift",
        "ByteBuffer+peek.swift",
        "ByteBuffer+require.swift",
        "ByteBuffer+string.swift",
        "Bytes.swift",
        "Data+Bytes.swift",
        "Data+Strings.swift",
        "Deprecated.swift"
      ],
      "target_dependencies" : [
        "Debugging"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AsyncTests",
      "module_type" : "SwiftTarget",
      "name" : "AsyncTests",
      "path" : "Tests/AsyncTests",
      "sources" : [
        "AsyncTests.swift"
      ],
      "target_dependencies" : [
        "Async"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Async",
      "module_type" : "SwiftTarget",
      "name" : "Async",
      "path" : "Sources/Async",
      "product_dependencies" : [
        "NIO"
      ],
      "product_memberships" : [
        "Async",
        "Core"
      ],
      "sources" : [
        "Async+NIO.swift",
        "AsyncError.swift",
        "Collection+Future.swift",
        "Deprecated.swift",
        "Exports.swift",
        "Future+DoCatch.swift",
        "Future+Flatten.swift",
        "Future+Global.swift",
        "Future+Map.swift",
        "Future+Transform.swift",
        "Future+Variadic.swift",
        "Future+Void.swift",
        "FutureType.swift",
        "QueueHandler.swift",
        "Worker.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.1"
}
Done.