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

Successful build of FelinePine, reference 1.0.0 (7abf84), with Swift 6.0 for macOS (SPM) on 14 Jan 2025 02:44:54 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

========================================
RunAll
========================================
Builder version: 4.60.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brightdigit/FelinePine.git
Reference: 1.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/brightdigit/FelinePine
 * tag               1.0.0      -> FETCH_HEAD
HEAD is now at 7abf84e V1.0.0 (#22)
Cloned https://github.com/brightdigit/FelinePine.git
Revision (git rev-parse @):
7abf84e0cded44bc99fae106030e8e25e270dae0
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/brightdigit/FelinePine.git at 1.0.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",
  "dependencies": [
    {
      "identity": "felinepine",
      "name": "FelinePine",
      "url": "https://github.com/brightdigit/FelinePine.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/FelinePine",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/brightdigit/FelinePine.git
[1/586] Fetching felinepine
Fetched https://github.com/brightdigit/FelinePine.git from cache (0.91s)
Creating working copy for https://github.com/brightdigit/FelinePine.git
Working copy of https://github.com/brightdigit/FelinePine.git resolved at 1.0.0 (7abf84e)
warning: '.resolve-product-dependencies': dependency 'felinepine' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/brightdigit/FelinePine.git
https://github.com/brightdigit/FelinePine.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FelinePine",
  "name" : "FelinePine",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "FelinePine",
      "targets" : [
        "FelinePine"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FelinePineTests",
      "module_type" : "SwiftTarget",
      "name" : "FelinePineTests",
      "path" : "Tests/FelinePineTests",
      "sources" : [
        "FelinePineTests.swift",
        "LoggingSystemTests.swift",
        "Mocks/MockSystem.swift",
        "Mocks/MockType.swift"
      ],
      "target_dependencies" : [
        "FelinePine"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FelinePine",
      "module_type" : "SwiftTarget",
      "name" : "FelinePine",
      "path" : "Sources/FelinePine",
      "product_memberships" : [
        "FelinePine"
      ],
      "sources" : [
        "Feline.swift",
        "Loggable.swift",
        "Logger+LoggerCategory.swift",
        "LoggingSystem+LoggingSystemRepository.swift",
        "LoggingSystem.swift",
        "NSLocking.swift",
        "Pine.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-5BDAB9E9C0126B9D.txt
[3/10] Compiling FelinePine LoggingSystem.swift
[4/10] Compiling FelinePine Logger+LoggerCategory.swift
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Logger+LoggerCategory.swift:31:10: warning: public import of 'os' was not used in public declarations or inlinable code
29 |
30 | #if canImport(os)
31 |   public import os
   |          `- warning: public import of 'os' was not used in public declarations or inlinable code
32 |
33 |   extension Logger {
[5/10] Compiling FelinePine Loggable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Loggable.swift:44:18: warning: redeclaration of associated type 'LoggingSystemType' from protocol 'Feline' is better expressed as a 'where' clause on the protocol
42 | /// Loggable type for a ``LoggingSystem``.
43 | public protocol Loggable<LoggingSystemType>: FelinePineProtocol {
44 |   associatedtype LoggingSystemType: LoggingSystem
   |                  `- warning: redeclaration of associated type 'LoggingSystemType' from protocol 'Feline' is better expressed as a 'where' clause on the protocol
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Feline.swift:39:18: note: 'LoggingSystemType' declared here
37 | public protocol Feline {
38 |   /// Defined ``LoggingSystemType`` to use for pulling the correct category.
39 |   associatedtype LoggingSystemType: LoggingSystem
   |                  `- note: 'LoggingSystemType' declared here
40 |
41 |   /// Specific category to use for logging.
[6/10] Compiling FelinePine NSLocking.swift
[7/10] Compiling FelinePine Feline.swift
[8/10] Compiling FelinePine LoggingSystem+LoggingSystemRepository.swift
[9/10] Emitting module FelinePine
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Loggable.swift:44:18: warning: redeclaration of associated type 'LoggingSystemType' from protocol 'Feline' is better expressed as a 'where' clause on the protocol
42 | /// Loggable type for a ``LoggingSystem``.
43 | public protocol Loggable<LoggingSystemType>: FelinePineProtocol {
44 |   associatedtype LoggingSystemType: LoggingSystem
   |                  `- warning: redeclaration of associated type 'LoggingSystemType' from protocol 'Feline' is better expressed as a 'where' clause on the protocol
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Feline.swift:39:18: note: 'LoggingSystemType' declared here
37 | public protocol Feline {
38 |   /// Defined ``LoggingSystemType`` to use for pulling the correct category.
39 |   associatedtype LoggingSystemType: LoggingSystem
   |                  `- note: 'LoggingSystemType' declared here
40 |
41 |   /// Specific category to use for logging.
[10/10] Compiling FelinePine Pine.swift
Build complete! (8.84s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FelinePine",
  "name" : "FelinePine",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "FelinePine",
      "targets" : [
        "FelinePine"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FelinePineTests",
      "module_type" : "SwiftTarget",
      "name" : "FelinePineTests",
      "path" : "Tests/FelinePineTests",
      "sources" : [
        "FelinePineTests.swift",
        "LoggingSystemTests.swift",
        "Mocks/MockSystem.swift",
        "Mocks/MockType.swift"
      ],
      "target_dependencies" : [
        "FelinePine"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FelinePine",
      "module_type" : "SwiftTarget",
      "name" : "FelinePine",
      "path" : "Sources/FelinePine",
      "product_memberships" : [
        "FelinePine"
      ],
      "sources" : [
        "Feline.swift",
        "Loggable.swift",
        "Logger+LoggerCategory.swift",
        "LoggingSystem+LoggingSystemRepository.swift",
        "LoggingSystem.swift",
        "NSLocking.swift",
        "Pine.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/brightdigit/felinepine/1.0.0
Repository:               brightdigit/FelinePine
Swift version used:       6.0
Target:                   FelinePine
Extracting symbol information for 'FelinePine'...
Finished extracting symbol information for 'FelinePine'. (2.68s)
Building documentation for 'FelinePine'...
warning: 'Logger' doesn't exist at '/FelinePine/LoggingSystem/subsystem'
  --> ../LoggingSystem.swift:44:35-44:41
42 |   static var identifier: String { get }
43 |
44 +   /// Subsystem to use for each ``Logger``.
45 |   /// By default, this is `Bundle.main.bundleIdentifier`.
46 |   static var subsystem: String { get }
warning: 'Logger' doesn't exist at '/FelinePine/Pine'
  --> ../Pine.swift:39:27-39:33
37 |   /// Defines a shared logger for the type.
38 |   ///
39 +   /// Provides a shared ``Logger`` to use in this type.
   |                           ╰─suggestion: Replace 'Logger' with 'logger'
40 |   public protocol Pine {
41 |     /// Shared logger for Type.Finished building documentation for 'FelinePine' (0.36s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/brightdigit/felinepine/1.0.0
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2048] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.23s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (2.39s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3259] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.31s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.57s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-5BDAB9E9C0126B9D.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Names.swift
[8/57] Compiling SymbolKit SPI.swift
[9/57] Compiling SymbolKit Snippet.swift
[10/57] Compiling SymbolKit Extension.swift
[11/57] Compiling SymbolKit Mixin+Equals.swift
[12/57] Compiling SymbolKit Mixin+Hash.swift
[13/57] Compiling SymbolKit Mixin.swift
[14/57] Compiling SymbolKit LineList.swift
[15/57] Compiling SymbolKit Position.swift
[16/57] Compiling SymbolKit Identifier.swift
[17/57] Compiling SymbolKit KindIdentifier.swift
[18/57] Compiling SymbolKit Location.swift
[19/57] Compiling SymbolKit Mutability.swift
[20/57] Compiling SymbolKit Symbol.swift
[21/57] Compiling SymbolKit SymbolKind.swift
[22/57] Compiling SymbolKit SymbolGraph.swift
[23/57] Compiling SymbolKit GraphCollector.swift
[24/57] Compiling SymbolKit DeclarationFragments.swift
[25/57] Compiling SymbolKit Fragment.swift
[26/57] Compiling SymbolKit FragmentKind.swift
[27/57] Compiling SymbolKit FunctionParameter.swift
[28/57] Compiling SymbolKit FunctionSignature.swift
[29/57] Compiling SymbolKit GenericConstraint.swift
[30/57] Compiling SymbolKit GenericParameter.swift
[31/57] Compiling SymbolKit Generics.swift
[32/57] Compiling SymbolKit Namespace.swift
[33/57] Compiling SymbolKit SemanticVersion.swift
[34/57] Compiling SymbolKit AccessControl.swift
[35/57] Compiling SymbolKit Availability.swift
[36/57] Compiling SymbolKit AvailabilityItem.swift
[37/57] Compiling SymbolKit Domain.swift
[38/57] Compiling SymbolKit SourceRange.swift
[39/57] Compiling SymbolKit Metadata.swift
[40/57] Compiling SymbolKit Module.swift
[41/57] Compiling SymbolKit OperatingSystem.swift
[42/57] Compiling SymbolKit Platform.swift
[43/57] Compiling Snippets SnippetParser.swift
[44/57] Emitting module Snippets
[45/57] Compiling Snippets Snippet.swift
[46/57] Compiling SymbolKit Relationship.swift
[47/57] Compiling SymbolKit RelationshipKind.swift
[48/57] Compiling SymbolKit SourceOrigin.swift
[49/57] Compiling SymbolKit GenericConstraints.swift
[50/57] Compiling SymbolKit Swift.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.85s)
Building for debugging...
[0/1] Write swift-version-5BDAB9E9C0126B9D.txt
[2/9] Compiling FelinePine NSLocking.swift
[3/9] Compiling FelinePine Pine.swift
[4/9] Compiling FelinePine LoggingSystem.swift
[5/9] Compiling FelinePine Logger+LoggerCategory.swift
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Logger+LoggerCategory.swift:31:10: warning: public import of 'os' was not used in public declarations or inlinable code
29 |
30 | #if canImport(os)
31 |   public import os
   |          `- warning: public import of 'os' was not used in public declarations or inlinable code
32 |
33 |   extension Logger {
[6/9] Compiling FelinePine Loggable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Loggable.swift:44:18: warning: redeclaration of associated type 'LoggingSystemType' from protocol 'Feline' is better expressed as a 'where' clause on the protocol
42 | /// Loggable type for a ``LoggingSystem``.
43 | public protocol Loggable<LoggingSystemType>: FelinePineProtocol {
44 |   associatedtype LoggingSystemType: LoggingSystem
   |                  `- warning: redeclaration of associated type 'LoggingSystemType' from protocol 'Feline' is better expressed as a 'where' clause on the protocol
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Feline.swift:39:18: note: 'LoggingSystemType' declared here
37 | public protocol Feline {
38 |   /// Defined ``LoggingSystemType`` to use for pulling the correct category.
39 |   associatedtype LoggingSystemType: LoggingSystem
   |                  `- note: 'LoggingSystemType' declared here
40 |
41 |   /// Specific category to use for logging.
[7/9] Compiling FelinePine Feline.swift
[8/9] Emitting module FelinePine
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Loggable.swift:44:18: warning: redeclaration of associated type 'LoggingSystemType' from protocol 'Feline' is better expressed as a 'where' clause on the protocol
42 | /// Loggable type for a ``LoggingSystem``.
43 | public protocol Loggable<LoggingSystemType>: FelinePineProtocol {
44 |   associatedtype LoggingSystemType: LoggingSystem
   |                  `- warning: redeclaration of associated type 'LoggingSystemType' from protocol 'Feline' is better expressed as a 'where' clause on the protocol
45 | }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/FelinePine/Feline.swift:39:18: note: 'LoggingSystemType' declared here
37 | public protocol Feline {
38 |   /// Defined ``LoggingSystemType`` to use for pulling the correct category.
39 |   associatedtype LoggingSystemType: LoggingSystem
   |                  `- note: 'LoggingSystemType' declared here
40 |
41 |   /// Specific category to use for logging.
[9/9] Compiling FelinePine LoggingSystem+LoggingSystemRepository.swift
Build of target: 'FelinePine' complete! (0.73s)
      90
2	/Users/admin/builder/spi-builder-workspace/.docs/brightdigit/felinepine/1.0.0
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/brightdigit/felinepine/1.0.0
File count: 90
Doc size:   2.0MB
Preparing doc bundle ...
Uploading prod-brightdigit-felinepine-1.0.0-c5010ce1.zip to s3://spi-docs-inbox/prod-brightdigit-felinepine-1.0.0-c5010ce1.zip
Copying... [16%]
Copying... [31%]
Copying... [47%]
Copying... [62%]
Copying... [78%]
Copying... [93%]
Copying... [100%]
Done.