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 AcknowKit, reference 0.0.6 (3f4b01), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 21:46:00 UTC.

Swift 6 data race errors: 14

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Kyle-Ye/AcknowKit.git
Reference: 0.0.6
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Kyle-Ye/AcknowKit
 * tag               0.0.6      -> FETCH_HEAD
HEAD is now at 3f4b012 Update License
Cloned https://github.com/Kyle-Ye/AcknowKit.git
Revision (git rev-parse @):
3f4b012df7b8e5836f5b6e0714229ccca06aa78e
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Kyle-Ye/AcknowKit.git at 0.0.6
========================================
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": "acknowkit",
      "name": "AcknowKit",
      "url": "https://github.com/Kyle-Ye/AcknowKit.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/AcknowKit",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/Kyle-Ye/AcknowKit.git
[1/86] Fetching acknowkit
Fetched https://github.com/Kyle-Ye/AcknowKit.git from cache (0.69s)
Creating working copy for https://github.com/Kyle-Ye/AcknowKit.git
Working copy of https://github.com/Kyle-Ye/AcknowKit.git resolved at 0.0.6 (3f4b012)
warning: '.resolve-product-dependencies': dependency 'acknowkit' 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/Kyle-Ye/AcknowKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/12] Compiling AcknowKit AcknowLibraryItem+Preview.swift
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:35:16: warning: static property 'itemComplete' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
33 |     """
34 |
35 |     static let itemComplete = AcknowLibrary.Item(title: "AcknowKit-Full", text: text, author: "Kyle-Ye", license: .mit, repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
   |                |- warning: static property 'itemComplete' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemComplete' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:33:23: warning: static property 'mit' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
31 | extension License {
32 |     /// MIT license
33 |     public static let mit = License(rawValue: "MIT")
   |                       |- warning: static property 'mit' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mit' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// BSD license
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:36:16: warning: static property 'itemEmpty' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static let itemComplete = AcknowLibrary.Item(title: "AcknowKit-Full", text: text, author: "Kyle-Ye", license: .mit, repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
   |                |- warning: static property 'itemEmpty' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemEmpty' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:37:16: warning: static property 'itemText' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
35 |     static let itemComplete = AcknowLibrary.Item(title: "AcknowKit-Full", text: text, author: "Kyle-Ye", license: .mit, repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
   |                |- warning: static property 'itemText' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemText' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
39 |     static let itemLicense = AcknowLibrary.Item(title: "AcknowKit-OnlyLicense", license: .mit)
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:38:16: warning: static property 'itemAuthor' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
   |                |- warning: static property 'itemAuthor' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemAuthor' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     static let itemLicense = AcknowLibrary.Item(title: "AcknowKit-OnlyLicense", license: .mit)
40 |     static let itemRepository = AcknowLibrary.Item(title: "AcknowKit-OnlyRepository", repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:39:16: warning: static property 'itemLicense' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
39 |     static let itemLicense = AcknowLibrary.Item(title: "AcknowKit-OnlyLicense", license: .mit)
   |                |- warning: static property 'itemLicense' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemLicense' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static let itemRepository = AcknowLibrary.Item(title: "AcknowKit-OnlyRepository", repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
41 | }
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:40:16: warning: static property 'itemRepository' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
39 |     static let itemLicense = AcknowLibrary.Item(title: "AcknowKit-OnlyLicense", license: .mit)
40 |     static let itemRepository = AcknowLibrary.Item(title: "AcknowKit-OnlyRepository", repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
   |                |- warning: static property 'itemRepository' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemRepository' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:44:16: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type '[AcknowLibrary.Item]' may have shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension [AcknowLibrary.Item] {
44 |     static let preview: [AcknowLibrary.Item] = [
   |                |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type '[AcknowLibrary.Item]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         .itemComplete,
46 |         .itemText,
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
[4/12] Compiling AcknowKit AcknowLibrary.swift
[5/12] Emitting module AcknowKit
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:33:23: warning: static property 'mit' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
31 | extension License {
32 |     /// MIT license
33 |     public static let mit = License(rawValue: "MIT")
   |                       |- warning: static property 'mit' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mit' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// BSD license
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:36:23: warning: static property 'bsd' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
34 |
35 |     /// BSD license
36 |     public static let bsd = License(rawValue: "BSD")
   |                       |- warning: static property 'bsd' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bsd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Apache license
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:39:23: warning: static property 'apache' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
37 |
38 |     /// Apache license
39 |     public static let apache = License(rawValue: "Apache")
   |                       |- warning: static property 'apache' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'apache' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 |     /// Apache 2.0 license
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:42:23: warning: static property 'apache2' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
40 |
41 |     /// Apache 2.0 license
42 |     public static let apache2 = License(rawValue: "Apache 2.0")
   |                       |- warning: static property 'apache2' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'apache2' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 |     /// Swift license - Apache License v2.0 with Runtime Library Exception
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:45:23: warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
43 |
44 |     /// Swift license - Apache License v2.0 with Runtime Library Exception
45 |     public static let swift = License(
   |                       |- warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'swift' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |         rawValue: "Swift License",
47 |         description: "Apache License v2.0 with Runtime Library Exception",
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:52:23: warning: static property 'gpl' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
50 |
51 |     /// GNU General Public License
52 |     public static let gpl = License(rawValue: "GPL")
   |                       |- warning: static property 'gpl' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'gpl' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibrary+Preview.swift:9:16: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | extension AcknowLibrary {
 9 |     static let preview = AcknowLibrary(items: .preview, header: "Custom Header", footer: "Custom Footer")
   |                |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibrary.swift:11:15: note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
 9 |
10 | /// An acknowledgements library with an array of `AcknowLibraryItem` with optional header and footer texts.
11 | public struct AcknowLibrary {
   |               `- note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
12 |     public init(items: [Item], header: LocalizedStringKey? = nil, footer: LocalizedStringKey? = nil) {
13 |         self.items = items
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:44:16: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type '[AcknowLibrary.Item]' may have shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension [AcknowLibrary.Item] {
44 |     static let preview: [AcknowLibrary.Item] = [
   |                |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type '[AcknowLibrary.Item]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         .itemComplete,
46 |         .itemText,
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:35:16: warning: static property 'itemComplete' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
33 |     """
34 |
35 |     static let itemComplete = AcknowLibrary.Item(title: "AcknowKit-Full", text: text, author: "Kyle-Ye", license: .mit, repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
   |                |- warning: static property 'itemComplete' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemComplete' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:36:16: warning: static property 'itemEmpty' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static let itemComplete = AcknowLibrary.Item(title: "AcknowKit-Full", text: text, author: "Kyle-Ye", license: .mit, repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
   |                |- warning: static property 'itemEmpty' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemEmpty' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:37:16: warning: static property 'itemText' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
35 |     static let itemComplete = AcknowLibrary.Item(title: "AcknowKit-Full", text: text, author: "Kyle-Ye", license: .mit, repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
   |                |- warning: static property 'itemText' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemText' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
39 |     static let itemLicense = AcknowLibrary.Item(title: "AcknowKit-OnlyLicense", license: .mit)
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:38:16: warning: static property 'itemAuthor' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
   |                |- warning: static property 'itemAuthor' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemAuthor' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     static let itemLicense = AcknowLibrary.Item(title: "AcknowKit-OnlyLicense", license: .mit)
40 |     static let itemRepository = AcknowLibrary.Item(title: "AcknowKit-OnlyRepository", repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:39:16: warning: static property 'itemLicense' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
39 |     static let itemLicense = AcknowLibrary.Item(title: "AcknowKit-OnlyLicense", license: .mit)
   |                |- warning: static property 'itemLicense' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemLicense' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     static let itemRepository = AcknowLibrary.Item(title: "AcknowKit-OnlyRepository", repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
41 | }
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:40:16: warning: static property 'itemRepository' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
39 |     static let itemLicense = AcknowLibrary.Item(title: "AcknowKit-OnlyLicense", license: .mit)
40 |     static let itemRepository = AcknowLibrary.Item(title: "AcknowKit-OnlyRepository", repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
   |                |- warning: static property 'itemRepository' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemRepository' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
[6/12] Compiling AcknowKit AcknowLibraryItem.swift
[7/12] Compiling AcknowKit AcknowLibrary+Preview.swift
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibrary+Preview.swift:9:16: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | extension AcknowLibrary {
 9 |     static let preview = AcknowLibrary(items: .preview, header: "Custom Header", footer: "Custom Footer")
   |                |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibrary.swift:11:15: note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
 9 |
10 | /// An acknowledgements library with an array of `AcknowLibraryItem` with optional header and footer texts.
11 | public struct AcknowLibrary {
   |               `- note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
12 |     public init(items: [Item], header: LocalizedStringKey? = nil, footer: LocalizedStringKey? = nil) {
13 |         self.items = items
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:44:16: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type '[AcknowLibrary.Item]' may have shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension [AcknowLibrary.Item] {
44 |     static let preview: [AcknowLibrary.Item] = [
   |                |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type '[AcknowLibrary.Item]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         .itemComplete,
46 |         .itemText,
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
[8/12] Compiling AcknowKit AcknowLibrarySection.swift
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibrary+Preview.swift:9:16: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | extension AcknowLibrary {
 9 |     static let preview = AcknowLibrary(items: .preview, header: "Custom Header", footer: "Custom Footer")
   |                |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibrary.swift:11:15: note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
 9 |
10 | /// An acknowledgements library with an array of `AcknowLibraryItem` with optional header and footer texts.
11 | public struct AcknowLibrary {
   |               `- note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
12 |     public init(items: [Item], header: LocalizedStringKey? = nil, footer: LocalizedStringKey? = nil) {
13 |         self.items = items
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:33:23: warning: static property 'mit' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
31 | extension License {
32 |     /// MIT license
33 |     public static let mit = License(rawValue: "MIT")
   |                       |- warning: static property 'mit' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mit' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// BSD license
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:39:23: warning: static property 'apache' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
37 |
38 |     /// Apache license
39 |     public static let apache = License(rawValue: "Apache")
   |                       |- warning: static property 'apache' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'apache' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 |     /// Apache 2.0 license
[9/12] Compiling AcknowKit License.swift
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:33:23: warning: static property 'mit' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
31 | extension License {
32 |     /// MIT license
33 |     public static let mit = License(rawValue: "MIT")
   |                       |- warning: static property 'mit' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'mit' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// BSD license
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:36:23: warning: static property 'bsd' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
34 |
35 |     /// BSD license
36 |     public static let bsd = License(rawValue: "BSD")
   |                       |- warning: static property 'bsd' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bsd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Apache license
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:39:23: warning: static property 'apache' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
37 |
38 |     /// Apache license
39 |     public static let apache = License(rawValue: "Apache")
   |                       |- warning: static property 'apache' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'apache' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 |     /// Apache 2.0 license
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:42:23: warning: static property 'apache2' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
40 |
41 |     /// Apache 2.0 license
42 |     public static let apache2 = License(rawValue: "Apache 2.0")
   |                       |- warning: static property 'apache2' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'apache2' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 |     /// Swift license - Apache License v2.0 with Runtime Library Exception
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:45:23: warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
43 |
44 |     /// Swift license - Apache License v2.0 with Runtime Library Exception
45 |     public static let swift = License(
   |                       |- warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'swift' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |         rawValue: "Swift License",
47 |         description: "Apache License v2.0 with Runtime Library Exception",
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/License.swift:52:23: warning: static property 'gpl' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | /// A type that represents an open source license type
11 | public struct License: RawRepresentable, Hashable {
   |               `- note: consider making struct 'License' conform to the 'Sendable' protocol
12 |     public init(rawValue: String) {
13 |         self.rawValue = rawValue
   :
50 |
51 |     /// GNU General Public License
52 |     public static let gpl = License(rawValue: "GPL")
   |                       |- warning: static property 'gpl' is not concurrency-safe because non-'Sendable' type 'License' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'gpl' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
[10/12] Compiling AcknowKit AcknowLibraryList.swift
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibrary+Preview.swift:9:16: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | extension AcknowLibrary {
 9 |     static let preview = AcknowLibrary(items: .preview, header: "Custom Header", footer: "Custom Footer")
   |                |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibrary.swift:11:15: note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
 9 |
10 | /// An acknowledgements library with an array of `AcknowLibraryItem` with optional header and footer texts.
11 | public struct AcknowLibrary {
   |               `- note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
12 |     public init(items: [Item], header: LocalizedStringKey? = nil, footer: LocalizedStringKey? = nil) {
13 |         self.items = items
[11/12] Compiling AcknowKit AcknowLibraryItemView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:35:16: warning: static property 'itemComplete' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
33 |     """
34 |
35 |     static let itemComplete = AcknowLibrary.Item(title: "AcknowKit-Full", text: text, author: "Kyle-Ye", license: .mit, repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
   |                |- warning: static property 'itemComplete' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemComplete' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibraryItem+Preview.swift:36:16: warning: static property 'itemEmpty' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     static let itemComplete = AcknowLibrary.Item(title: "AcknowKit-Full", text: text, author: "Kyle-Ye", license: .mit, repository: URL(string: "https://github.com/Kyle-Ye/AcknowKit"))
36 |     static let itemEmpty = AcknowLibrary.Item(title: "AcknowKit-Empty")
   |                |- warning: static property 'itemEmpty' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary.Item' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'itemEmpty' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |     static let itemText = AcknowLibrary.Item(title: "AcknowKit-OnlyText", text: text)
38 |     static let itemAuthor = AcknowLibrary.Item(title: "AcknowKit-OnlyAuthor", author: "Kyle-Ye")
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibraryItem.swift:11:19: note: consider making struct 'Item' conform to the 'Sendable' protocol
 9 |
10 | extension AcknowLibrary {
11 |     public struct Item {
   |                   `- note: consider making struct 'Item' conform to the 'Sendable' protocol
12 |         public init(title: String, text: String? = nil, author: String? = nil, license: License? = nil, repository: URL? = nil) {
13 |             self.title = title
[12/12] Compiling AcknowKit AcknowLibraryForm.swift
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Preview/AcknowLibrary+Preview.swift:9:16: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | extension AcknowLibrary {
 9 |     static let preview = AcknowLibrary(items: .preview, header: "Custom Header", footer: "Custom Footer")
   |                |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'AcknowLibrary' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/AcknowKit/Model/AcknowLibrary.swift:11:15: note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
 9 |
10 | /// An acknowledgements library with an array of `AcknowLibraryItem` with optional header and footer texts.
11 | public struct AcknowLibrary {
   |               `- note: consider making struct 'AcknowLibrary' conform to the 'Sendable' protocol
12 |     public init(items: [Item], header: LocalizedStringKey? = nil, footer: LocalizedStringKey? = nil) {
13 |         self.items = items
Build complete! (21.71s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AcknowKit",
  "name" : "AcknowKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "AcknowKit",
      "targets" : [
        "AcknowKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AcknowKitTests",
      "module_type" : "SwiftTarget",
      "name" : "AcknowKitTests",
      "path" : "Tests/AcknowKitTests",
      "sources" : [
        "AcknowKitTests.swift",
        "AcknowLibraryItemTests.swift"
      ],
      "target_dependencies" : [
        "AcknowKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AcknowKit",
      "module_type" : "SwiftTarget",
      "name" : "AcknowKit",
      "path" : "Sources/AcknowKit",
      "product_memberships" : [
        "AcknowKit"
      ],
      "sources" : [
        "Model/AcknowLibrary.swift",
        "Model/AcknowLibraryItem.swift",
        "Model/License.swift",
        "Preview/AcknowLibrary+Preview.swift",
        "Preview/AcknowLibraryItem+Preview.swift",
        "View/AcknowLibraryForm.swift",
        "View/AcknowLibraryItemView.swift",
        "View/AcknowLibraryList.swift",
        "View/AcknowLibrarySection.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/kyle-ye/acknowkit/0.0.6
Repository:               Kyle-Ye/AcknowKit
Swift version used:       6.0
Target:                   AcknowKit
Extracting symbol information for 'AcknowKit'...
Finished extracting symbol information for 'AcknowKit'. (5.84s)
Building documentation for 'AcknowKit'...
Finished building documentation for 'AcknowKit' (2.44s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/kyle-ye/acknowkit/0.0.6
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.37s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (2.61s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3153] 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.70s)
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
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit DeclarationFragments.swift
[7/53] Compiling SymbolKit Fragment.swift
[8/53] Compiling SymbolKit FragmentKind.swift
[9/53] Compiling SymbolKit FunctionParameter.swift
[10/53] Compiling SymbolKit FunctionSignature.swift
[11/57] Compiling SymbolKit Names.swift
[12/57] Compiling SymbolKit SPI.swift
[13/57] Compiling SymbolKit Snippet.swift
[14/57] Compiling SymbolKit Extension.swift
[15/57] Compiling SymbolKit Identifier.swift
[16/57] Compiling SymbolKit KindIdentifier.swift
[17/57] Compiling SymbolKit Location.swift
[18/57] Compiling SymbolKit Mutability.swift
[19/57] Emitting module SymbolKit
[20/57] Compiling SymbolKit SourceRange.swift
[21/57] Compiling SymbolKit Metadata.swift
[22/57] Compiling SymbolKit Module.swift
[23/57] Compiling SymbolKit OperatingSystem.swift
[24/57] Compiling SymbolKit Platform.swift
[25/57] Compiling SymbolKit Mixin+Equals.swift
[26/57] Compiling SymbolKit Mixin+Hash.swift
[27/57] Compiling SymbolKit Mixin.swift
[28/57] Compiling SymbolKit LineList.swift
[29/57] Compiling SymbolKit Position.swift
[30/57] Compiling SymbolKit SemanticVersion.swift
[31/57] Compiling SymbolKit AccessControl.swift
[32/57] Compiling SymbolKit Availability.swift
[33/57] Compiling SymbolKit AvailabilityItem.swift
[34/57] Compiling SymbolKit Domain.swift
[35/57] Compiling Snippets SnippetParser.swift
[36/57] Emitting module Snippets
[37/57] Compiling Snippets Snippet.swift
[38/57] Compiling SymbolKit Symbol.swift
[39/57] Compiling SymbolKit SymbolKind.swift
[40/57] Compiling SymbolKit SymbolGraph.swift
[41/57] Compiling SymbolKit GraphCollector.swift
[42/57] Compiling SymbolKit GenericConstraint.swift
[43/57] Compiling SymbolKit GenericParameter.swift
[44/57] Compiling SymbolKit Generics.swift
[45/57] Compiling SymbolKit Namespace.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 SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.39s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/11] Compiling AcknowKit AcknowLibraryList.swift
[3/11] Compiling AcknowKit AcknowLibraryForm.swift
[4/11] Compiling AcknowKit AcknowLibrary+Preview.swift
[5/11] Compiling AcknowKit License.swift
[6/11] Compiling AcknowKit AcknowLibraryItemView.swift
[7/11] Compiling AcknowKit AcknowLibrarySection.swift
[8/11] Emitting module AcknowKit
[9/11] Compiling AcknowKit AcknowLibraryItem+Preview.swift
[10/11] Compiling AcknowKit AcknowLibrary.swift
[11/11] Compiling AcknowKit AcknowLibraryItem.swift
Build of target: 'AcknowKit' complete! (1.13s)
    7110
51	/Users/admin/builder/spi-builder-workspace/.docs/kyle-ye/acknowkit/0.0.6
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/kyle-ye/acknowkit/0.0.6
File count: 7110
Doc size:   51.0MB
Preparing doc bundle ...
Uploading prod-kyle-ye-acknowkit-0.0.6-b1461f49.zip to s3://spi-docs-inbox/prod-kyle-ye-acknowkit-0.0.6-b1461f49.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [51%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [91%]
Copying... [100%]
Done.