Build Information
Failed to build Swiftlier, reference master (e1f789
), with Swift 6.1 for Android on 27 May 2025 06:21:45 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
Build Log
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[17/65] Compiling Swiftlier Date+Testable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/Date+Testable.swift:11:13: warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | private var faked: (base: Date, started: Date)?
| |- warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'faked' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | extension Date {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[18/65] Compiling Swiftlier URLSession+Testing.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/Date+Testable.swift:11:13: warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | import Foundation
10 |
11 | private var faked: (base: Date, started: Date)?
| |- warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'faked' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | extension Date {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[19/65] Compiling Swiftlier Observable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
34 | }
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
| |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
| |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[20/65] Compiling Swiftlier ObservableArray.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
34 | }
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
| |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
| |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[21/65] Compiling Swiftlier ObservableDictionary.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
34 | }
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
| |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
| |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[22/65] Compiling Swiftlier ObservableReference.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
34 | }
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
| |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
| |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[23/65] Compiling Swiftlier JSON.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
34 | }
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
| |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
| |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[24/65] Compiling Swiftlier NativeTypesStructured.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
34 | }
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
| |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
| |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[25/65] Compiling Swiftlier Structured.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
34 | }
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
| |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
| |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[26/65] Compiling Swiftlier XML.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
34 | }
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
| |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
27 | Options for observing an observable
28 | */
29 | public struct ObservationOptions: OptionSet {
| `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
30 | public let rawValue: Int
31 |
:
35 |
36 | public static let initial = ObservationOptions(rawValue: 1 << 0)
37 | public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
| |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[27/65] Compiling Swiftlier Coding+Helpers.swift
[28/65] Compiling Swiftlier CodingKeys.swift
[29/65] Compiling Swiftlier NativeTypesDecoder.swift
[30/65] Compiling Swiftlier NativeTypesEncoder.swift
[31/65] Compiling Swiftlier PercentEncodable.swift
[32/65] Compiling Swiftlier SpecDecoder.swift
[33/65] Compiling Swiftlier Collection+Enhancments.swift
[34/65] Compiling Swiftlier Data+Processing.swift
[35/65] Compiling Swiftlier LimitedQueue.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | struct Static {
127 | static var DefaultInsance = EventCenter()
| |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
[36/65] Compiling Swiftlier OrderedDictionary.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | struct Static {
127 | static var DefaultInsance = EventCenter()
| |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
[37/65] Compiling Swiftlier PatchyRange.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | struct Static {
127 | static var DefaultInsance = EventCenter()
| |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
[38/65] Compiling Swiftlier SelectableValue.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | struct Static {
127 | static var DefaultInsance = EventCenter()
| |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
[39/65] Compiling Swiftlier Syncable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | struct Static {
127 | static var DefaultInsance = EventCenter()
| |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
[40/65] Compiling Swiftlier WeakWrapper.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | struct Static {
127 | static var DefaultInsance = EventCenter()
| |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
[41/65] Compiling Swiftlier EventCenter.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | struct Static {
127 | static var DefaultInsance = EventCenter()
| |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
[42/65] Compiling Swiftlier MultiCallback.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | struct Static {
127 | static var DefaultInsance = EventCenter()
| |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
51 | if let operationQueue = spec.operationQueue {
52 | operationQueue.addOperation {
53 | (spec.callback as! (E.CallbackParam) -> ())(params)
| `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
54 | }
55 | }
[43/65] Compiling Swiftlier ValueTypePersistenceService.swift
[44/65] Compiling Swiftlier Bool+Formatting.swift
[45/65] Compiling Swiftlier Data+Base64.swift
[46/65] Compiling Swiftlier Date+Formatting.swift
[47/65] Compiling Swiftlier Double+Formatting.swift
[48/65] Compiling Swiftlier HeartRateFormatter.swift
[49/65] Compiling Swiftlier TimeInterval+Formatting.swift
[50/65] Compiling Swiftlier BinarySearchTree.swift
[51/65] Compiling Swiftlier Age.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
19 | }
20 |
21 | public let π = Angle(radians: Float.pi)
| |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
| `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
24 | public enum Unit {
25 | case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[52/65] Compiling Swiftlier AlwaysEqual.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
19 | }
20 |
21 | public let π = Angle(radians: Float.pi)
| |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
| `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
24 | public enum Unit {
25 | case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[53/65] Compiling Swiftlier Angle.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
19 | }
20 |
21 | public let π = Angle(radians: Float.pi)
| |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
| `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
24 | public enum Unit {
25 | case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[54/65] Compiling Swiftlier Day.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
19 | }
20 |
21 | public let π = Angle(radians: Float.pi)
| |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
| `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
24 | public enum Unit {
25 | case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[55/65] Compiling Swiftlier EmailAddress.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
19 | }
20 |
21 | public let π = Angle(radians: Float.pi)
| |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
| `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
24 | public enum Unit {
25 | case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[56/65] Compiling Swiftlier HTML.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
19 | }
20 |
21 | public let π = Angle(radians: Float.pi)
| |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
| `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
24 | public enum Unit {
25 | case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[57/65] Compiling Swiftlier Mass.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
19 | }
20 |
21 | public let π = Angle(radians: Float.pi)
| |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
| `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
24 | public enum Unit {
25 | case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[58/65] Compiling Swiftlier SwiftlierError.swift
/host/spi-builder-workspace/Sources/Swiftlier/FileSystem/FileSystem.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | public struct FileSystem {
| `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
17 | public static let `default` = FileSystem()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var workingDirectory: DirectoryPath {
[59/65] Compiling Swiftlier SwiftlierResult.swift
/host/spi-builder-workspace/Sources/Swiftlier/FileSystem/FileSystem.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | public struct FileSystem {
| `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
17 | public static let `default` = FileSystem()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var workingDirectory: DirectoryPath {
[60/65] Compiling Swiftlier FileSystem+iOSDirectories.swift
/host/spi-builder-workspace/Sources/Swiftlier/FileSystem/FileSystem.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | public struct FileSystem {
| `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
17 | public static let `default` = FileSystem()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var workingDirectory: DirectoryPath {
[61/65] Compiling Swiftlier FileSystem.swift
/host/spi-builder-workspace/Sources/Swiftlier/FileSystem/FileSystem.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | public struct FileSystem {
| `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
17 | public static let `default` = FileSystem()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var workingDirectory: DirectoryPath {
[62/65] Compiling Swiftlier Path+Coding.swift
/host/spi-builder-workspace/Sources/Swiftlier/FileSystem/FileSystem.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | public struct FileSystem {
| `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
17 | public static let `default` = FileSystem()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var workingDirectory: DirectoryPath {
[63/65] Compiling Swiftlier Path.swift
/host/spi-builder-workspace/Sources/Swiftlier/FileSystem/FileSystem.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | public struct FileSystem {
| `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
17 | public static let `default` = FileSystem()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var workingDirectory: DirectoryPath {
[64/65] Compiling Swiftlier PersistenceService.swift
/host/spi-builder-workspace/Sources/Swiftlier/FileSystem/FileSystem.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | public struct FileSystem {
| `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
17 | public static let `default` = FileSystem()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var workingDirectory: DirectoryPath {
[65/65] Compiling Swiftlier ReferenceTypePersistenceService.swift
/host/spi-builder-workspace/Sources/Swiftlier/FileSystem/FileSystem.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | public struct FileSystem {
| `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
17 | public static let `default` = FileSystem()
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | public var workingDirectory: DirectoryPath {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/57] Compiling Swiftlier Age.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[3/57] Compiling Swiftlier AlwaysEqual.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[4/57] Compiling Swiftlier Angle.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[5/57] Compiling Swiftlier Day.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[6/57] Compiling Swiftlier EmailAddress.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[7/57] Compiling Swiftlier HTML.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[8/57] Compiling Swiftlier Mass.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no exact matches in call to global function 'sin'
163 | }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 | public var sine: Float {
162 | return sin(self)
| `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 | }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
| `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
94 | long double cosl(long double __x);
95 |
96 | double sin(double __x);
| `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
97 | float sinf(float __x);
98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no exact matches in call to global function 'cos'
167 | }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
93 | float cosf(float __x);
94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 | public var cosine: Float {
166 | return cos(self)
| `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 | }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
| `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
90 | long double atan2l(long double __y, long double __x);
91 |
92 | double cos(double __x);
| `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
93 | float cosf(float __x);
94 | long double cosl(long double __x);
[9/64] Emitting module Swiftlier
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[10/64] Compiling Swiftlier Coding+Helpers.swift
[11/64] Compiling Swiftlier CodingKeys.swift
[12/64] Compiling Swiftlier NativeTypesDecoder.swift
[13/64] Compiling Swiftlier NativeTypesEncoder.swift
[14/64] Compiling Swiftlier PercentEncodable.swift
[15/64] Compiling Swiftlier SpecDecoder.swift
[16/64] Compiling Swiftlier Collection+Enhancments.swift
[17/64] Compiling Swiftlier Data+Processing.swift
[18/64] Compiling Swiftlier SwiftlierError.swift
[19/64] Compiling Swiftlier SwiftlierResult.swift
[20/64] Compiling Swiftlier FileSystem+iOSDirectories.swift
[21/64] Compiling Swiftlier FileSystem.swift
[22/64] Compiling Swiftlier Path+Coding.swift
[23/64] Compiling Swiftlier Path.swift
[24/64] Compiling Swiftlier PersistenceService.swift
[25/64] Compiling Swiftlier ReferenceTypePersistenceService.swift
[26/64] Compiling Swiftlier Price.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[27/64] Compiling Swiftlier UniquelyIdentifiable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[28/64] Compiling Swiftlier CSVStreamReader.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[29/64] Compiling Swiftlier DelimiterStreamReader.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[30/64] Compiling Swiftlier StreamReader.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[31/64] Compiling Swiftlier Date+Testable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[32/64] Compiling Swiftlier URLSession+Testing.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
| `- note: expected sendability to match requirement here
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
| `- note: expected sendability to match requirement here
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 | func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 | func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 | func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
| `- note: expected sendability to match requirement here
18 | }
19 |
:
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
| `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 | let session: TestURLSession
57 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
| `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 | let session: TestURLSession
71 | let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
| `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 | let session: TestURLSession
85 | let task: TestURLSession.StartedTask
[33/64] Compiling Swiftlier Observable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[34/64] Compiling Swiftlier ObservableArray.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[35/64] Compiling Swiftlier ObservableDictionary.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[36/64] Compiling Swiftlier ObservableReference.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[37/64] Compiling Swiftlier JSON.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[38/64] Compiling Swiftlier NativeTypesStructured.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[39/64] Compiling Swiftlier Structured.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[40/64] Compiling Swiftlier XML.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
28 | Store a value that can be observed by external objects
29 | */
30 | public protocol Referenceable: class {}
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
31 | public final class ObservableReference<T: Referenceable> {
32 | public typealias Handler = () -> ()
[41/64] Compiling Swiftlier LimitedQueue.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
[42/64] Compiling Swiftlier OrderedDictionary.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
[43/64] Compiling Swiftlier PatchyRange.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
[44/64] Compiling Swiftlier SelectableValue.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
[45/64] Compiling Swiftlier Syncable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
[46/64] Compiling Swiftlier WeakWrapper.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
[47/64] Compiling Swiftlier EventCenter.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
[48/64] Compiling Swiftlier MultiCallback.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
12 | Protcol all events must implemenet to work with EventCenter
13 | */
14 | public protocol EventType: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
15 | associatedtype CallbackParam
16 | }
[49/64] Compiling Swiftlier Date+Helpers.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 | /// - seconds: Number of seconds to wait to perform the work
16 | /// - work: Work to execute after delay
17 | public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
| `- note: parameter 'work' is implicitly non-sendable
18 | let time = DispatchTime.now() + seconds
19 | self.asyncAfter(deadline: time, execute: work)
| `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 | }
21 | }
[50/64] Compiling Swiftlier DispatchQueue+Enhancements.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 | /// - seconds: Number of seconds to wait to perform the work
16 | /// - work: Work to execute after delay
17 | public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
| `- note: parameter 'work' is implicitly non-sendable
18 | let time = DispatchTime.now() + seconds
19 | self.asyncAfter(deadline: time, execute: work)
| `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 | }
21 | }
[51/64] Compiling Swiftlier String+Enhancements.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 | /// - seconds: Number of seconds to wait to perform the work
16 | /// - work: Work to execute after delay
17 | public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
| `- note: parameter 'work' is implicitly non-sendable
18 | let time = DispatchTime.now() + seconds
19 | self.asyncAfter(deadline: time, execute: work)
| `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 | }
21 | }
[52/64] Compiling Swiftlier URL+Enhancements.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 | /// - seconds: Number of seconds to wait to perform the work
16 | /// - work: Work to execute after delay
17 | public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
| `- note: parameter 'work' is implicitly non-sendable
18 | let time = DispatchTime.now() + seconds
19 | self.asyncAfter(deadline: time, execute: work)
| `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 | }
21 | }
[53/64] Compiling Swiftlier AnySwiftlierError.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 | /// - seconds: Number of seconds to wait to perform the work
16 | /// - work: Work to execute after delay
17 | public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
| `- note: parameter 'work' is implicitly non-sendable
18 | let time = DispatchTime.now() + seconds
19 | self.asyncAfter(deadline: time, execute: work)
| `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 | }
21 | }
[54/64] Compiling Swiftlier GenericSwiftlierError.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 | /// - seconds: Number of seconds to wait to perform the work
16 | /// - work: Work to execute after delay
17 | public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
| `- note: parameter 'work' is implicitly non-sendable
18 | let time = DispatchTime.now() + seconds
19 | self.asyncAfter(deadline: time, execute: work)
| `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 | }
21 | }
[55/64] Compiling Swiftlier OperationBasedError.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 | /// - seconds: Number of seconds to wait to perform the work
16 | /// - work: Work to execute after delay
17 | public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
| `- note: parameter 'work' is implicitly non-sendable
18 | let time = DispatchTime.now() + seconds
19 | self.asyncAfter(deadline: time, execute: work)
| `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 | }
21 | }
[56/64] Compiling Swiftlier OtherSwiftlierError.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 | /// - seconds: Number of seconds to wait to perform the work
16 | /// - work: Work to execute after delay
17 | public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
| `- note: parameter 'work' is implicitly non-sendable
18 | let time = DispatchTime.now() + seconds
19 | self.asyncAfter(deadline: time, execute: work)
| `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 | }
21 | }
[57/64] Compiling Swiftlier ValueTypePersistenceService.swift
[58/64] Compiling Swiftlier Bool+Formatting.swift
[59/64] Compiling Swiftlier Data+Base64.swift
[60/64] Compiling Swiftlier Date+Formatting.swift
[61/64] Compiling Swiftlier Double+Formatting.swift
[62/64] Compiling Swiftlier HeartRateFormatter.swift
[63/64] Compiling Swiftlier TimeInterval+Formatting.swift
[64/64] Compiling Swiftlier BinarySearchTree.swift
BUILD FAILURE 6.1 android