This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 Schedule with Swift 6.0 for Linux.

Swift 6 data race errors: 4

Build Command

bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/luoxiu/Schedule.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/luoxiu/Schedule
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at e388fca Merge branch 'master' of https://github.com/luoxiu/Schedule
Cloned https://github.com/luoxiu/Schedule.git
Revision (git rev-parse @):
e388fcab1d870f32c0359a414fda81b8e81b98c9
SUCCESS checkout https://github.com/luoxiu/Schedule.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/luoxiu/Schedule.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/14] Compiling Schedule Time.swift
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                `- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
[4/15] Compiling Schedule TaskCenter.swift
/host/spi-builder-workspace/Sources/Schedule/TaskCenter.swift:28:13: warning: let '_default' is not concurrency-safe because non-'Sendable' type 'TaskCenter' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | }
 27 |
 28 | private let _default = TaskCenter()
    |             |- warning: let '_default' is not concurrency-safe because non-'Sendable' type 'TaskCenter' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate '_default' 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
 29 |
 30 | /// A task center that enables batch operation.
 31 | open class TaskCenter {
    |            `- note: class 'TaskCenter' does not conform to the 'Sendable' protocol
 32 |
 33 |     private let lock = NSLock()
[5/15] Compiling Schedule Task.swift
[6/15] Compiling Schedule Plan.swift
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                `- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
[7/15] Compiling Schedule RunLoopTask.swift
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                `- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
[8/15] Compiling Schedule Monthday.swift
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                `- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:24:16: warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension Locale {
23 |
24 |     static let posix = Locale(identifier: "en_US_POSIX")
   |                |- warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posix' 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
25 | }
26 |
Foundation.Locale:1:15: note: struct 'Locale' does not conform to the 'Sendable' protocol
 1 | public struct Locale : CustomStringConvertible, CustomDebugStringConvertible, Hashable, Equatable, ReferenceConvertible {
   |               `- note: struct 'Locale' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSLocale
 3 |     public typealias LanguageDirection = NSLocale.LanguageDirection
/host/spi-builder-workspace/Sources/Schedule/Period.swift:45:24: warning: static property 'quantifiers' is not concurrency-safe because non-'Sendable' type 'Atomic<[String : Int]>' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |     }
 44 |
 45 |     private static let quantifiers: Atomic<[String: Int]> = Atomic([
    |                        |- warning: static property 'quantifiers' is not concurrency-safe because non-'Sendable' type 'Atomic<[String : Int]>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: annotate 'quantifiers' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |         "one": 1, "two": 2, "three": 3, "four": 4, "five": 5, "six": 6,
 47 |         "seven": 7, "eight": 8, "nine": 9, "ten": 10, "eleven": 11, "twelve": 12
/host/spi-builder-workspace/Sources/Schedule/Atomic.swift:4:13: note: generic class 'Atomic' does not conform to the 'Sendable' protocol
 2 |
 3 | /// An atomic box that can read and write the underlying value atomically.
 4 | final class Atomic<T> {
   |             `- note: generic class 'Atomic' does not conform to the 'Sendable' protocol
 5 |
 6 |     private var val: T
[9/15] Compiling Schedule Period.swift
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                `- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:24:16: warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension Locale {
23 |
24 |     static let posix = Locale(identifier: "en_US_POSIX")
   |                |- warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posix' 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
25 | }
26 |
Foundation.Locale:1:15: note: struct 'Locale' does not conform to the 'Sendable' protocol
 1 | public struct Locale : CustomStringConvertible, CustomDebugStringConvertible, Hashable, Equatable, ReferenceConvertible {
   |               `- note: struct 'Locale' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSLocale
 3 |     public typealias LanguageDirection = NSLocale.LanguageDirection
/host/spi-builder-workspace/Sources/Schedule/Period.swift:45:24: warning: static property 'quantifiers' is not concurrency-safe because non-'Sendable' type 'Atomic<[String : Int]>' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |     }
 44 |
 45 |     private static let quantifiers: Atomic<[String: Int]> = Atomic([
    |                        |- warning: static property 'quantifiers' is not concurrency-safe because non-'Sendable' type 'Atomic<[String : Int]>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: annotate 'quantifiers' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |         "one": 1, "two": 2, "three": 3, "four": 4, "five": 5, "six": 6,
 47 |         "seven": 7, "eight": 8, "nine": 9, "ten": 10, "eleven": 11, "twelve": 12
/host/spi-builder-workspace/Sources/Schedule/Atomic.swift:4:13: note: generic class 'Atomic' does not conform to the 'Sendable' protocol
 2 |
 3 | /// An atomic box that can read and write the underlying value atomically.
 4 | final class Atomic<T> {
   |             `- note: generic class 'Atomic' does not conform to the 'Sendable' protocol
 5 |
 6 |     private var val: T
[10/15] Compiling Schedule Atomic.swift
[11/15] Compiling Schedule Bag.swift
[12/15] Compiling Schedule Extensions.swift
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:24:16: warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension Locale {
23 |
24 |     static let posix = Locale(identifier: "en_US_POSIX")
   |                `- warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
25 | }
26 |
Foundation.Locale:1:15: note: struct 'Locale' does not conform to the 'Sendable' protocol
 1 | public struct Locale : CustomStringConvertible, CustomDebugStringConvertible, Hashable, Equatable, ReferenceConvertible {
   |               `- note: struct 'Locale' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSLocale
 3 |     public typealias LanguageDirection = NSLocale.LanguageDirection
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
22 | extension Locale {
23 |
24 |     static let posix = Locale(identifier: "en_US_POSIX")
   |                |- note: annotate 'posix' 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
25 | }
26 |
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
[13/15] Compiling Schedule Interval.swift
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:24:16: warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension Locale {
23 |
24 |     static let posix = Locale(identifier: "en_US_POSIX")
   |                `- warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
25 | }
26 |
Foundation.Locale:1:15: note: struct 'Locale' does not conform to the 'Sendable' protocol
 1 | public struct Locale : CustomStringConvertible, CustomDebugStringConvertible, Hashable, Equatable, ReferenceConvertible {
   |               `- note: struct 'Locale' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSLocale
 3 |     public typealias LanguageDirection = NSLocale.LanguageDirection
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
22 | extension Locale {
23 |
24 |     static let posix = Locale(identifier: "en_US_POSIX")
   |                |- note: annotate 'posix' 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
25 | }
26 |
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
[14/15] Emitting module Schedule
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:24:16: warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
22 | extension Locale {
23 |
24 |     static let posix = Locale(identifier: "en_US_POSIX")
   |                `- warning: static property 'posix' is not concurrency-safe because non-'Sendable' type 'Locale' may have shared mutable state; this is an error in the Swift 6 language mode
25 | }
26 |
Foundation.Locale:1:15: note: struct 'Locale' does not conform to the 'Sendable' protocol
 1 | public struct Locale : CustomStringConvertible, CustomDebugStringConvertible, Hashable, Equatable, ReferenceConvertible {
   |               `- note: struct 'Locale' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSLocale
 3 |     public typealias LanguageDirection = NSLocale.LanguageDirection
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
22 | extension Locale {
23 |
24 |     static let posix = Locale(identifier: "en_US_POSIX")
   |                |- note: annotate 'posix' 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
25 | }
26 |
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
/host/spi-builder-workspace/Sources/Schedule/Period.swift:45:24: warning: static property 'quantifiers' is not concurrency-safe because non-'Sendable' type 'Atomic<[String : Int]>' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |     }
 44 |
 45 |     private static let quantifiers: Atomic<[String: Int]> = Atomic([
    |                        |- warning: static property 'quantifiers' is not concurrency-safe because non-'Sendable' type 'Atomic<[String : Int]>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: annotate 'quantifiers' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |         "one": 1, "two": 2, "three": 3, "four": 4, "five": 5, "six": 6,
 47 |         "seven": 7, "eight": 8, "nine": 9, "ten": 10, "eleven": 11, "twelve": 12
/host/spi-builder-workspace/Sources/Schedule/Atomic.swift:4:13: note: generic class 'Atomic' does not conform to the 'Sendable' protocol
 2 |
 3 | /// An atomic box that can read and write the underlying value atomically.
 4 | final class Atomic<T> {
   |             `- note: generic class 'Atomic' does not conform to the 'Sendable' protocol
 5 |
 6 |     private var val: T
/host/spi-builder-workspace/Sources/Schedule/TaskCenter.swift:28:13: warning: let '_default' is not concurrency-safe because non-'Sendable' type 'TaskCenter' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | }
 27 |
 28 | private let _default = TaskCenter()
    |             |- warning: let '_default' is not concurrency-safe because non-'Sendable' type 'TaskCenter' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate '_default' 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
 29 |
 30 | /// A task center that enables batch operation.
 31 | open class TaskCenter {
    |            `- note: class 'TaskCenter' does not conform to the 'Sendable' protocol
 32 |
 33 |     private let lock = NSLock()
[15/15] Compiling Schedule Weekday.swift
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:30:16: warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                `- warning: static property 'gregorian' is not concurrency-safe because non-'Sendable' type 'Calendar' may have shared mutable state; this is an error in the Swift 6 language mode
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Foundation.Calendar:1:15: note: struct 'Calendar' does not conform to the 'Sendable' protocol
  1 | public struct Calendar : Hashable, Equatable, ReferenceConvertible {
    |               `- note: struct 'Calendar' does not conform to the 'Sendable' protocol
  2 |     public typealias ReferenceType = NSCalendar
  3 |     public enum Identifier {
/host/spi-builder-workspace/Sources/Schedule/Extensions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 1 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 2 |
 3 | extension Double {
   :
28 |
29 |     /// The gregorian calendar with `en_US_POSIX` locale.
30 |     static let gregorian: Calendar = {
   |                |- note: annotate 'gregorian' 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
31 |         var cal = Calendar(identifier: .gregorian)
32 |         cal.locale = Locale.posix
Build complete! (10.24s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Schedule",
  "name" : "Schedule",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.11"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "Schedule",
      "targets" : [
        "Schedule"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "ScheduleTests",
      "module_type" : "SwiftTarget",
      "name" : "ScheduleTests",
      "path" : "Tests/ScheduleTests",
      "sources" : [
        "AtomicTests.swift",
        "BagTests.swift",
        "ExtensionsTests.swift",
        "Helpers.swift",
        "IntervalTests.swift",
        "MonthdayTests.swift",
        "PeriodTests.swift",
        "PlanTests.swift",
        "TaskCenterTests.swift",
        "TaskTests.swift",
        "TimeTests.swift",
        "WeekdayTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Schedule"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Schedule",
      "module_type" : "SwiftTarget",
      "name" : "Schedule",
      "path" : "Sources/Schedule",
      "product_memberships" : [
        "Schedule"
      ],
      "sources" : [
        "Atomic.swift",
        "Bag.swift",
        "Extensions.swift",
        "Interval.swift",
        "Monthday.swift",
        "Period.swift",
        "Plan.swift",
        "RunLoopTask.swift",
        "Task.swift",
        "TaskCenter.swift",
        "Time.swift",
        "Weekday.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.