The Swift Package Index logo.Swift Package Index

Build Information

Successful build of console-kit, reference 4.5.0 (a7e67a), with Swift 6.3 for macOS (SPM) on 14 Apr 2026 05:19:38 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swifweb/console-kit.git
Reference: 4.5.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/swifweb/console-kit
 * tag               4.5.0      -> FETCH_HEAD
HEAD is now at a7e67a1 Update Supported Swift Versions (#169)
Cloned https://github.com/swifweb/console-kit.git
Revision (git rev-parse @):
a7e67a1719933318b5ab7eaaed355cde020465b1
SUCCESS checkout https://github.com/swifweb/console-kit.git at 4.5.0
Fetching https://github.com/apple/swift-log.git
[1/6561] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.20s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (1.86s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.11.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "console-kit",
      "name": "console-kit",
      "url": "https://github.com/swifweb/console-kit.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/console-kit",
      "traits": [
        "default"
      ],
      "dependencies": [
        {
          "identity": "swift-log",
          "name": "swift-log",
          "url": "https://github.com/apple/swift-log.git",
          "version": "1.11.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log",
          "traits": [
          ],
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/swifweb/console-kit.git
[1/3105] Fetching console-kit
Fetched https://github.com/swifweb/console-kit.git from cache (1.00s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.53s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (0.60s)
Creating working copy for https://github.com/swifweb/console-kit.git
Working copy of https://github.com/swifweb/console-kit.git resolved at 4.5.0 (a7e67a1)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.11.0
warning: '.resolve-product-dependencies': dependency 'console-kit' is not used by any target
Found 1 product dependencies
  - swift-log
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/swifweb/console-kit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/9] Write sources
[3/9] Write ConsoleKitExample-entitlement.plist
[3/9] Write sources
[5/9] Write swift-version--6988338F2F200930.txt
[7/15] Compiling Logging MetadataProvider.swift
[8/15] Compiling Logging LogHandler.swift
[9/15] Compiling Logging Locks.swift
[10/15] Compiling Logging LogEvent.swift
[11/15] Emitting module Logging
[12/15] Compiling Logging Logging.swift
[13/60] Compiling ConsoleKit AnyCommand.swift
[14/60] Compiling ConsoleKit Argument.swift
[15/60] Compiling ConsoleKit AnyAsyncCommand.swift
[16/60] Compiling ConsoleKit AsyncCommand.swift
[17/60] Compiling ConsoleKit AsyncCommandGroup.swift
[18/64] Compiling ConsoleKit Console+Choose.swift
[19/64] Compiling ConsoleKit Console+Confirm.swift
[20/64] Compiling ConsoleKit Console+Input.swift
[21/64] Compiling ConsoleKit Console+Center.swift
[22/64] Compiling ConsoleKit Console+Output.swift
[23/64] Compiling ConsoleKit ActivityBar.swift
[24/64] Compiling ConsoleKit ActivityIndicator.swift
[25/64] Compiling ConsoleKit ActivityIndicatorRenderer.swift
[26/64] Compiling ConsoleKit ActivityIndicatorState.swift
[27/64] Compiling ConsoleKit CustomActivity.swift
[28/64] Emitting module ConsoleKit
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Utilities/ConsoleLogger.swift:4:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  2 |
  3 | /// Outputs logs to a `Console`.
  4 | public struct ConsoleLogger: LogHandler {
    |               `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  5 |     public let label: String
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[29/64] Compiling ConsoleKit LoadingBar.swift
[30/64] Compiling ConsoleKit ProgressBar.swift
[31/64] Compiling ConsoleKit Console+Clear.swift
[32/64] Compiling ConsoleKit Console+Ephemeral.swift
[33/64] Compiling ConsoleKit ConsoleClear.swift
[34/64] Compiling ConsoleKit Console+Wait.swift
[35/64] Compiling ConsoleKit ConsoleColor.swift
[36/64] Compiling ConsoleKit ConsoleStyle.swift
[37/64] Compiling ConsoleKit ConsoleText.swift
[38/64] Compiling ConsoleKit ConsoleTextFragment.swift
[39/64] Compiling ConsoleKit Flag.swift
[40/64] Compiling ConsoleKit Option.swift
[41/64] Compiling ConsoleKit Utilities.swift
[42/64] Compiling ConsoleKit Console.swift
[43/64] Compiling ConsoleKit Console+Ask.swift
[44/64] Compiling ConsoleKit CommandInput.swift
[45/64] Compiling ConsoleKit CommandSignature.swift
[46/64] Compiling ConsoleKit Commands.swift
[47/64] Compiling ConsoleKit Completion.swift
[48/64] Compiling ConsoleKit Console+Run.swift
[49/64] Compiling ConsoleKit ANSI.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Terminal/readpassphrase_linux.swift:138:26: warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)' [#DeprecatedDeclaration]
136 |
137 |     func reset() {
138 |         self.baseAddress.assign(repeating: 0, count: self.capacity)
    |                          |- warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)' [#DeprecatedDeclaration]
    |                          `- note: use 'update(repeating:count:)' instead
139 |     }
140 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[50/64] Compiling ConsoleKit Terminal.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Terminal/readpassphrase_linux.swift:138:26: warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)' [#DeprecatedDeclaration]
136 |
137 |     func reset() {
138 |         self.baseAddress.assign(repeating: 0, count: self.capacity)
    |                          |- warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)' [#DeprecatedDeclaration]
    |                          `- note: use 'update(repeating:count:)' instead
139 |     }
140 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[51/64] Compiling ConsoleKit readpassphrase_linux.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Terminal/readpassphrase_linux.swift:138:26: warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)' [#DeprecatedDeclaration]
136 |
137 |     func reset() {
138 |         self.baseAddress.assign(repeating: 0, count: self.capacity)
    |                          |- warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)' [#DeprecatedDeclaration]
    |                          `- note: use 'update(repeating:count:)' instead
139 |     }
140 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[52/64] Compiling ConsoleKit ConsoleError.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Terminal/readpassphrase_linux.swift:138:26: warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)' [#DeprecatedDeclaration]
136 |
137 |     func reset() {
138 |         self.baseAddress.assign(repeating: 0, count: self.capacity)
    |                          |- warning: 'assign(repeating:count:)' is deprecated: renamed to 'update(repeating:count:)' [#DeprecatedDeclaration]
    |                          `- note: use 'update(repeating:count:)' instead
139 |     }
140 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[53/64] Compiling ConsoleKit AsyncCommands.swift
[54/64] Compiling ConsoleKit Command.swift
[55/64] Compiling ConsoleKit CommandContext.swift
[56/64] Compiling ConsoleKit CommandError.swift
[57/64] Compiling ConsoleKit CommandGroup.swift
[58/64] Compiling ConsoleKit ConsoleLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Utilities/ConsoleLogger.swift:4:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  2 |
  3 | /// Outputs logs to a `Console`.
  4 | public struct ConsoleLogger: LogHandler {
    |               `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  5 |     public let label: String
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[59/64] Compiling ConsoleKit GenerateAsyncAutocompleteCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Utilities/ConsoleLogger.swift:4:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  2 |
  3 | /// Outputs logs to a `Console`.
  4 | public struct ConsoleLogger: LogHandler {
    |               `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  5 |     public let label: String
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[60/64] Compiling ConsoleKit GenerateAutocompleteCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Utilities/ConsoleLogger.swift:4:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  2 |
  3 | /// Outputs logs to a `Console`.
  4 | public struct ConsoleLogger: LogHandler {
    |               `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  5 |     public let label: String
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[61/64] Compiling ConsoleKit String+LevenshteinDistance.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKit/Utilities/ConsoleLogger.swift:4:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  2 |
  3 | /// Outputs logs to a `Console`.
  4 | public struct ConsoleLogger: LogHandler {
    |               `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
  5 |     public let label: String
  6 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 |     ///
144 |     /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 |     func log(event: LogEvent)
    |          `- note: requirement 'log(event:)' declared here
146 |
147 |     /// Please do _not_ implement this method when you create a `LogHandler` implementation.
    :
254 |     ///   Implement ``log(event:)`` in your ``LogHandler`` instead.
255 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 |     public func log(event: LogEvent) {
    |                 `- note: 'log(event:)' declared here
257 |         self.log(
258 |             level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[62/70] Compiling ConsoleKitExample main.swift
[63/70] Emitting module ConsoleKitExample
[64/70] Compiling ConsoleKitExample DemoCommand.swift
[65/70] Compiling ConsoleKitAsyncExample entry.swift
/Users/admin/builder/spi-builder-workspace/Sources/ConsoleKitAsyncExample/entry.swift:10:13: warning: initialization of variable 'context' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 8 |         let console: Console = Terminal()
 9 |         let input = CommandInput(arguments: CommandLine.arguments)
10 |         var context = CommandContext(console: console, input: input)
   |             `- warning: initialization of variable 'context' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
11 |
12 |         var commands = AsyncCommands(enableAutocomplete: true)
[66/70] Compiling ConsoleKitAsyncExample DemoCommand.swift
[67/70] Emitting module ConsoleKitAsyncExample
[67/70] Write Objects.LinkFileList
[68/70] Linking ConsoleKitExample
[69/70] Applying ConsoleKitExample
Build complete! (6.76s)
warning: 'spi-builder-workspace': 'ConsoleKitExample' was identified as an executable target given the presence of a 'main' file. Starting with tools version 5.4.0 executable targets should be declared as 'executableTarget()'
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "console-kit",
  "name" : "console-kit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "ConsoleKit",
      "targets" : [
        "ConsoleKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ConsoleKitExample",
      "targets" : [
        "ConsoleKitExample"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ConsoleKitTests",
      "module_type" : "SwiftTarget",
      "name" : "ConsoleKitTests",
      "path" : "Tests/ConsoleKitTests",
      "sources" : [
        "CommandErrorTests.swift",
        "CommandTests.swift",
        "ConsoleTests.swift",
        "LoggingTests.swift",
        "TerminalTests.swift",
        "Utilities.swift"
      ],
      "target_dependencies" : [
        "ConsoleKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ConsoleKitExample",
      "module_type" : "SwiftTarget",
      "name" : "ConsoleKitExample",
      "path" : "Sources/ConsoleKitExample",
      "product_memberships" : [
        "ConsoleKitExample"
      ],
      "sources" : [
        "DemoCommand.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "ConsoleKit"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ConsoleKitAsyncExample",
      "module_type" : "SwiftTarget",
      "name" : "ConsoleKitAsyncExample",
      "path" : "Sources/ConsoleKitAsyncExample",
      "sources" : [
        "DemoCommand.swift",
        "entry.swift"
      ],
      "target_dependencies" : [
        "ConsoleKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ConsoleKit",
      "module_type" : "SwiftTarget",
      "name" : "ConsoleKit",
      "path" : "Sources/ConsoleKit",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "ConsoleKit",
        "ConsoleKitExample"
      ],
      "sources" : [
        "Activity/ActivityBar.swift",
        "Activity/ActivityIndicator.swift",
        "Activity/ActivityIndicatorRenderer.swift",
        "Activity/ActivityIndicatorState.swift",
        "Activity/CustomActivity.swift",
        "Activity/LoadingBar.swift",
        "Activity/ProgressBar.swift",
        "Clear/Console+Clear.swift",
        "Clear/Console+Ephemeral.swift",
        "Clear/ConsoleClear.swift",
        "Command/AnyCommand.swift",
        "Command/Argument.swift",
        "Command/Async/AnyAsyncCommand.swift",
        "Command/Async/AsyncCommand.swift",
        "Command/Async/AsyncCommandGroup.swift",
        "Command/Async/AsyncCommands.swift",
        "Command/Command.swift",
        "Command/CommandContext.swift",
        "Command/CommandError.swift",
        "Command/CommandGroup.swift",
        "Command/CommandInput.swift",
        "Command/CommandSignature.swift",
        "Command/Commands.swift",
        "Command/Completion.swift",
        "Command/Console+Run.swift",
        "Command/Flag.swift",
        "Command/Option.swift",
        "Command/Utilities.swift",
        "Console.swift",
        "Input/Console+Ask.swift",
        "Input/Console+Choose.swift",
        "Input/Console+Confirm.swift",
        "Input/Console+Input.swift",
        "Output/Console+Center.swift",
        "Output/Console+Output.swift",
        "Output/Console+Wait.swift",
        "Output/ConsoleColor.swift",
        "Output/ConsoleStyle.swift",
        "Output/ConsoleText.swift",
        "Output/ConsoleTextFragment.swift",
        "Terminal/ANSI.swift",
        "Terminal/Terminal.swift",
        "Terminal/readpassphrase_linux.swift",
        "Utilities/ConsoleError.swift",
        "Utilities/ConsoleLogger.swift",
        "Utilities/GenerateAsyncAutocompleteCommand.swift",
        "Utilities/GenerateAutocompleteCommand.swift",
        "Utilities/String+LevenshteinDistance.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AsyncConsoleKitTests",
      "module_type" : "SwiftTarget",
      "name" : "AsyncConsoleKitTests",
      "path" : "Tests/AsyncConsoleKitTests",
      "sources" : [
        "AsyncCommandErrorTests.swift",
        "AsyncCommandTests.swift",
        "AsyncUtilities.swift"
      ],
      "target_dependencies" : [
        "ConsoleKit"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.4"
}
warning: 'spi-builder-workspace': 'ConsoleKitExample' was identified as an executable target given the presence of a 'main' file. Starting with tools version 5.4.0 executable targets should be declared as 'executableTarget()'
Done.