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 Time, reference 1.0.2 (b652fe), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 16:54:06 UTC.

Swift 6 data race errors: 16

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.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/davedelong/time.git
Reference: 1.0.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/davedelong/time
 * tag               1.0.2      -> FETCH_HEAD
HEAD is now at b652fe1 Add test for whole difference issue
Cloned https://github.com/davedelong/time.git
Revision (git rev-parse @):
b652fe17d13dca2ed5f3aa0209b309de4a10821d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/davedelong/time.git at 1.0.2
Fetching https://github.com/apple/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.29s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (0.64s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.28s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.67s)
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/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.3
========================================
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": "time",
      "name": "Time",
      "url": "https://github.com/davedelong/time.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/time",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/davedelong/time.git
[1/4197] Fetching time
Fetched https://github.com/davedelong/time.git from cache (1.30s)
Creating working copy for https://github.com/davedelong/time.git
Working copy of https://github.com/davedelong/time.git resolved at 1.0.2 (b652fe1)
warning: '.resolve-product-dependencies': dependency 'time' 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/davedelong/time.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
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version--7754E27361AE5C74.txt
[5/60] Emitting module Time
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:31:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     @_documentation(visibility: internal)
 30 |     #endif
 31 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 32 |
 33 |     /// This type represents the `.nanosecond` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:42:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
 40 |     @_documentation(visibility: internal)
 41 |     #endif
 42 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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 |     /// This type represents the `.second` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:53:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
 51 |     @_documentation(visibility: internal)
 52 |     #endif
 53 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 54 |
 55 |     /// This type represents the `.minute` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:64:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |     @_documentation(visibility: internal)
 63 |     #endif
 64 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 65 |
 66 |     /// This type represents the `.hour` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:75:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     @_documentation(visibility: internal)
 74 |     #endif
 75 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 76 |
 77 |     /// This type represents the `.day` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:86:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
 84 |     @_documentation(visibility: internal)
 85 |     #endif
 86 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 87 |
 88 |     /// This type represents the `.month` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:97:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     @_documentation(visibility: internal)
 96 |     #endif
 97 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 98 |
 99 |     /// This type represents the `.year` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:108:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
106 |     @_documentation(visibility: internal)
107 |     #endif
108 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
109 |
110 |     /// This type represents the `.era` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:15:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
13 |     ///
14 |     /// Example: `3:12:43 AM Central Standard Time`
15 |     public static let full = FixedFormatStyle(style: .full)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' 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
16 |
17 |     /// A verbose format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:26:23: warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
24 |     ///
25 |     /// Example: `3:12:43 AM CST`
26 |     public static let long = FixedFormatStyle(style: .long)
   |                       |- warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'long' 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
27 |
28 |     /// A simple format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:37:23: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
35 |     ///
36 |     /// Example: `3:12:43 AM`
37 |     public static let medium = FixedFormatStyle(style: .medium)
   |                       |- warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'medium' 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 |
39 |     /// A terse format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:48:23: warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
46 |     ///
47 |     /// Example: `3:12 AM`
48 |     public static let short = FixedFormatStyle(style: .short)
   |                       |- warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'short' 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
49 |
50 |     internal let style: DateFormatter.Style
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/DateFormatterCache.swift:37:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
33 | }
34 |
35 | private class DateFormatterCache {
   |               `- note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
36 |
37 |     static let shared = DateFormatterCache()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' 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 |
39 |     private let lock = NSLock()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:4:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | extension Locale {
 4 |     private static let cache = SimpleCache<String, Locale>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
 5 |
 6 |     static func standard(_ id: String) -> Locale {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:12:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension Calendar {
12 |     private static let cache = SimpleCache<Calendar.Identifier, Calendar>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
13 |
14 |     static func standard(_ id: Calendar.Identifier) -> Calendar {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:20:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | extension TimeZone {
20 |     private static let cache = SimpleCache<String, TimeZone>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
21 |
22 |     static func standard(_ id: String) -> TimeZone {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
[6/66] Compiling Time Formatting.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:4:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | extension Locale {
 4 |     private static let cache = SimpleCache<String, Locale>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
 5 |
 6 |     static func standard(_ id: String) -> Locale {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:12:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension Calendar {
12 |     private static let cache = SimpleCache<Calendar.Identifier, Calendar>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
13 |
14 |     static func standard(_ id: Calendar.Identifier) -> Calendar {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:20:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | extension TimeZone {
20 |     private static let cache = SimpleCache<String, TimeZone>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
21 |
22 |     static func standard(_ id: String) -> TimeZone {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/RegionalClock+Internal.swift:57:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
55 |     internal func wait(until instant: Instant, tolerance: Instant.Duration?, strike: @escaping () -> Void) -> CancellationToken {
56 |         let token = CancellationToken()
57 |         Task {
   |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
58 |             do {
59 |                 try await self.sleep(until: instant, tolerance: tolerance, token: token)
60 |             } catch { }
61 |             if token.isCancelled == false { strike() }
   |                                             `- note: closure captures 'strike' which is accessible to code in the current task
62 |         }
63 |         return token
[7/66] Compiling Time ParsedFormat.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:4:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | extension Locale {
 4 |     private static let cache = SimpleCache<String, Locale>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
 5 |
 6 |     static func standard(_ id: String) -> Locale {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:12:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension Calendar {
12 |     private static let cache = SimpleCache<Calendar.Identifier, Calendar>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
13 |
14 |     static func standard(_ id: Calendar.Identifier) -> Calendar {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:20:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | extension TimeZone {
20 |     private static let cache = SimpleCache<String, TimeZone>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
21 |
22 |     static func standard(_ id: String) -> TimeZone {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/RegionalClock+Internal.swift:57:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
55 |     internal func wait(until instant: Instant, tolerance: Instant.Duration?, strike: @escaping () -> Void) -> CancellationToken {
56 |         let token = CancellationToken()
57 |         Task {
   |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
58 |             do {
59 |                 try await self.sleep(until: instant, tolerance: tolerance, token: token)
60 |             } catch { }
61 |             if token.isCancelled == false { strike() }
   |                                             `- note: closure captures 'strike' which is accessible to code in the current task
62 |         }
63 |         return token
[8/66] Compiling Time Region+Equivalence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:4:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | extension Locale {
 4 |     private static let cache = SimpleCache<String, Locale>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
 5 |
 6 |     static func standard(_ id: String) -> Locale {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:12:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension Calendar {
12 |     private static let cache = SimpleCache<Calendar.Identifier, Calendar>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
13 |
14 |     static func standard(_ id: Calendar.Identifier) -> Calendar {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:20:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | extension TimeZone {
20 |     private static let cache = SimpleCache<String, TimeZone>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
21 |
22 |     static func standard(_ id: String) -> TimeZone {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/RegionalClock+Internal.swift:57:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
55 |     internal func wait(until instant: Instant, tolerance: Instant.Duration?, strike: @escaping () -> Void) -> CancellationToken {
56 |         let token = CancellationToken()
57 |         Task {
   |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
58 |             do {
59 |                 try await self.sleep(until: instant, tolerance: tolerance, token: token)
60 |             } catch { }
61 |             if token.isCancelled == false { strike() }
   |                                             `- note: closure captures 'strike' which is accessible to code in the current task
62 |         }
63 |         return token
[9/66] Compiling Time RegionalClock+Internal.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:4:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | extension Locale {
 4 |     private static let cache = SimpleCache<String, Locale>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
 5 |
 6 |     static func standard(_ id: String) -> Locale {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:12:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension Calendar {
12 |     private static let cache = SimpleCache<Calendar.Identifier, Calendar>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
13 |
14 |     static func standard(_ id: Calendar.Identifier) -> Calendar {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:20:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | extension TimeZone {
20 |     private static let cache = SimpleCache<String, TimeZone>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
21 |
22 |     static func standard(_ id: String) -> TimeZone {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/RegionalClock+Internal.swift:57:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
55 |     internal func wait(until instant: Instant, tolerance: Instant.Duration?, strike: @escaping () -> Void) -> CancellationToken {
56 |         let token = CancellationToken()
57 |         Task {
   |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
58 |             do {
59 |                 try await self.sleep(until: instant, tolerance: tolerance, token: token)
60 |             } catch { }
61 |             if token.isCancelled == false { strike() }
   |                                             `- note: closure captures 'strike' which is accessible to code in the current task
62 |         }
63 |         return token
[10/66] Compiling Time SimpleCache.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:4:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | extension Locale {
 4 |     private static let cache = SimpleCache<String, Locale>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
 5 |
 6 |     static func standard(_ id: String) -> Locale {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:12:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension Calendar {
12 |     private static let cache = SimpleCache<Calendar.Identifier, Calendar>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
13 |
14 |     static func standard(_ id: Calendar.Identifier) -> Calendar {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:20:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | extension TimeZone {
20 |     private static let cache = SimpleCache<String, TimeZone>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
21 |
22 |     static func standard(_ id: String) -> TimeZone {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/RegionalClock+Internal.swift:57:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
55 |     internal func wait(until instant: Instant, tolerance: Instant.Duration?, strike: @escaping () -> Void) -> CancellationToken {
56 |         let token = CancellationToken()
57 |         Task {
   |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
58 |             do {
59 |                 try await self.sleep(until: instant, tolerance: tolerance, token: token)
60 |             } catch { }
61 |             if token.isCancelled == false { strike() }
   |                                             `- note: closure captures 'strike' which is accessible to code in the current task
62 |         }
63 |         return token
[11/66] Compiling Time Snapshot.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:4:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | extension Locale {
 4 |     private static let cache = SimpleCache<String, Locale>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, Locale>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
 5 |
 6 |     static func standard(_ id: String) -> Locale {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:12:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | extension Calendar {
12 |     private static let cache = SimpleCache<Calendar.Identifier, Calendar>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<Calendar.Identifier, Calendar>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
13 |
14 |     static func standard(_ id: Calendar.Identifier) -> Calendar {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/SimpleCache.swift:20:24: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | extension TimeZone {
20 |     private static let cache = SimpleCache<String, TimeZone>()
   |                        |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SimpleCache<String, TimeZone>' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'cache' 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
21 |
22 |     static func standard(_ id: String) -> TimeZone {
   :
25 | }
26 |
27 | private class SimpleCache<Key: Hashable, T> {
   |               `- note: generic class 'SimpleCache' does not conform to the 'Sendable' protocol
28 |
29 |     private var storage = Dictionary<Key, T>()
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/RegionalClock+Internal.swift:57:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
55 |     internal func wait(until instant: Instant, tolerance: Instant.Duration?, strike: @escaping () -> Void) -> CancellationToken {
56 |         let token = CancellationToken()
57 |         Task {
   |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
58 |             do {
59 |                 try await self.sleep(until: instant, tolerance: tolerance, token: token)
60 |             } catch { }
61 |             if token.isCancelled == false { strike() }
   |                                             `- note: closure captures 'strike' which is accessible to code in the current task
62 |         }
63 |         return token
[12/66] Compiling Time Time+Calendar.swift
[13/66] Compiling Time Time+CalendarComponent.swift
[14/66] Compiling Time Time+DateComponents.swift
[15/66] Compiling Time Time+Duration.swift
[16/66] Compiling Time Time+Locale.swift
[17/66] Compiling Time Time+TimeZone.swift
[18/66] Compiling Time RegionalClock+Strikes.swift
[19/66] Compiling Time RegionalClock.swift
[20/66] Compiling Time Fixed+Codable.swift
[21/66] Compiling Time Fixed+Components.swift
[22/66] Compiling Time Fixed+Conversion.swift
[23/66] Compiling Time Fixed+Day.swift
[24/66] Compiling Time Region.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:31:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     @_documentation(visibility: internal)
 30 |     #endif
 31 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 32 |
 33 |     /// This type represents the `.nanosecond` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:42:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
 40 |     @_documentation(visibility: internal)
 41 |     #endif
 42 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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 |     /// This type represents the `.second` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:53:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
 51 |     @_documentation(visibility: internal)
 52 |     #endif
 53 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 54 |
 55 |     /// This type represents the `.minute` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:64:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |     @_documentation(visibility: internal)
 63 |     #endif
 64 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 65 |
 66 |     /// This type represents the `.hour` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:75:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     @_documentation(visibility: internal)
 74 |     #endif
 75 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 76 |
 77 |     /// This type represents the `.day` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:86:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
 84 |     @_documentation(visibility: internal)
 85 |     #endif
 86 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 87 |
 88 |     /// This type represents the `.month` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:97:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     @_documentation(visibility: internal)
 96 |     #endif
 97 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 98 |
 99 |     /// This type represents the `.year` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:108:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
106 |     @_documentation(visibility: internal)
107 |     #endif
108 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
109 |
110 |     /// This type represents the `.era` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
[25/66] Compiling Time TimeError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:31:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     @_documentation(visibility: internal)
 30 |     #endif
 31 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 32 |
 33 |     /// This type represents the `.nanosecond` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:42:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
 40 |     @_documentation(visibility: internal)
 41 |     #endif
 42 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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 |     /// This type represents the `.second` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:53:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
 51 |     @_documentation(visibility: internal)
 52 |     #endif
 53 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 54 |
 55 |     /// This type represents the `.minute` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:64:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |     @_documentation(visibility: internal)
 63 |     #endif
 64 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 65 |
 66 |     /// This type represents the `.hour` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:75:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     @_documentation(visibility: internal)
 74 |     #endif
 75 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 76 |
 77 |     /// This type represents the `.day` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:86:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
 84 |     @_documentation(visibility: internal)
 85 |     #endif
 86 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 87 |
 88 |     /// This type represents the `.month` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:97:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     @_documentation(visibility: internal)
 96 |     #endif
 97 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 98 |
 99 |     /// This type represents the `.year` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:108:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
106 |     @_documentation(visibility: internal)
107 |     #endif
108 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
109 |
110 |     /// This type represents the `.era` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
[26/66] Compiling Time Units.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:31:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     @_documentation(visibility: internal)
 30 |     #endif
 31 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 32 |
 33 |     /// This type represents the `.nanosecond` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:42:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
 40 |     @_documentation(visibility: internal)
 41 |     #endif
 42 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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 |     /// This type represents the `.second` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:53:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
 51 |     @_documentation(visibility: internal)
 52 |     #endif
 53 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 54 |
 55 |     /// This type represents the `.minute` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:64:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |     @_documentation(visibility: internal)
 63 |     #endif
 64 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 65 |
 66 |     /// This type represents the `.hour` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:75:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     @_documentation(visibility: internal)
 74 |     #endif
 75 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 76 |
 77 |     /// This type represents the `.day` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:86:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
 84 |     @_documentation(visibility: internal)
 85 |     #endif
 86 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 87 |
 88 |     /// This type represents the `.month` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:97:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     @_documentation(visibility: internal)
 96 |     #endif
 97 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 98 |
 99 |     /// This type represents the `.year` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:108:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
106 |     @_documentation(visibility: internal)
107 |     #endif
108 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
109 |
110 |     /// This type represents the `.era` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
[27/66] Compiling Time Clocks.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:31:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     @_documentation(visibility: internal)
 30 |     #endif
 31 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 32 |
 33 |     /// This type represents the `.nanosecond` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:42:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
 40 |     @_documentation(visibility: internal)
 41 |     #endif
 42 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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 |     /// This type represents the `.second` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:53:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
 51 |     @_documentation(visibility: internal)
 52 |     #endif
 53 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 54 |
 55 |     /// This type represents the `.minute` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:64:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |     @_documentation(visibility: internal)
 63 |     #endif
 64 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 65 |
 66 |     /// This type represents the `.hour` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:75:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     @_documentation(visibility: internal)
 74 |     #endif
 75 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 76 |
 77 |     /// This type represents the `.day` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:86:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
 84 |     @_documentation(visibility: internal)
 85 |     #endif
 86 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 87 |
 88 |     /// This type represents the `.month` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:97:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     @_documentation(visibility: internal)
 96 |     #endif
 97 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 98 |
 99 |     /// This type represents the `.year` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:108:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
106 |     @_documentation(visibility: internal)
107 |     #endif
108 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
109 |
110 |     /// This type represents the `.era` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
[28/66] Compiling Time RegionalClock+CurrentValues.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:31:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     @_documentation(visibility: internal)
 30 |     #endif
 31 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 32 |
 33 |     /// This type represents the `.nanosecond` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:42:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
 40 |     @_documentation(visibility: internal)
 41 |     #endif
 42 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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 |     /// This type represents the `.second` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:53:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
 51 |     @_documentation(visibility: internal)
 52 |     #endif
 53 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 54 |
 55 |     /// This type represents the `.minute` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:64:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |     @_documentation(visibility: internal)
 63 |     #endif
 64 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 65 |
 66 |     /// This type represents the `.hour` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:75:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     @_documentation(visibility: internal)
 74 |     #endif
 75 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 76 |
 77 |     /// This type represents the `.day` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:86:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
 84 |     @_documentation(visibility: internal)
 85 |     #endif
 86 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 87 |
 88 |     /// This type represents the `.month` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:97:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     @_documentation(visibility: internal)
 96 |     #endif
 97 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 98 |
 99 |     /// This type represents the `.year` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:108:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
106 |     @_documentation(visibility: internal)
107 |     #endif
108 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
109 |
110 |     /// This type represents the `.era` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
[29/66] Compiling Time RegionalClock+Implementations.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:31:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     @_documentation(visibility: internal)
 30 |     #endif
 31 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Nanosecond>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 32 |
 33 |     /// This type represents the `.nanosecond` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:42:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
 40 |     @_documentation(visibility: internal)
 41 |     #endif
 42 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Second>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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 |     /// This type represents the `.second` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:53:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
 51 |     @_documentation(visibility: internal)
 52 |     #endif
 53 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Minute>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 54 |
 55 |     /// This type represents the `.minute` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:64:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |     @_documentation(visibility: internal)
 63 |     #endif
 64 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Hour>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 65 |
 66 |     /// This type represents the `.hour` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:75:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
 73 |     @_documentation(visibility: internal)
 74 |     #endif
 75 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Day>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 76 |
 77 |     /// This type represents the `.day` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:86:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
 84 |     @_documentation(visibility: internal)
 85 |     #endif
 86 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Month>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 87 |
 88 |     /// This type represents the `.month` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:97:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |     @_documentation(visibility: internal)
 96 |     #endif
 97 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Year>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
 98 |
 99 |     /// This type represents the `.year` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
/Users/admin/builder/spi-builder-workspace/Sources/Time/2-Core Calendar/Units.swift:108:23: warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
106 |     @_documentation(visibility: internal)
107 |     #endif
108 |     public static let _closer: ProtocolCloser<Self> = ProtocolCloser()
    |                       |- warning: static property '_closer' is not concurrency-safe because non-'Sendable' type 'ProtocolCloser<Era>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_closer' 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
109 |
110 |     /// This type represents the `.era` calendar component
    :
200 | @_documentation(visibility: internal)
201 | #endif
202 | public struct ProtocolCloser<U: Unit> {
    |               `- note: consider making generic struct 'ProtocolCloser' conform to the 'Sendable' protocol
203 |     fileprivate init() { }
204 | }
[30/66] Compiling Time Fixed+FormatTemplate.swift
[31/66] Compiling Time FixedFormat.swift
[32/66] Compiling Time FormatTemplates.swift
[33/66] Compiling Time PartialFormatting-1Unit.swift
[34/66] Compiling Time PartialFormatting-2Units.swift
[35/66] Compiling Time PartialFormatting-3Units.swift
[36/66] Compiling Time Epoch.swift
[37/66] Compiling Time Instant.swift
[38/66] Compiling Time SISeconds.swift
[39/66] Compiling Time Relations+Fixed.swift
[40/66] Compiling Time Relations+Ranges.swift
[41/66] Compiling Time Relations.swift
[42/66] Compiling Time Fixed+Rounding.swift
[43/66] Compiling Time Fixed+Truncation.swift
[44/66] Compiling Time Fixed+Year.swift
[45/66] Compiling Time Fixed.swift
[46/66] Compiling Time Fixed+TimeDifference.swift
[47/66] Compiling Time TimeDifference+Invalid.swift
[48/66] Compiling Time TimeDifference.swift
[49/66] Compiling Time Fixed+Equatable.swift
[50/66] Compiling Time Fixed+Era.swift
[51/66] Compiling Time Fixed+Hour.swift
[52/66] Compiling Time Fixed+Initializers.swift
[53/66] Compiling Time Fixed+Minute.swift
[54/66] Compiling Time Fixed+Month.swift
[55/66] Compiling Time Fixed+SafeAdjustment.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:15:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
13 |     ///
14 |     /// Example: `3:12:43 AM Central Standard Time`
15 |     public static let full = FixedFormatStyle(style: .full)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' 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
16 |
17 |     /// A verbose format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:26:23: warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
24 |     ///
25 |     /// Example: `3:12:43 AM CST`
26 |     public static let long = FixedFormatStyle(style: .long)
   |                       |- warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'long' 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
27 |
28 |     /// A simple format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:37:23: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
35 |     ///
36 |     /// Example: `3:12:43 AM`
37 |     public static let medium = FixedFormatStyle(style: .medium)
   |                       |- warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'medium' 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 |
39 |     /// A terse format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:48:23: warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
46 |     ///
47 |     /// Example: `3:12 AM`
48 |     public static let short = FixedFormatStyle(style: .short)
   |                       |- warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'short' 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
49 |
50 |     internal let style: DateFormatter.Style
[56/66] Compiling Time Fixed+UnsafeAdjustment.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:15:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
13 |     ///
14 |     /// Example: `3:12:43 AM Central Standard Time`
15 |     public static let full = FixedFormatStyle(style: .full)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' 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
16 |
17 |     /// A verbose format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:26:23: warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
24 |     ///
25 |     /// Example: `3:12:43 AM CST`
26 |     public static let long = FixedFormatStyle(style: .long)
   |                       |- warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'long' 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
27 |
28 |     /// A simple format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:37:23: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
35 |     ///
36 |     /// Example: `3:12:43 AM`
37 |     public static let medium = FixedFormatStyle(style: .medium)
   |                       |- warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'medium' 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 |
39 |     /// A terse format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:48:23: warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
46 |     ///
47 |     /// Example: `3:12 AM`
48 |     public static let short = FixedFormatStyle(style: .short)
   |                       |- warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'short' 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
49 |
50 |     internal let style: DateFormatter.Style
[57/66] Compiling Time Fixed+BoundaryAlignedSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:15:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
13 |     ///
14 |     /// Example: `3:12:43 AM Central Standard Time`
15 |     public static let full = FixedFormatStyle(style: .full)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' 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
16 |
17 |     /// A verbose format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:26:23: warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
24 |     ///
25 |     /// Example: `3:12:43 AM CST`
26 |     public static let long = FixedFormatStyle(style: .long)
   |                       |- warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'long' 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
27 |
28 |     /// A simple format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:37:23: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
35 |     ///
36 |     /// Example: `3:12:43 AM`
37 |     public static let medium = FixedFormatStyle(style: .medium)
   |                       |- warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'medium' 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 |
39 |     /// A terse format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:48:23: warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
46 |     ///
47 |     /// Example: `3:12 AM`
48 |     public static let short = FixedFormatStyle(style: .short)
   |                       |- warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'short' 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
49 |
50 |     internal let style: DateFormatter.Style
[58/66] Compiling Time Fixed+Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:15:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
13 |     ///
14 |     /// Example: `3:12:43 AM Central Standard Time`
15 |     public static let full = FixedFormatStyle(style: .full)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' 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
16 |
17 |     /// A verbose format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:26:23: warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
24 |     ///
25 |     /// Example: `3:12:43 AM CST`
26 |     public static let long = FixedFormatStyle(style: .long)
   |                       |- warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'long' 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
27 |
28 |     /// A simple format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:37:23: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
35 |     ///
36 |     /// Example: `3:12:43 AM`
37 |     public static let medium = FixedFormatStyle(style: .medium)
   |                       |- warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'medium' 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 |
39 |     /// A terse format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:48:23: warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
46 |     ///
47 |     /// Example: `3:12 AM`
48 |     public static let short = FixedFormatStyle(style: .short)
   |                       |- warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'short' 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
49 |
50 |     internal let style: DateFormatter.Style
[59/66] Compiling Time Fixed+FormatRaw.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:15:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
13 |     ///
14 |     /// Example: `3:12:43 AM Central Standard Time`
15 |     public static let full = FixedFormatStyle(style: .full)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' 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
16 |
17 |     /// A verbose format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:26:23: warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
24 |     ///
25 |     /// Example: `3:12:43 AM CST`
26 |     public static let long = FixedFormatStyle(style: .long)
   |                       |- warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'long' 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
27 |
28 |     /// A simple format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:37:23: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
35 |     ///
36 |     /// Example: `3:12:43 AM`
37 |     public static let medium = FixedFormatStyle(style: .medium)
   |                       |- warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'medium' 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 |
39 |     /// A terse format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:48:23: warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
46 |     ///
47 |     /// Example: `3:12 AM`
48 |     public static let short = FixedFormatStyle(style: .short)
   |                       |- warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'short' 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
49 |
50 |     internal let style: DateFormatter.Style
[60/66] Compiling Time Fixed+FormatStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:15:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
13 |     ///
14 |     /// Example: `3:12:43 AM Central Standard Time`
15 |     public static let full = FixedFormatStyle(style: .full)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' 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
16 |
17 |     /// A verbose format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:26:23: warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
24 |     ///
25 |     /// Example: `3:12:43 AM CST`
26 |     public static let long = FixedFormatStyle(style: .long)
   |                       |- warning: static property 'long' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'long' 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
27 |
28 |     /// A simple format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:37:23: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
35 |     ///
36 |     /// Example: `3:12:43 AM`
37 |     public static let medium = FixedFormatStyle(style: .medium)
   |                       |- warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'medium' 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 |
39 |     /// A terse format style.
/Users/admin/builder/spi-builder-workspace/Sources/Time/8-Formatting/Fixed+FormatStyle.swift:48:23: warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// A convenient way to specify general formats for fixed values.
 4 | public struct FixedFormatStyle: Hashable {
   |               `- note: consider making struct 'FixedFormatStyle' conform to the 'Sendable' protocol
 5 |
 6 |     /// An extremely verbose format style.
   :
46 |     ///
47 |     /// Example: `3:12 AM`
48 |     public static let short = FixedFormatStyle(style: .short)
   |                       |- warning: static property 'short' is not concurrency-safe because non-'Sendable' type 'FixedFormatStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'short' 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
49 |
50 |     internal let style: DateFormatter.Style
[61/66] Compiling Time PartialFormatting-4Units.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/DateFormatterCache.swift:37:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
33 | }
34 |
35 | private class DateFormatterCache {
   |               `- note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
36 |
37 |     static let shared = DateFormatterCache()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' 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 |
39 |     private let lock = NSLock()
[62/66] Compiling Time PartialFormatting-Others.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/DateFormatterCache.swift:37:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
33 | }
34 |
35 | private class DateFormatterCache {
   |               `- note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
36 |
37 |     static let shared = DateFormatterCache()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' 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 |
39 |     private let lock = NSLock()
[63/66] Compiling Time Fixed+Parsing.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/DateFormatterCache.swift:37:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
33 | }
34 |
35 | private class DateFormatterCache {
   |               `- note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
36 |
37 |     static let shared = DateFormatterCache()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' 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 |
39 |     private let lock = NSLock()
[64/66] Compiling Time Assertions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/DateFormatterCache.swift:37:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
33 | }
34 |
35 | private class DateFormatterCache {
   |               `- note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
36 |
37 |     static let shared = DateFormatterCache()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' 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 |
39 |     private let lock = NSLock()
[65/66] Compiling Time DateFormatterCache.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/DateFormatterCache.swift:37:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
33 | }
34 |
35 | private class DateFormatterCache {
   |               `- note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
36 |
37 |     static let shared = DateFormatterCache()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' 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 |
39 |     private let lock = NSLock()
[66/66] Compiling Time Fixed+Internal.swift
/Users/admin/builder/spi-builder-workspace/Sources/Time/Internals/DateFormatterCache.swift:37:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
33 | }
34 |
35 | private class DateFormatterCache {
   |               `- note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
36 |
37 |     static let shared = DateFormatterCache()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' 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 |
39 |     private let lock = NSLock()
Build complete! (33.99s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "Time",
  "name" : "Time",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "Time",
      "targets" : [
        "Time"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TimeTests",
      "module_type" : "SwiftTarget",
      "name" : "TimeTests",
      "path" : "Tests/TimeTests",
      "sources" : [
        "ClockStrikeTests.swift",
        "ClockTests.swift",
        "FixedFormattingTests.swift",
        "FixedTests.swift",
        "LinuxIssues.swift",
        "RegionTests.swift",
        "RelationTests.swift",
        "ReportedBugs.swift",
        "SerializationTests.swift",
        "ThreadingTests.swift",
        "XCTAssert.swift",
        "XCTestCase+Convenience.swift"
      ],
      "target_dependencies" : [
        "Time"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Time",
      "module_type" : "SwiftTarget",
      "name" : "Time",
      "path" : "Sources/Time",
      "product_memberships" : [
        "Time"
      ],
      "sources" : [
        "1-Core Types/Epoch.swift",
        "1-Core Types/Instant.swift",
        "1-Core Types/SISeconds.swift",
        "10-Relations/Relations+Fixed.swift",
        "10-Relations/Relations+Ranges.swift",
        "10-Relations/Relations.swift",
        "11-Rounding/Fixed+Rounding.swift",
        "2-Core Calendar/Region.swift",
        "2-Core Calendar/TimeError.swift",
        "2-Core Calendar/Units.swift",
        "3-RegionalClock/Clocks.swift",
        "3-RegionalClock/RegionalClock+CurrentValues.swift",
        "3-RegionalClock/RegionalClock+Implementations.swift",
        "3-RegionalClock/RegionalClock+Strikes.swift",
        "3-RegionalClock/RegionalClock.swift",
        "4-Fixed Values/Fixed+Codable.swift",
        "4-Fixed Values/Fixed+Components.swift",
        "4-Fixed Values/Fixed+Conversion.swift",
        "4-Fixed Values/Fixed+Day.swift",
        "4-Fixed Values/Fixed+Equatable.swift",
        "4-Fixed Values/Fixed+Era.swift",
        "4-Fixed Values/Fixed+Hour.swift",
        "4-Fixed Values/Fixed+Initializers.swift",
        "4-Fixed Values/Fixed+Minute.swift",
        "4-Fixed Values/Fixed+Month.swift",
        "4-Fixed Values/Fixed+Truncation.swift",
        "4-Fixed Values/Fixed+Year.swift",
        "4-Fixed Values/Fixed.swift",
        "5-Differences/Fixed+TimeDifference.swift",
        "5-Differences/TimeDifference+Invalid.swift",
        "5-Differences/TimeDifference.swift",
        "6-Adjustments/Fixed+SafeAdjustment.swift",
        "6-Adjustments/Fixed+UnsafeAdjustment.swift",
        "7-Sequences/Fixed+BoundaryAlignedSequence.swift",
        "7-Sequences/Fixed+Sequence.swift",
        "8-Formatting/Fixed+FormatRaw.swift",
        "8-Formatting/Fixed+FormatStyle.swift",
        "8-Formatting/Fixed+FormatTemplate.swift",
        "8-Formatting/FixedFormat.swift",
        "8-Formatting/FormatTemplates.swift",
        "8-Formatting/PartialFormatting-1Unit.swift",
        "8-Formatting/PartialFormatting-2Units.swift",
        "8-Formatting/PartialFormatting-3Units.swift",
        "8-Formatting/PartialFormatting-4Units.swift",
        "8-Formatting/PartialFormatting-Others.swift",
        "9-Parsing/Fixed+Parsing.swift",
        "Internals/Assertions.swift",
        "Internals/DateFormatterCache.swift",
        "Internals/Fixed+Internal.swift",
        "Internals/Formatting.swift",
        "Internals/ParsedFormat.swift",
        "Internals/Region+Equivalence.swift",
        "Internals/RegionalClock+Internal.swift",
        "Internals/SimpleCache.swift",
        "Internals/Snapshot.swift",
        "Internals/Time+Calendar.swift",
        "Internals/Time+CalendarComponent.swift",
        "Internals/Time+DateComponents.swift",
        "Internals/Time+Duration.swift",
        "Internals/Time+Locale.swift",
        "Internals/Time+TimeZone.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/davedelong/time/1.0.2
Repository:               davedelong/time
Swift version used:       6.0
        .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0")
Target:                   Time
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'Time'...
Finished extracting symbol information for 'Time'. (4.28s)
Building documentation for 'Time'...
warning: Parameter 'referenceDate' not found in type method declaration
  --> ../3-RegionalClock/Clocks.swift:20:21-20:34
18 |     /// Create a ``RegionalClock`` with a custom start time and flow rate.
19 |     ///
20 +     /// - Parameter referenceDate: The instantaneous "now" from which the clock will start counting.
   |                     ╰─suggestion: Replace 'referenceDate' with 'referenceInstant'
21 |     /// - Parameter rate: The rate at which time progresses in the clock, relative to the supplied calendar.
22 |     ///   `1.0` (the default) means one second on the system clock correlates to a second passing in the clock.
warning: Parameter 'referenceInstant' is missing documentation
  --> ../3-RegionalClock/Clocks.swift:25:9-25:9
23 |     ///   `2.0` would mean that every second elapsing on the system clock would be 2 seconds on this clock (ie, time progresses twice as fast).
24 |     /// - Parameter region: The ``Region`` in which calendar values are produced.
25 +     ///
26 |     /// - Note: The `rate` must be strictly greater than `0`. A value less than or equal to `0` will cause a crash.
27 |     public static func custom(startingFrom referenceInstant: Instant, rate: Double = 1.0, region: Region = .autoupdatingCurrent) -> any RegionalClock {
warning: Parameter 'unit' is missing documentation
  --> ../3-RegionalClock/RegionalClock+Strikes.swift:12:85-12:85
10 |     /// - Parameters:
11 |     ///   - interval: The amount of time that should elapse before the next strike occurs.
   |           ╰─suggestion: Document 'unit' parameter
12 +     ///   - startTime: The time to start counting at before the first strike occurs.
13 |     /// - Returns: A ``ClockStrikes`` which emits fixed time values at the moment of each strike.
14 |     public func strike<U: Unit>(producing unit: U.Type = U.self,
warning: External name 'every' used to document parameter
  --> ../3-RegionalClock/RegionalClock+Strikes.swift:28:13-28:18
26 |     ///
27 |     /// - Parameters:
28 +     ///   - every: The unit of time that should elapse before the next strike occurs.
   |             ╰─suggestion: Replace 'every' with 'unit'
29 |     ///   - startTime: The time to start counting at before the first strike occurs.
30 |     /// - Returns: A ``ClockStrikes`` which emits fixed time values at the moment of each strike.
warning: Parameter 'time' not found in instance method declaration
  --> ../3-RegionalClock/RegionalClock+Strikes.swift:49:11-50:9
47 |     ///   - matches: A closure which is called when each prospective unit elapses to determine
48 |     ///   whether it should be published.
49 +     ///   - time: A prospective time value.
   |           ╰─suggestion: Remove 'time' parameter documentation
50 +     ///
51 |     /// - Returns: A ``ClockStrikes`` which emits fixed time values at the moment of each strike.
52 |     public func strike<U: Unit>(producing unit: U.Type = U.self,
warning: Parameter 'unit' is missing documentation
  --> ../3-RegionalClock/RegionalClock+Strikes.swift:50:9-50:9
48 |     ///   whether it should be published.
49 |     ///   - time: A prospective time value.
50 +     ///
51 |     /// - Returns: A ``ClockStrikes`` which emits fixed time values at the moment of each strike.
52 |     public func strike<U: Unit>(producing unit: U.Type = U.self,
warning: External name 'by' used to document parameter
  --> ../3-RegionalClock/RegionalClock.swift:56:21-56:23
54 |     /// Offset a clock.
55 |     ///
56 +     /// - Parameter by: the `SISeconds` by which to create an offset clock.
   |                     ╰─suggestion: Replace 'by' with 'delta'
57 |     /// - Returns: A new `RegionalClock` that is offset by the specified `SISeconds` from the receiver.
58 |     public func offset(by delta: SISeconds) -> any RegionalClock {
warning: External name 'by' used to document parameter
  --> ../3-RegionalClock/RegionalClock.swift:64:21-64:23
62 |     /// Scale a clock.
63 |     ///
64 +     /// - Parameter by: the `Double` by which to speed up or slow down time
   |                     ╰─suggestion: Replace 'by' with 'factor'
65 |     /// - Returns: A new `RegionalClock` that is scaled from the receiver by the specified `Double` factor.
66 |     public func scaled(by factor: Double) -> any RegionalClock {
warning: External name 'after' used to document parameter
  --> ../3-RegionalClock/RegionalClock.swift:75:21-75:26
73 |     /// Retrieve the `Instant` of the next daylight saving time transition on this Clock.
74 |     ///
75 +     /// - Parameter after: The `Instant` after which to find the next daylight saving time transition. If omitted, it will be assumed to be the current instant.
   |                     ╰─suggestion: Replace 'after' with 'instant'
76 |     /// - Returns: The `Instant` of the next daylight saving time transition, or `nil` if the time zone does not currently observe daylight saving time.
77 |     public func nextDaylightSavingTimeTransition(after instant: Instant? = nil) -> Instant? {
warning: Parameter 'region' not found in instance method declaration
   --> ../3-RegionalClock/RegionalClock.swift:114:21-114:27
112 |     /// Convert a clock to a new region.
113 |     ///
114 +     /// - Parameter region: The `Region` of the new `RegionalClock`.
    |                     ╰─suggestion: Replace 'region' with 'newRegion'
115 |     /// - Returns: A new `RegionalClock` that reports values in the specified `Region`.
116 |     public func converted(to newRegion: Region) -> any RegionalClock {
warning: Parameter 'newRegion' is missing documentation
   --> ../3-RegionalClock/RegionalClock.swift:114:69-114:69
112 |     /// Convert a clock to a new region.
113 |     ///
114 +     /// - Parameter region: The `Region` of the new `RegionalClock`.
    |                                                                     ╰─suggestion: Document 'newRegion' parameter
115 |     /// - Returns: A new `RegionalClock` that reports values in the specified `Region`.
116 |     public func converted(to newRegion: Region) -> any RegionalClock {
warning: Parameter 'region' not found in instance method declaration
  --> ../4-Fixed Values/Fixed+Conversion.swift:39:13-39:19
37 |     ///
38 |     /// - Parameters:
39 +     ///   - region: The region to which the new fixed value should belong
   |             ╰─suggestion: Replace 'region' with 'newRegion'
40 |     ///   - behavior: The ``ConversionBehavior`` specifying how the conversion should happen
41 |     /// - Returns: A new fixed value that has been converted to the specified time zone.
warning: Parameter 'newRegion' is missing documentation
  --> ../4-Fixed Values/Fixed+Conversion.swift:40:93-40:93
38 |     /// - Parameters:
39 |     ///   - region: The region to which the new fixed value should belong
40 +     ///   - behavior: The ``ConversionBehavior`` specifying how the conversion should happen
   |           ╰─suggestion: Document 'newRegion' parameter
41 |     /// - Returns: A new fixed value that has been converted to the specified time zone.
42 |     /// - Throws: A ``TimeError`` if the conversion could not be completed
warning: Parameter 'month' not found in instance method declaration
  --> ../4-Fixed Values/Fixed+Year.swift:25:9-25:67
23 |
24 |     /// Retrieve a month in this year with a specific number
25 +     /// - Parameter month: The number of the month (`1`, `8`, etc)
   |         ╰─suggestion: Remove 'month' parameter documentation
26 |     /// - Returns: A `Fixed<Month>` whose `.month` is equal to the provided `number`, or `nil` if no such month can be found
27 |     public func month(_ number: Int) -> Fixed<Month>? { return numbered(number) }
warning: Parameter 'number' is missing documentation
  --> ../4-Fixed Values/Fixed+Year.swift:25:67-25:67
23 |
24 |     /// Retrieve a month in this year with a specific number
25 +     /// - Parameter month: The number of the month (`1`, `8`, etc)
   |                                                                   ╰─suggestion: Document 'number' parameter
26 |     /// - Returns: A `Fixed<Month>` whose `.month` is equal to the provided `number`, or `nil` if no such month can be found
27 |     public func month(_ number: Int) -> Fixed<Month>? { return numbered(number) }
warning: Parameter 'instant' not found in initializer declaration
  --> ../4-Fixed Values/Fixed.swift:69:9-69:91
67 |     /// Construct a `Fixed` value from an instantaneous point in time.
68 |     /// - Parameter region: The `Region` in which to interpret the point in time
69 +     /// - Parameter instant: The `Date` that is contained by the constructed `Fixed` value
   |         ╰─suggestion: Remove 'instant' parameter documentation
70 |     public init(region: Region, date: Foundation.Date) {
71 |         let dateComponents = region.calendar.dateComponents(in: region.timeZone, from: date)
warning: Parameter 'date' is missing documentation
  --> ../4-Fixed Values/Fixed.swift:69:91-69:91
67 |     /// Construct a `Fixed` value from an instantaneous point in time.
68 |     /// - Parameter region: The `Region` in which to interpret the point in time
69 +     /// - Parameter instant: The `Date` that is contained by the constructed `Fixed` value
   |                                                                                           ╰─suggestion: Document 'date' parameter
70 |     public init(region: Region, date: Foundation.Date) {
71 |         let dateComponents = region.calendar.dateComponents(in: region.timeZone, from: date)
warning: Parameter 'timeZone' is missing documentation
  --> ../8-Formatting/PartialFormatting-3Units.swift:10:69-10:69
8  |     ///   - month: The template for formatting the month
9  |     ///   - day: The template for formatting the day
10 +     ///   - weekday: The template for formatting the day of the week
   |                                                                     ╰─suggestion: Document 'timeZone' parameter
11 |     /// - Returns: A string with the formatted date components
12 |     public func format(year: Template<Year>,
warning: Parameter 'era' not found in instance method declaration
   --> ../8-Formatting/PartialFormatting-Others.swift:133:11-133:53
131 |     /// Format the year, month, day, hour, minute, second, and nanosecond of a fixed value
132 |     /// - Parameters:
133 +     ///   - era: The template for formatting the era
    |           ╰─suggestion: Remove 'era' parameter documentation
134 |     ///   - year: The template for formatting the year
135 |     ///   - month: The template for formatting the month
warning: Parameter 'weekday' is missing documentation
   --> ../8-Formatting/PartialFormatting-Others.swift:141:64-141:64
139 |     ///   - second: The template for formatting the second
140 |     ///   - nanosecond: The template for formatting the nanosecond
141 +     ///   - timeZone: The template for formatting the time zone
142 |     /// - Returns: A string with the formatted date components
143 |     public func format(year: Template<Year>,Finished building documentation for 'Time' (0.61s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/davedelong/time/1.0.2
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Identifier.swift
[8/57] Compiling SymbolKit KindIdentifier.swift
[9/57] Compiling SymbolKit Location.swift
[10/57] Compiling SymbolKit Mutability.swift
[11/57] Compiling Snippets Snippet.swift
[12/57] Compiling Snippets SnippetParser.swift
[13/57] Emitting module Snippets
[14/57] Compiling SymbolKit SourceRange.swift
[15/57] Compiling SymbolKit Metadata.swift
[16/57] Compiling SymbolKit Module.swift
[17/57] Compiling SymbolKit OperatingSystem.swift
[18/57] Compiling SymbolKit Platform.swift
[19/57] Compiling SymbolKit GenericConstraint.swift
[20/57] Compiling SymbolKit GenericParameter.swift
[21/57] Compiling SymbolKit Generics.swift
[22/57] Compiling SymbolKit Namespace.swift
[23/57] Compiling SymbolKit Mixin+Equals.swift
[24/57] Compiling SymbolKit Mixin+Hash.swift
[25/57] Compiling SymbolKit Mixin.swift
[26/57] Compiling SymbolKit LineList.swift
[27/57] Compiling SymbolKit Position.swift
[28/57] Compiling SymbolKit SemanticVersion.swift
[29/57] Compiling SymbolKit AccessControl.swift
[30/57] Compiling SymbolKit Availability.swift
[31/57] Compiling SymbolKit AvailabilityItem.swift
[32/57] Compiling SymbolKit Domain.swift
[33/57] Compiling SymbolKit DeclarationFragments.swift
[34/57] Compiling SymbolKit Fragment.swift
[35/57] Compiling SymbolKit FragmentKind.swift
[36/57] Compiling SymbolKit FunctionParameter.swift
[37/57] Compiling SymbolKit FunctionSignature.swift
[38/57] Compiling SymbolKit Names.swift
[39/57] Compiling SymbolKit SPI.swift
[40/57] Compiling SymbolKit Snippet.swift
[41/57] Compiling SymbolKit Extension.swift
[42/57] Compiling SymbolKit Relationship.swift
[43/57] Compiling SymbolKit RelationshipKind.swift
[44/57] Compiling SymbolKit SourceOrigin.swift
[45/57] Compiling SymbolKit GenericConstraints.swift
[46/57] Compiling SymbolKit Swift.swift
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.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 SnippetBuildCommand.swift
[57/61] Compiling snippet_extract URL+Status.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.70s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/57] Compiling Time Fixed+FormatTemplate.swift
[3/57] Compiling Time FixedFormat.swift
[4/57] Compiling Time FormatTemplates.swift
[5/57] Compiling Time PartialFormatting-1Unit.swift
[6/57] Compiling Time PartialFormatting-2Units.swift
[7/57] Compiling Time PartialFormatting-3Units.swift
[8/63] Emitting module Time
[9/63] Compiling Time Epoch.swift
[10/63] Compiling Time Instant.swift
[11/63] Compiling Time SISeconds.swift
[12/63] Compiling Time Relations+Fixed.swift
[13/63] Compiling Time Relations+Ranges.swift
[14/63] Compiling Time Relations.swift
[15/63] Compiling Time Fixed+Rounding.swift
[16/63] Compiling Time Formatting.swift
[17/63] Compiling Time ParsedFormat.swift
[18/63] Compiling Time Region+Equivalence.swift
[19/63] Compiling Time RegionalClock+Internal.swift
[20/63] Compiling Time SimpleCache.swift
[21/63] Compiling Time Snapshot.swift
[22/63] Compiling Time RegionalClock+Strikes.swift
[23/63] Compiling Time RegionalClock.swift
[24/63] Compiling Time Fixed+Codable.swift
[25/63] Compiling Time Fixed+Components.swift
[26/63] Compiling Time Fixed+Conversion.swift
[27/63] Compiling Time Fixed+Day.swift
[28/63] Compiling Time Fixed+Truncation.swift
[29/63] Compiling Time Fixed+Year.swift
[30/63] Compiling Time Fixed.swift
[31/63] Compiling Time Fixed+TimeDifference.swift
[32/63] Compiling Time TimeDifference+Invalid.swift
[33/63] Compiling Time TimeDifference.swift
[34/63] Compiling Time PartialFormatting-4Units.swift
[35/63] Compiling Time PartialFormatting-Others.swift
[36/63] Compiling Time Fixed+Parsing.swift
[37/63] Compiling Time Assertions.swift
[38/63] Compiling Time DateFormatterCache.swift
[39/63] Compiling Time Fixed+Internal.swift
[40/63] Compiling Time Fixed+SafeAdjustment.swift
[41/63] Compiling Time Fixed+UnsafeAdjustment.swift
[42/63] Compiling Time Fixed+BoundaryAlignedSequence.swift
[43/63] Compiling Time Fixed+Sequence.swift
[44/63] Compiling Time Fixed+FormatRaw.swift
[45/63] Compiling Time Fixed+FormatStyle.swift
[46/63] Compiling Time Fixed+Equatable.swift
[47/63] Compiling Time Fixed+Era.swift
[48/63] Compiling Time Fixed+Hour.swift
[49/63] Compiling Time Fixed+Initializers.swift
[50/63] Compiling Time Fixed+Minute.swift
[51/63] Compiling Time Fixed+Month.swift
[52/63] Compiling Time Region.swift
[53/63] Compiling Time TimeError.swift
[54/63] Compiling Time Units.swift
[55/63] Compiling Time Clocks.swift
[56/63] Compiling Time RegionalClock+CurrentValues.swift
[57/63] Compiling Time RegionalClock+Implementations.swift
[58/63] Compiling Time Time+Calendar.swift
[59/63] Compiling Time Time+CalendarComponent.swift
[60/63] Compiling Time Time+DateComponents.swift
[61/63] Compiling Time Time+Duration.swift
[62/63] Compiling Time Time+Locale.swift
[63/63] Compiling Time Time+TimeZone.swift
Build of target: 'Time' complete! (2.04s)
    1782
23	/Users/admin/builder/spi-builder-workspace/.docs/davedelong/time/1.0.2
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/davedelong/time/1.0.2
File count: 1782
Doc size:   23.0MB
Preparing doc bundle ...
Uploading prod-davedelong-time-1.0.2-bd5ef9ee.zip to s3://spi-docs-inbox/prod-davedelong-time-1.0.2-bd5ef9ee.zip
Copying... [12%]
Copying... [21%]
Copying... [31%]
Copying... [41%]
Copying... [50%]
Copying... [60%]
Copying... [72%]
Copying... [82%]
Copying... [91%]
Copying... [100%]
Done.