The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SwiftOpenAPI, reference main (0e8226), with Swift 6.1 for Android on 18 Dec 2025 19:47:59 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 | }
251 |
252 | private var names: [PartialKeyPath<ComponentsObject>: String] = [
    |             |- warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	\.schemas: "schemas",
254 | 	\.parameters: "parameters",
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 97 | 	}
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
    |                    |- warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
    |                    |- warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | 	public static let digest: HTTPAuthScheme = "digest"
102 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
    |                    |- warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
    |                    |- warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
    |                    |- warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
[434/443] Emitting module SwiftOpenAPI
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/CodingKeys.swift:23:6: warning: stored property 'value' of 'Sendable'-conforming generic struct 'StringKey' has non-sendable type 'Value'; this is an error in the Swift 6 language mode
17 | }
18 |
19 | struct StringKey<Value: LosslessStringConvertible>: CodingKey {
   |                  `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
20 |
21 | 	var stringValue: String { value.description }
22 | 	var intValue: Int? { nil }
23 | 	var value: Value
   |      `- warning: stored property 'value' of 'Sendable'-conforming generic struct 'StringKey' has non-sendable type 'Value'; this is an error in the Swift 6 language mode
24 |
25 | 	init?(stringValue: String) {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:77:13: warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
75 | }
76 |
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
   |             |- warning: let 'defaultDateEncodingFormat' is not concurrency-safe because non-'Sendable' type 'Lock<DateEncodingFormat>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultDateEncodingFormat' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/DateEncodingFormat.swift:79:13: warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
77 | private let defaultDateEncodingFormat = Lock(DateEncodingFormat.dateTime)
78 |
79 | private let isoFormatter = ISO8601DateFormatter()
   |             |- warning: let 'isoFormatter' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'isoFormatter' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | private let dateFormatter = DateFormatter()
81 |
Foundation.ISO8601DateFormatter:1:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 2 |     open var timeZone: TimeZone! { get set }
 3 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:19:13: warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     }
18 |
19 | 	static var useDefaultKeys: KeyEncodingStrategy = .custom { $0 }
   |             |- warning: static property 'useDefaultKeys' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'useDefaultKeys' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'useDefaultKeys' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | 	static func custom(_ encode: @escaping (String) -> String) -> KeyEncodingStrategy {
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/KeyEncodingStrategy.swift:36:13: warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
34 | }
35 |
36 | private let defaultKeyEncodingStrategy = Lock(KeyEncodingStrategy.useDefaultKeys)
   |             |- warning: let 'defaultKeyEncodingStrategy' is not concurrency-safe because non-'Sendable' type 'Lock<KeyEncodingStrategy>' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make let 'defaultKeyEncodingStrategy' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:189:13: note: generic class 'Lock' does not conform to the 'Sendable' protocol
187 |
188 | @propertyWrapper
189 | final class Lock<T> {
    |             `- note: generic class 'Lock' does not conform to the 'Sendable' protocol
190 |
191 |     private let lock = ReadWriteLock()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Encoders/TypeRevision/CodableTypes.swift:5:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | struct TypeInfo {
    |        `- note: consider making struct 'TypeInfo' conform to the 'Sendable' protocol
  4 |
  5 | 	static let any = TypeInfo(type: Any.self, container: .single(.null))
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'TypeInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	var type: Any.Type
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:31:13: warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 | public extension DataFormat {
30 |
31 | 	static var email: DataFormat = "email"
   |             |- warning: static property 'email' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'email' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:32:13: warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
   |             |- warning: static property 'uuid' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uuid' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'uuid' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:33:13: warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | 	static var email: DataFormat = "email"
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
   |             |- warning: static property 'uri' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'uri' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'uri' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:34:13: warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 | 	static var uuid: DataFormat = "uuid"
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
   |             |- warning: static property 'hostname' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'hostname' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'hostname' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:35:13: warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | 	static var uri: DataFormat = "uri"
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
   |             |- warning: static property 'ipv4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'ipv4' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:36:13: warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | 	static var hostname: DataFormat = "hostname"
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
   |             |- warning: static property 'ipv6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'ipv6' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:37:13: warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | 	static var ipv4: DataFormat = "ipv4"
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
   |             |- warning: static property 'int64' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int64' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'int64' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:38:13: warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
36 | 	static var ipv6: DataFormat = "ipv6"
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
   |             |- warning: static property 'int32' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'int32' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'int32' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:39:13: warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 | 	static var int64: DataFormat = "int64"
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
   |             |- warning: static property 'double' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'double' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'double' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:40:13: warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | 	static var int32: DataFormat = "int32"
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
   |             |- warning: static property 'float' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'float' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'float' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | 	static var decimal: DataFormat = "decimal"
42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:41:13: warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | 	static var double: DataFormat = "double"
40 | 	static var float: DataFormat = "float"
41 | 	static var decimal: DataFormat = "decimal"
   |             |- warning: static property 'decimal' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'decimal' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'decimal' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:44:13: warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | 	/// full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
44 | 	static var date: DataFormat = "date"
   |             |- warning: static property 'date' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'date' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'date' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:47:13: warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | 	/// the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
47 | 	static var dateTime: DataFormat = "date-time"
   |             |- warning: static property 'dateTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateTime' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'dateTime' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// a hint to UIs to mask the input
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:50:13: warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | 	/// a hint to UIs to mask the input
50 | 	static var password: DataFormat = "password"
   |             |- warning: static property 'password' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'password' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'password' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:53:13: warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 |
52 | 	/// base64-encoded characters, for example, U3dhZ2dlciByb2Nrcw==
53 | 	static var byte: DataFormat = "byte"
   |             |- warning: static property 'byte' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'byte' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'byte' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// binary data, used to describe files
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/DataFormat.swift:56:13: warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 |
55 | 	/// binary data, used to describe files
56 | 	static var binary: DataFormat = "binary"
   |             |- warning: static property 'binary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'binary' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'binary' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/JSONSchema/SchemaContexts.swift:245:13: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
219 | }
220 |
221 | public struct CompositionContext: Codable, Equatable {
    |               `- note: consider making struct 'CompositionContext' conform to the 'Sendable' protocol
222 |
223 | 	public var allOf: [ReferenceOr<SchemaObject>]?
    :
243 | 	}
244 |
245 | 	static let invalid = CompositionContext()
    |             |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'CompositionContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'invalid' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
246 | }
247 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:104:21: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
102 | 		}
103 |
104 | 		public static let json: Application = "json"
    |                     |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'json' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:105:21: warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
103 |
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
    |                     |- warning: static property 'schemaJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'schemaJson' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:106:21: warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
104 | 		public static let json: Application = "json"
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
    |                     |- warning: static property 'schemaInstanceJson' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'schemaInstanceJson' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:107:21: warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
105 | 		public static let schemaJson: Application = "schema+json"
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
    |                     |- warning: static property 'xml' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'xml' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:108:21: warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
106 | 		public static let schemaInstanceJson: Application = "schema-instance+json"
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
    |                     |- warning: static property 'octetStream' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'octetStream' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
110 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:109:21: warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | public extension MediaType {
 92 |
 93 | 	struct Application: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Application' conform to the 'Sendable' protocol
 94 | 		public var rawValue: String
 95 |
    :
107 | 		public static let xml: Application = "xml"
108 | 		public static let octetStream: Application = "octet-stream"
109 | 		public static let urlEncoded: Application = "x-www-form-urlencoded"
    |                     |- warning: static property 'urlEncoded' is not concurrency-safe because non-'Sendable' type 'MediaType.Application' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'urlEncoded' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | 	}
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:127:21: warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
125 | 		}
126 |
127 | 		public static let plain: Text = "plain"
    |                     |- warning: static property 'plain' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'plain' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 | 		public static let html: Text = "html"
129 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:128:21: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
114 | 	}
115 |
116 | 	struct Text: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Text' conform to the 'Sendable' protocol
117 | 		public var rawValue: String
118 |
    :
126 |
127 | 		public static let plain: Text = "plain"
128 | 		public static let html: Text = "html"
    |                     |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'MediaType.Text' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'html' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | 	}
130 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:150:21: warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
148 | 		}
149 |
150 | 		public static let formData: Multipart = "form-data"
    |                     |- warning: static property 'formData' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'formData' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let byteranges: Multipart = "byteranges"
152 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:151:21: warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
137 | 	}
138 |
139 | 	struct Multipart: RawRepresentable, ExpressibleByStringLiteral {
    |         `- note: consider making struct 'Multipart' conform to the 'Sendable' protocol
140 | 		public var rawValue: String
141 |
    :
149 |
150 | 		public static let formData: Multipart = "form-data"
151 | 		public static let byteranges: Multipart = "byteranges"
    |                     |- warning: static property 'byteranges' is not concurrency-safe because non-'Sendable' type 'MediaType.Multipart' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'byteranges' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 	}
153 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/MediaType.swift:158:13: warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaType: Codable, Hashable, RawRepresentable, ExpressibleByStringLiteral, LosslessStringConvertible {
    |               `- note: consider making struct 'MediaType' conform to the 'Sendable' protocol
  4 |
  5 | 	public typealias RawValue = String
    :
156 | 	}
157 |
158 | 	static let any = MediaType("*", "*")
    |             |- warning: static property 'any' is not concurrency-safe because non-'Sendable' type 'MediaType' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: add '@MainActor' to make static property 'any' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 | }
160 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Path.swift:72:13: warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
41 | }
42 |
43 | public enum PathElement: Hashable, ExpressibleByStringLiteral {
   |             `- note: consider making enum 'PathElement' conform to the 'Sendable' protocol
44 |
45 | 	case constant(String)
   :
70 | public extension PathElement {
71 |
72 | 	static let components: PathElement = "components"
   |             |- warning: static property 'components' is not concurrency-safe because non-'Sendable' type 'PathElement' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'components' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:64:8: warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 62 | 	public enum CodingKeys: CodingKey {
 63 |
 64 | 		case field(Field)
    |        `- warning: associated value 'field' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.CodingKeys.Field'; this is an error in the Swift 6 language mode
 65 | 		case method(Method)
 66 |
    :
 97 | 		}
 98 |
 99 | 		public enum Field: String {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
100 |
101 | 			case summary
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:65:8: warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 63 |
 64 | 		case field(Field)
 65 | 		case method(Method)
    |        `- warning: associated value 'method' of 'Sendable'-conforming enum 'CodingKeys' has non-sendable type 'PathItemObject.Method'; this is an error in the Swift 6 language mode
 66 |
 67 | 		public var stringValue: String {
    :
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:148:21: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
146 | 		}
147 |
148 | 		public static let get = Method("get")
    |                     |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'get' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:149:21: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
147 |
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
    |                     |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'put' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:150:21: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
148 | 		public static let get = Method("get")
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
    |                     |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'post' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:151:21: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
149 | 		public static let put = Method("put")
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
    |                     |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:152:21: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
150 | 		public static let post = Method("post")
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
    |                     |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'options' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:153:21: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
151 | 		public static let delete = Method("delete")
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
    |                     |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:154:21: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
152 | 		public static let options = Method("options")
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
    |                     |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let trace = Method("trace")
156 | 	}
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/PathItemObject.swift:155:21: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
125 | 	}
126 |
127 | 	public struct Method: LosslessStringConvertible, RawRepresentable, Codable, Hashable {
    |                `- note: consider making struct 'Method' conform to the 'Sendable' protocol
128 |
129 | 		public let rawValue: String
    :
153 | 		public static let head = Method("head")
154 | 		public static let patch = Method("patch")
155 | 		public static let trace = Method("trace")
    |                     |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'PathItemObject.Method' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: add '@MainActor' to make static property 'trace' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 	}
157 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/ReferenceOr.swift:252:13: warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 | }
251 |
252 | private var names: [PartialKeyPath<ComponentsObject>: String] = [
    |             |- warning: var 'names' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'names' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make var 'names' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	\.schemas: "schemas",
254 | 	\.parameters: "parameters",
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:99:20: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 97 | 	}
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
    |                    |- warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'basic' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:100:20: warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 98 |
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
    |                    |- warning: static property 'bearer' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'bearer' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | 	public static let digest: HTTPAuthScheme = "digest"
102 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:101:20: warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
 99 | 	public static let basic: HTTPAuthScheme = "basic"
100 | 	public static let bearer: HTTPAuthScheme = "bearer"
101 | 	public static let digest: HTTPAuthScheme = "digest"
    |                    |- warning: static property 'digest' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'digest' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:104:20: warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
102 |
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
    |                    |- warning: static property 'hoba' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'hoba' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:105:20: warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
103 | 	/// The HOBA scheme can be used with either HTTP servers or proxies. When used in response to a 407 Proxy Authentication Required indication, the appropriate proxy authentication header fields are used instead, as with any other HTTP authentication scheme.
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
    |                    |- warning: static property 'mutual' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'mutual' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:106:20: warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
104 | 	public static let hoba: HTTPAuthScheme = "hoba"
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
    |                    |- warning: static property 'oauth' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'oauth' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:107:20: warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
105 | 	public static let mutual: HTTPAuthScheme = "mutual"
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
    |                    |- warning: static property 'scramSHA1' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA1' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:108:20: warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
106 | 	public static let oauth: HTTPAuthScheme = "oauth"
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
    |                    |- warning: static property 'scramSHA256' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'scramSHA256' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
110 | }
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/SecuritySchemeObject.swift:109:20: warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | }
 73 |
 74 | public struct HTTPAuthScheme: LosslessStringConvertible, ExpressibleByStringLiteral, RawRepresentable, Hashable, Codable {
    |               `- note: consider making struct 'HTTPAuthScheme' conform to the 'Sendable' protocol
 75 |
 76 | 	public var rawValue: String
    :
107 | 	public static let scramSHA1: HTTPAuthScheme = "scram-sha-1"
108 | 	public static let scramSHA256: HTTPAuthScheme = "scram-sha-256"
109 | 	public static let vapid: HTTPAuthScheme = "vapid"
    |                    |- warning: static property 'vapid' is not concurrency-safe because non-'Sendable' type 'HTTPAuthScheme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'vapid' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | }
111 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[435/443] Compiling SwiftOpenAPI ServerVariableObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[436/443] Compiling SwiftOpenAPI SpecificationExtendable.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[437/443] Compiling SwiftOpenAPI TagObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[438/443] Compiling SwiftOpenAPI Version.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[439/443] Compiling SwiftOpenAPI XMLObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[440/443] Compiling SwiftOpenAPI OpenAPIDescriptable.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[441/443] Compiling SwiftOpenAPI OpenAPIDescription.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[442/443] Compiling SwiftOpenAPI OpenAPIType.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
[443/443] Compiling SwiftOpenAPI refactor.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Objects/Version.swift:5:20: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct Version: Codable, Comparable, LosslessStringConvertible, ExpressibleByStringInterpolation {
    |               `- note: consider making struct 'Version' conform to the 'Sendable' protocol
  4 |
  5 | 	public static let zero = Version(0, 0, 0)
    |                    |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |
  7 | 	/// version when you make incompatible API changes
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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:df03784badd7f27c5aaf58aceda7a3eace61955b295b55f91184969c309ad8ef
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/20] Write swift-version-24593BA9C3E375BF.txt
[2/30] Compiling SwiftSyntax510 Empty.swift
[3/30] Compiling SwiftSyntax600 Empty.swift
[4/30] Emitting module SwiftSyntax600
[5/31] Emitting module SwiftSyntax509
[6/31] Emitting module SwiftSyntax510
[8/31] Compiling SwiftSyntax509 Empty.swift
[10/33] Compiling SwiftSyntax601 Empty.swift
[11/33] Emitting module SwiftSyntax601
[12/33] Emitting module SwiftSyntax602
[13/33] Compiling SwiftSyntax602 Empty.swift
[17/93] Compiling SwiftSyntax AbsolutePosition.swift
[18/93] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[19/93] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[20/93] Compiling SwiftSyntax Assert.swift
[21/93] Compiling SwiftSyntax BumpPtrAllocator.swift
[22/93] Compiling SwiftSyntax CommonAncestor.swift
[23/93] Compiling SwiftSyntax Convenience.swift
[24/93] Compiling SwiftSyntax CustomTraits.swift
[25/93] Compiling SwiftSyntax EditorPlaceholder.swift
[26/101] Compiling SwiftSyntax SyntaxNodeStructure.swift
[27/101] Compiling SwiftSyntax SyntaxProtocol.swift
[28/101] Compiling SwiftSyntax SyntaxText.swift
[29/101] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[30/101] Compiling SwiftSyntax TokenDiagnostic.swift
[31/101] Compiling SwiftSyntax TokenSequence.swift
[32/101] Compiling SwiftSyntax TokenSyntax.swift
[33/101] Compiling SwiftSyntax Trivia.swift
[34/101] Compiling SwiftSyntax Utils.swift
[35/101] Compiling SwiftSyntax Identifier.swift
[36/101] Compiling SwiftSyntax MemoryLayout.swift
[37/101] Compiling SwiftSyntax MissingNodeInitializers.swift
[38/101] Compiling SwiftSyntax RawSyntax.swift
[39/101] Compiling SwiftSyntax RawSyntaxArena.swift
[40/101] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[41/101] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[42/101] Compiling SwiftSyntax RawSyntaxTokenView.swift
[43/101] Compiling SwiftSyntax SourceEdit.swift
[44/101] Emitting module SwiftSyntax
[45/101] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[46/101] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[47/101] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[48/101] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[49/101] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[50/101] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[51/101] Compiling SwiftSyntax RawSyntaxValidation.swift
[52/101] Compiling SwiftSyntax SyntaxNodesAB.swift
[53/101] Compiling SwiftSyntax SyntaxNodesC.swift
[54/101] Compiling SwiftSyntax SyntaxNodesD.swift
[55/101] Compiling SwiftSyntax SyntaxNodesEF.swift
[56/101] Compiling SwiftSyntax SyntaxNodesGHI.swift
[57/101] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[58/101] Compiling SwiftSyntax SyntaxNodesOP.swift
[59/101] Compiling SwiftSyntax SyntaxNodesQRS.swift
[60/101] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[61/101] Compiling SwiftSyntax SourceLength.swift
[62/101] Compiling SwiftSyntax SourceLocation.swift
[63/101] Compiling SwiftSyntax SourcePresence.swift
[64/101] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[65/101] Compiling SwiftSyntax Syntax.swift
[66/101] Compiling SwiftSyntax SyntaxChildren.swift
[67/101] Compiling SwiftSyntax SyntaxCollection.swift
[68/101] Compiling SwiftSyntax SyntaxHashable.swift
[69/101] Compiling SwiftSyntax SyntaxIdentifier.swift
[70/101] Compiling SwiftSyntax SyntaxRewriter.swift
[71/101] Compiling SwiftSyntax SyntaxTraits.swift
[72/101] Compiling SwiftSyntax SyntaxVisitor.swift
[73/101] Compiling SwiftSyntax TokenKind.swift
[74/101] Compiling SwiftSyntax Tokens.swift
[75/101] Compiling SwiftSyntax TriviaPieces.swift
[76/101] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[77/101] Compiling SwiftSyntax RawSyntaxNodesC.swift
[78/101] Compiling SwiftSyntax RawSyntaxNodesD.swift
[79/101] Compiling SwiftSyntax ChildNameForKeyPath.swift
[80/101] Compiling SwiftSyntax Keyword.swift
[81/101] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[82/101] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[83/101] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[84/101] Compiling SwiftSyntax SyntaxBaseNodes.swift
[85/101] Compiling SwiftSyntax SyntaxCollections.swift
[86/101] Compiling SwiftSyntax SyntaxEnum.swift
[87/101] Compiling SwiftSyntax SyntaxKind.swift
[89/160] Compiling SwiftDiagnostics Message.swift
[90/161] Compiling SwiftBasicFormat Syntax+Extensions.swift
[91/161] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[92/161] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[93/161] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[94/161] Compiling SwiftDiagnostics Note.swift
[95/161] Compiling SwiftParser Attributes.swift
[96/161] Compiling SwiftParser Availability.swift
[97/161] Compiling SwiftDiagnostics FixIt.swift
[98/161] Compiling SwiftBasicFormat InferIndentation.swift
[99/161] Compiling SwiftBasicFormat BasicFormat.swift
[100/161] Emitting module SwiftBasicFormat
[101/161] Compiling SwiftBasicFormat Indenter.swift
[102/162] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[103/162] Compiling SwiftParser CharacterInfo.swift
[104/162] Compiling SwiftParser CollectionNodes+Parsable.swift
[105/162] Emitting module SwiftDiagnostics
[106/162] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[109/161] Compiling SwiftParser StringLiterals.swift
[110/161] Compiling SwiftParser SwiftParserCompatibility.swift
[111/161] Compiling SwiftParser SwiftVersion.swift
[112/161] Compiling SwiftParser SyntaxUtils.swift
[113/161] Compiling SwiftParser TokenConsumer.swift
[114/161] Compiling SwiftParser TokenPrecedence.swift
[115/161] Compiling SwiftParser TokenSpec.swift
[116/161] Compiling SwiftParser TokenSpecSet.swift
[117/161] Compiling SwiftParser TopLevel.swift
[118/161] Compiling SwiftParser TriviaParser.swift
[119/161] Compiling SwiftParser Types.swift
[120/166] Emitting module SwiftParser
[125/166] Compiling SwiftParser CompilerFiles.swift
[126/166] Compiling SwiftParser Declarations.swift
[127/166] Compiling SwiftParser LoopProgressCondition.swift
[128/166] Compiling SwiftParser Modifiers.swift
[129/166] Compiling SwiftParser Names.swift
[130/166] Compiling SwiftParser Nominals.swift
[131/166] Compiling SwiftParser Parameters.swift
[132/166] Compiling SwiftParser ParseSourceFile.swift
[133/166] Compiling SwiftParser Parser.swift
[134/166] Compiling SwiftParser Patterns.swift
[135/166] Compiling SwiftParser Recovery.swift
[136/166] Compiling SwiftParser Specifiers.swift
[137/166] Compiling SwiftParser Statements.swift
[138/166] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[139/166] Compiling SwiftParser Lexeme.swift
[140/166] Compiling SwiftParser LexemeSequence.swift
[141/166] Compiling SwiftParser Lexer.swift
[142/166] Compiling SwiftParser RegexLiteralLexer.swift
[143/166] Compiling SwiftParser UnicodeScalarExtensions.swift
[144/166] Compiling SwiftParser Lookahead.swift
[145/166] Compiling SwiftParser Directives.swift
[146/166] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[147/166] Compiling SwiftParser Expressions.swift
[148/166] Compiling SwiftParser IncrementalParseTransition.swift
[149/166] Compiling SwiftParser IsValidIdentifier.swift
[150/166] Compiling SwiftParser Cursor.swift
[151/166] Compiling SwiftParser ExperimentalFeatures.swift
[152/166] Compiling SwiftParser IsLexerClassified.swift
[153/166] Compiling SwiftParser LayoutNodes+Parsable.swift
[154/166] Compiling SwiftParser Parser+TokenSpecSet.swift
[155/166] Compiling SwiftParser TokenSpecStaticMembers.swift
[157/189] Compiling SwiftOperators PrecedenceGroup.swift
[158/190] Compiling SwiftOperators OperatorError.swift
[159/190] Compiling SwiftOperators OperatorTable+Defaults.swift
[160/190] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[161/191] Compiling SwiftOperators SyntaxSynthesis.swift
[162/191] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[163/191] Compiling SwiftOperators PrecedenceGraph.swift
[164/191] Compiling SwiftOperators OperatorTable.swift
[165/191] Compiling SwiftOperators Operator.swift
[166/191] Compiling SwiftOperators OperatorError+Diagnostics.swift
[167/191] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[168/191] Emitting module SwiftOperators
[169/191] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[170/191] Compiling SwiftParserDiagnostics Utils.swift
[171/191] Compiling SwiftOperators OperatorTable+Semantics.swift
[174/191] Compiling SwiftOperators OperatorTable+Folding.swift
[176/192] Emitting module SwiftParserDiagnostics
[179/191] Compiling SwiftParserDiagnostics MissingNodesError.swift
[180/191] Compiling SwiftParserDiagnostics MissingTokenError.swift
[181/191] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[182/191] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[184/206] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[185/206] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[186/207] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[187/207] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[188/207] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[189/207] Compiling SwiftSyntaxBuilder Indenter.swift
[190/207] Compiling SwiftSyntaxBuilder ListBuilder.swift
[191/207] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[192/207] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[193/207] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[194/207] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[195/207] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[196/207] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[197/207] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[198/207] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[199/207] Emitting module SwiftSyntaxBuilder
[201/224] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[202/224] Compiling SwiftSyntaxMacros Macro+Format.swift
[203/226] Compiling SwiftSyntaxMacros Macro.swift
[204/226] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[205/226] Compiling SwiftSyntaxMacros MemberMacro.swift
[206/226] Compiling SwiftSyntaxMacros PeerMacro.swift
[207/226] Compiling SwiftSyntaxMacros AccessorMacro.swift
[208/226] Compiling SwiftSyntaxMacros AttachedMacro.swift
[209/226] Compiling SwiftSyntaxMacros BodyMacro.swift
[210/226] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[211/226] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[212/226] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[213/226] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[214/226] Emitting module SwiftSyntaxMacros
[215/226] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[216/226] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[217/226] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[218/226] Compiling SwiftSyntaxMacros PreambleMacro.swift
[219/226] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[221/235] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[222/236] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[223/236] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[224/236] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[225/236] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[226/236] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[227/236] Emitting module SwiftSyntaxMacroExpansion
[228/236] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[229/236] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[230/236] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[232/248] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[233/248] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[234/248] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[235/249] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[236/249] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[237/249] Emitting module SwiftCompilerPluginMessageHandling
[238/249] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[239/249] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[240/249] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[241/249] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[242/249] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[243/249] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[244/249] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[246/251] Emitting module SwiftCompilerPlugin
[247/251] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[249/255] Compiling SwiftOpenAPIMacros SyntaxExt.swift
[250/255] Compiling SwiftOpenAPIMacros StringError.swift
[251/255] Emitting module SwiftOpenAPIMacros
/host/spi-builder-workspace/Sources/SwiftOpenAPIMacros/OpenAPIDescriptionMacro.swift:18:15: warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter
 16 | }
 17 |
 18 | public struct OpenAPIDescriptionMacro: ExtensionMacro, MemberMacro {
    |               `- warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter
 19 |
 20 |     public static func expansion(
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntaxMacros/MacroProtocols/MemberMacro.swift:89:22: note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
53 |   /// - Returns: the set of member declarations introduced by this macro, which
54 |   /// are nested inside the `attachedTo` declaration.
55 |   static func expansion(
   |               `- note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
56 |     of node: AttributeSyntax,
57 |     providingMembersOf declaration: some DeclGroupSyntax,
   :
87 |     message: "`MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter"
88 |   )
89 |   public static func expansion(
   |                      `- note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
90 |     of node: AttributeSyntax,
91 |     providingMembersOf declaration: some DeclGroupSyntax,
[252/255] Compiling SwiftOpenAPIMacros OpenAPIDescriptionMacro.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPIMacros/OpenAPIDescriptionMacro.swift:18:15: warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter
 16 | }
 17 |
 18 | public struct OpenAPIDescriptionMacro: ExtensionMacro, MemberMacro {
    |               `- warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter
 19 |
 20 |     public static func expansion(
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntaxMacros/MacroProtocols/MemberMacro.swift:89:22: note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
53 |   /// - Returns: the set of member declarations introduced by this macro, which
54 |   /// are nested inside the `attachedTo` declaration.
55 |   static func expansion(
   |               `- note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
56 |     of node: AttributeSyntax,
57 |     providingMembersOf declaration: some DeclGroupSyntax,
   :
87 |     message: "`MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter"
88 |   )
89 |   public static func expansion(
   |                      `- note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
90 |     of node: AttributeSyntax,
91 |     providingMembersOf declaration: some DeclGroupSyntax,
[253/255] Write Objects.LinkFileList
[254/255] Linking SwiftOpenAPIMacros-tool
error: emit-module command failed with exit code 1 (use -v to see invocation)
[256/387] Emitting module SwiftOpenAPI
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
[257/396] Compiling SwiftOpenAPI CodableTypes.swift
[258/396] Compiling SwiftOpenAPI OAuthFlowObject.swift
[259/396] Compiling SwiftOpenAPI OAuthFlowsObject.swift
[260/396] Compiling SwiftOpenAPI OpenAPIObject.swift
[261/396] Compiling SwiftOpenAPI OperationObject.swift
[262/396] Compiling SwiftOpenAPI ParameterObject.swift
[263/396] Compiling SwiftOpenAPI Path.swift
[264/396] Compiling SwiftOpenAPI PathItemObject.swift
[265/396] Compiling SwiftOpenAPI PathsObject.swift
[266/405] Compiling SwiftOpenAPI AnyRange.swift
[267/405] Compiling SwiftOpenAPI Bool++.swift
[268/405] Compiling SwiftOpenAPI Codable++.swift
[269/405] Compiling SwiftOpenAPI CodingKeys.swift
[270/405] Compiling SwiftOpenAPI Collection++.swift
[271/405] Compiling SwiftOpenAPI Decimal++.swift
[272/405] Compiling SwiftOpenAPI ExpressibleBy.swift
[273/405] Compiling SwiftOpenAPI Locks.swift
[274/405] Compiling SwiftOpenAPI OrderedDictionary.swift
[275/405] Compiling SwiftOpenAPI StringConvertibleHintProvider.swift
[276/405] Emitting module SwiftOpenAPI
[277/405] Compiling SwiftOpenAPI ServerVariableObject.swift
[278/405] Compiling SwiftOpenAPI SpecificationExtendable.swift
[279/405] Compiling SwiftOpenAPI TagObject.swift
[280/405] Compiling SwiftOpenAPI Version.swift
[281/405] Compiling SwiftOpenAPI XMLObject.swift
[282/405] Compiling SwiftOpenAPI OpenAPIDescriptable.swift
[283/405] Compiling SwiftOpenAPI OpenAPIDescription.swift
[284/405] Compiling SwiftOpenAPI OpenAPIType.swift
[285/405] Compiling SwiftOpenAPI refactor.swift
[286/405] Compiling SwiftOpenAPI ReferenceObject.swift
[287/405] Compiling SwiftOpenAPI EncodingObject.swift
[288/405] Compiling SwiftOpenAPI ExampleObject.swift
[289/405] Compiling SwiftOpenAPI ExternalDocumentationObject.swift
[290/405] Compiling SwiftOpenAPI HeaderObject.swift
[291/405] Compiling SwiftOpenAPI InfoObject.swift
[292/405] Compiling SwiftOpenAPI AdditionalProperties.swift
[293/405] Compiling SwiftOpenAPI DataFormat.swift
[294/405] Compiling SwiftOpenAPI DataType.swift
[295/405] Compiling SwiftOpenAPI DiscriminatorObject.swift
[296/405] Compiling SwiftOpenAPI ExpressibleBySchemaObject.swift
[297/405] Compiling SwiftOpenAPI SchemaContexts.swift
[298/405] Compiling SwiftOpenAPI SchemaObjec+deprecated.swift
[299/405] Compiling SwiftOpenAPI SchemaObject++.swift
[300/405] Compiling SwiftOpenAPI SchemaObject.swift
[301/405] Compiling SwiftOpenAPI LicenseObject.swift
[302/405] Compiling SwiftOpenAPI LinkObject.swift
[303/405] Compiling SwiftOpenAPI MediaType.swift
[304/405] Compiling SwiftOpenAPI MediaTypeObject.swift
[314/405] Compiling SwiftOpenAPI ReferenceOr.swift
[315/405] Compiling SwiftOpenAPI RequestBodyObject.swift
[316/405] Compiling SwiftOpenAPI ResponseObject.swift
[317/405] Compiling SwiftOpenAPI ResponsesObject.swift
[318/405] Compiling SwiftOpenAPI RuntimeExpression.swift
[319/405] Compiling SwiftOpenAPI RuntimeExpressionOr.swift
[320/405] Compiling SwiftOpenAPI SecurityRequirementObject.swift
[321/405] Compiling SwiftOpenAPI SecuritySchemeObject.swift
[322/405] Compiling SwiftOpenAPI ServerObject.swift
[323/405] Compiling SwiftOpenAPI String++.swift
[324/405] Compiling SwiftOpenAPI AnyValueEncoder.swift
[325/405] Compiling SwiftOpenAPI CheckAllKeysDecoder.swift
[326/405] Compiling SwiftOpenAPI DateEncodingFormat.swift
[327/405] Compiling SwiftOpenAPI HeadersEncoder.swift
[328/405] Compiling SwiftOpenAPI KeyEncodingStrategy.swift
[329/405] Compiling SwiftOpenAPI ParametersEncoder.swift
[330/405] Compiling SwiftOpenAPI Ref.swift
[331/405] Compiling SwiftOpenAPI SchemeEncoder.swift
[332/405] Compiling SwiftOpenAPI TypeRevision.swift
[333/405] Compiling SwiftOpenAPI TypeRevisionDecoder.swift
[334/405] Compiling SwiftOpenAPI TypeRevisionEncoder.swift
[335/405] Compiling SwiftOpenAPI AnyValue.swift
[336/405] Compiling SwiftOpenAPI CallbackObject.swift
[337/405] Compiling SwiftOpenAPI ComponentsObject.swift
[338/405] Compiling SwiftOpenAPI CompositeType.swift
[339/405] Compiling SwiftOpenAPI ContactObject.swift
[340/405] Compiling SwiftOpenAPI ContentObject.swift
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:40:8: error: Unsupported runtime
 38 | import Musl
 39 | #else
 40 | #error("Unsupported runtime")
    |        `- error: Unsupported runtime
 41 | #endif
 42 |
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:58:47: error: cannot find type 'pthread_rwlock_t' in scope
 56 | 	fileprivate var shared = true
 57 | 	#else
 58 | 	fileprivate let rwlock: UnsafeMutablePointer<pthread_rwlock_t> =
    |                                               `- error: cannot find type 'pthread_rwlock_t' in scope
 59 | 		UnsafeMutablePointer.allocate(capacity: 1)
 60 | 	#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:13: error: cannot find 'pthread_rwlock_init' in scope
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |             `- error: cannot find 'pthread_rwlock_init' in scope
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:69:41: error: 'nil' requires a contextual type
 67 | 		InitializeSRWLock(rwlock)
 68 | 		#else
 69 | 		let err = pthread_rwlock_init(rwlock, nil)
    |                                         `- error: 'nil' requires a contextual type
 70 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 71 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:81:13: error: cannot find 'pthread_rwlock_destroy' in scope
 79 | 		self.rwlock.deallocate()
 80 | 		#else
 81 | 		let err = pthread_rwlock_destroy(self.rwlock)
    |             `- error: cannot find 'pthread_rwlock_destroy' in scope
 82 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
 83 | 		self.rwlock.deallocate()
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:98:13: error: cannot find 'pthread_rwlock_rdlock' in scope
 96 | 		shared = true
 97 | 		#else
 98 | 		let err = pthread_rwlock_rdlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_rdlock' in scope
 99 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
100 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:114:13: error: cannot find 'pthread_rwlock_wrlock' in scope
112 | 		shared = false
113 | 		#else
114 | 		let err = pthread_rwlock_wrlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_wrlock' in scope
115 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
116 | 		#endif
/host/spi-builder-workspace/Sources/SwiftOpenAPI/Common/Locks.swift:134:13: error: cannot find 'pthread_rwlock_unlock' in scope
132 | 		}
133 | 		#else
134 | 		let err = pthread_rwlock_unlock(rwlock)
    |             `- error: cannot find 'pthread_rwlock_unlock' in scope
135 | 		precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
136 | 		#endif
BUILD FAILURE 6.1 android