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

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of SwiftCBOR with Swift 6.0 for Linux.

Swift 6 data race errors: 17

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/valpackett/SwiftCBOR.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/valpackett/SwiftCBOR
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at ec24382 Lowered the fuzzing threshold so we don't overflow the stack on CI
Cloned https://github.com/valpackett/SwiftCBOR.git
Revision (git rev-parse @):
ec24382864e5ffc6d3915c0818745d5ab12545a8
SUCCESS checkout https://github.com/valpackett/SwiftCBOR.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/valpackett/SwiftCBOR.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/18] Emitting module SwiftCBOR
/host/spi-builder-workspace/Sources/CBOR.swift:149:23: warning: static property 'standardDateTimeString' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
147 |
148 | extension CBOR.Tag {
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
    |                       |- warning: static property 'standardDateTimeString' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'standardDateTimeString' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
/host/spi-builder-workspace/Sources/CBOR.swift:150:23: warning: static property 'epochBasedDateTime' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
148 | extension CBOR.Tag {
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
    |                       |- warning: static property 'epochBasedDateTime' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'epochBasedDateTime' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
/host/spi-builder-workspace/Sources/CBOR.swift:151:23: warning: static property 'positiveBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
    |                       |- warning: static property 'positiveBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'positiveBignum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
/host/spi-builder-workspace/Sources/CBOR.swift:152:23: warning: static property 'negativeBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
    |                       |- warning: static property 'negativeBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'negativeBignum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
/host/spi-builder-workspace/Sources/CBOR.swift:153:23: warning: static property 'decimalFraction' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
    |                       |- warning: static property 'decimalFraction' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'decimalFraction' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
155 |
/host/spi-builder-workspace/Sources/CBOR.swift:154:23: warning: static property 'bigfloat' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
    |                       |- warning: static property 'bigfloat' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'bigfloat' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |
156 |     // 6...20 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:158:23: warning: static property 'expectedConversionToBase64URLEncoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
156 |     // 6...20 unassigned
157 |
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
    |                       |- warning: static property 'expectedConversionToBase64URLEncoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase64URLEncoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
/host/spi-builder-workspace/Sources/CBOR.swift:159:23: warning: static property 'expectedConversionToBase64Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
157 |
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
    |                       |- warning: static property 'expectedConversionToBase64Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase64Encoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
/host/spi-builder-workspace/Sources/CBOR.swift:160:23: warning: static property 'expectedConversionToBase16Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
    |                       |- warning: static property 'expectedConversionToBase16Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase16Encoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
162 |
/host/spi-builder-workspace/Sources/CBOR.swift:161:23: warning: static property 'encodedCBORDataItem' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
    |                       |- warning: static property 'encodedCBORDataItem' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'encodedCBORDataItem' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 |     // 25...31 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:165:23: warning: static property 'uri' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
163 |     // 25...31 unassigned
164 |
165 |     public static let uri = CBOR.Tag(rawValue: 32)
    |                       |- warning: static property 'uri' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
/host/spi-builder-workspace/Sources/CBOR.swift:166:23: warning: static property 'base64Url' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
164 |
165 |     public static let uri = CBOR.Tag(rawValue: 32)
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
    |                       |- warning: static property 'base64Url' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'base64Url' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
/host/spi-builder-workspace/Sources/CBOR.swift:167:23: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
165 |     public static let uri = CBOR.Tag(rawValue: 32)
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
    |                       |- warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'base64' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
/host/spi-builder-workspace/Sources/CBOR.swift:168:23: warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
    |                       |- warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'regularExpression' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
/host/spi-builder-workspace/Sources/CBOR.swift:169:23: warning: static property 'mimeMessage' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
    |                       |- warning: static property 'mimeMessage' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'mimeMessage' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
171 |
/host/spi-builder-workspace/Sources/CBOR.swift:170:23: warning: static property 'uuid' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
    |                       |- warning: static property 'uuid' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 |
172 |     // 38...55798 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:174:23: warning: static property 'selfDescribeCBOR' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
172 |     // 38...55798 unassigned
173 |
174 |     public static let selfDescribeCBOR = CBOR.Tag(rawValue: 55799)
    |                       |- warning: static property 'selfDescribeCBOR' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'selfDescribeCBOR' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 | }
176 |
/host/spi-builder-workspace/Sources/Decoder/SingleValueDecodingContainer.swift:234:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
232 |     }
233 |
234 |     func decode(_ type: Data.Type) throws -> Data {
    |          |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
    |          |- note: candidate has non-matching type '(Data.Type) throws -> Data'
    |          |- note: move 'decode' to another extension to silence this warning
    |          `- note: make 'decode' private to silence this warning
235 |         guard let cbor = try? CBOR.decode(self.data.map { $0 }) else {
236 |             let context = DecodingError.Context(codingPath: self.codingPath, debugDescription: "Invalid format: \(self.data)")
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 |     func decode(_ type: Int64.Type) throws -> Int64
13 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
14 |     func decode(_ type: Int128.Type) throws -> Int128
   |          `- note: requirement 'decode' declared here
15 |     func decode(_ type: UInt.Type) throws -> UInt
16 |     func decode(_ type: UInt8.Type) throws -> UInt8
/host/spi-builder-workspace/Sources/Encoder/SingleValueEncodingContainer.swift:134:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
132 |     }
133 |
134 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
135 |         try checkCanEncode(value: value)
136 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer:14:19: note: requirement 'encode' declared here
12 |     mutating func encode(_ value: Int64) throws
13 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
14 |     mutating func encode(_ value: Int128) throws
   |                   `- note: requirement 'encode' declared here
15 |     mutating func encode(_ value: UInt) throws
16 |     mutating func encode(_ value: UInt8) throws
/host/spi-builder-workspace/Sources/Encoder/SingleValueEncodingContainer.swift:141:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
139 |     }
140 |
141 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
142 |         try checkCanEncode(value: value)
143 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer:21:19: note: requirement 'encode' declared here
19 |     mutating func encode(_ value: UInt64) throws
20 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
21 |     mutating func encode(_ value: UInt128) throws
   |                   `- note: requirement 'encode' declared here
22 |     mutating func encode<T>(_ value: T) throws where T : Encodable
23 | }
[4/20] Compiling SwiftCBOR FixedWidthInteger+Bytes.swift
[5/20] Compiling SwiftCBOR Util.swift
[6/20] Compiling SwiftCBOR SingleValueDecodingContainer.swift
/host/spi-builder-workspace/Sources/Decoder/SingleValueDecodingContainer.swift:234:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
232 |     }
233 |
234 |     func decode(_ type: Data.Type) throws -> Data {
    |          |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
    |          |- note: candidate has non-matching type '(Data.Type) throws -> Data'
    |          |- note: move 'decode' to another extension to silence this warning
    |          `- note: make 'decode' private to silence this warning
235 |         guard let cbor = try? CBOR.decode(self.data.map { $0 }) else {
236 |             let context = DecodingError.Context(codingPath: self.codingPath, debugDescription: "Invalid format: \(self.data)")
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 |     func decode(_ type: Int64.Type) throws -> Int64
13 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
14 |     func decode(_ type: Int128.Type) throws -> Int128
   |          `- note: requirement 'decode' declared here
15 |     func decode(_ type: UInt.Type) throws -> UInt
16 |     func decode(_ type: UInt8.Type) throws -> UInt8
[7/20] Compiling SwiftCBOR UnkeyedDecodingContainer.swift
/host/spi-builder-workspace/Sources/Decoder/SingleValueDecodingContainer.swift:234:10: warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
232 |     }
233 |
234 |     func decode(_ type: Data.Type) throws -> Data {
    |          |- warning: instance method 'decode' nearly matches defaulted requirement 'decode' of protocol 'SingleValueDecodingContainer'
    |          |- note: candidate has non-matching type '(Data.Type) throws -> Data'
    |          |- note: move 'decode' to another extension to silence this warning
    |          `- note: make 'decode' private to silence this warning
235 |         guard let cbor = try? CBOR.decode(self.data.map { $0 }) else {
236 |             let context = DecodingError.Context(codingPath: self.codingPath, debugDescription: "Invalid format: \(self.data)")
Swift.SingleValueDecodingContainer:14:10: note: requirement 'decode' declared here
12 |     func decode(_ type: Int64.Type) throws -> Int64
13 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
14 |     func decode(_ type: Int128.Type) throws -> Int128
   |          `- note: requirement 'decode' declared here
15 |     func decode(_ type: UInt.Type) throws -> UInt
16 |     func decode(_ type: UInt8.Type) throws -> UInt8
[8/20] Compiling SwiftCBOR CodableCBOREncoder.swift
[9/20] Compiling SwiftCBOR KeyedEncodingContainer.swift
[10/20] Compiling SwiftCBOR SingleValueEncodingContainer.swift
/host/spi-builder-workspace/Sources/Encoder/SingleValueEncodingContainer.swift:134:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
132 |     }
133 |
134 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
135 |         try checkCanEncode(value: value)
136 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer:14:19: note: requirement 'encode' declared here
12 |     mutating func encode(_ value: Int64) throws
13 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
14 |     mutating func encode(_ value: Int128) throws
   |                   `- note: requirement 'encode' declared here
15 |     mutating func encode(_ value: UInt) throws
16 |     mutating func encode(_ value: UInt8) throws
/host/spi-builder-workspace/Sources/Encoder/SingleValueEncodingContainer.swift:141:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
139 |     }
140 |
141 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
142 |         try checkCanEncode(value: value)
143 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer:21:19: note: requirement 'encode' declared here
19 |     mutating func encode(_ value: UInt64) throws
20 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
21 |     mutating func encode(_ value: UInt128) throws
   |                   `- note: requirement 'encode' declared here
22 |     mutating func encode<T>(_ value: T) throws where T : Encodable
23 | }
[11/20] Compiling SwiftCBOR UnkeyedEncodingContainer.swift
/host/spi-builder-workspace/Sources/Encoder/SingleValueEncodingContainer.swift:134:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
132 |     }
133 |
134 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
135 |         try checkCanEncode(value: value)
136 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer:14:19: note: requirement 'encode' declared here
12 |     mutating func encode(_ value: Int64) throws
13 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
14 |     mutating func encode(_ value: Int128) throws
   |                   `- note: requirement 'encode' declared here
15 |     mutating func encode(_ value: UInt) throws
16 |     mutating func encode(_ value: UInt8) throws
/host/spi-builder-workspace/Sources/Encoder/SingleValueEncodingContainer.swift:141:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
139 |     }
140 |
141 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
142 |         try checkCanEncode(value: value)
143 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer:21:19: note: requirement 'encode' declared here
19 |     mutating func encode(_ value: UInt64) throws
20 |     @available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
21 |     mutating func encode(_ value: UInt128) throws
   |                   `- note: requirement 'encode' declared here
22 |     mutating func encode<T>(_ value: T) throws where T : Encodable
23 | }
[12/20] Compiling SwiftCBOR AnyCodingKey.swift
/host/spi-builder-workspace/Sources/CBOR.swift:149:23: warning: static property 'standardDateTimeString' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
147 |
148 | extension CBOR.Tag {
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
    |                       |- warning: static property 'standardDateTimeString' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'standardDateTimeString' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
/host/spi-builder-workspace/Sources/CBOR.swift:150:23: warning: static property 'epochBasedDateTime' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
148 | extension CBOR.Tag {
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
    |                       |- warning: static property 'epochBasedDateTime' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'epochBasedDateTime' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
/host/spi-builder-workspace/Sources/CBOR.swift:151:23: warning: static property 'positiveBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
    |                       |- warning: static property 'positiveBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'positiveBignum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
/host/spi-builder-workspace/Sources/CBOR.swift:152:23: warning: static property 'negativeBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
    |                       |- warning: static property 'negativeBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'negativeBignum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
/host/spi-builder-workspace/Sources/CBOR.swift:153:23: warning: static property 'decimalFraction' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
    |                       |- warning: static property 'decimalFraction' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'decimalFraction' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
155 |
/host/spi-builder-workspace/Sources/CBOR.swift:154:23: warning: static property 'bigfloat' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
    |                       |- warning: static property 'bigfloat' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'bigfloat' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |
156 |     // 6...20 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:158:23: warning: static property 'expectedConversionToBase64URLEncoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
156 |     // 6...20 unassigned
157 |
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
    |                       |- warning: static property 'expectedConversionToBase64URLEncoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase64URLEncoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
/host/spi-builder-workspace/Sources/CBOR.swift:159:23: warning: static property 'expectedConversionToBase64Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
157 |
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
    |                       |- warning: static property 'expectedConversionToBase64Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase64Encoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
/host/spi-builder-workspace/Sources/CBOR.swift:160:23: warning: static property 'expectedConversionToBase16Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
    |                       |- warning: static property 'expectedConversionToBase16Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase16Encoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
162 |
/host/spi-builder-workspace/Sources/CBOR.swift:161:23: warning: static property 'encodedCBORDataItem' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
    |                       |- warning: static property 'encodedCBORDataItem' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'encodedCBORDataItem' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 |     // 25...31 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:165:23: warning: static property 'uri' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
163 |     // 25...31 unassigned
164 |
165 |     public static let uri = CBOR.Tag(rawValue: 32)
    |                       |- warning: static property 'uri' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
/host/spi-builder-workspace/Sources/CBOR.swift:166:23: warning: static property 'base64Url' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
164 |
165 |     public static let uri = CBOR.Tag(rawValue: 32)
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
    |                       |- warning: static property 'base64Url' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'base64Url' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
/host/spi-builder-workspace/Sources/CBOR.swift:167:23: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
165 |     public static let uri = CBOR.Tag(rawValue: 32)
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
    |                       |- warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'base64' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
/host/spi-builder-workspace/Sources/CBOR.swift:168:23: warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
    |                       |- warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'regularExpression' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
/host/spi-builder-workspace/Sources/CBOR.swift:169:23: warning: static property 'mimeMessage' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
    |                       |- warning: static property 'mimeMessage' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'mimeMessage' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
171 |
/host/spi-builder-workspace/Sources/CBOR.swift:170:23: warning: static property 'uuid' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
    |                       |- warning: static property 'uuid' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 |
172 |     // 38...55798 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:174:23: warning: static property 'selfDescribeCBOR' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
172 |     // 38...55798 unassigned
173 |
174 |     public static let selfDescribeCBOR = CBOR.Tag(rawValue: 55799)
    |                       |- warning: static property 'selfDescribeCBOR' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'selfDescribeCBOR' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 | }
176 |
[13/20] Compiling SwiftCBOR CBOR.swift
/host/spi-builder-workspace/Sources/CBOR.swift:149:23: warning: static property 'standardDateTimeString' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
147 |
148 | extension CBOR.Tag {
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
    |                       |- warning: static property 'standardDateTimeString' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'standardDateTimeString' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
/host/spi-builder-workspace/Sources/CBOR.swift:150:23: warning: static property 'epochBasedDateTime' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
148 | extension CBOR.Tag {
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
    |                       |- warning: static property 'epochBasedDateTime' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'epochBasedDateTime' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
/host/spi-builder-workspace/Sources/CBOR.swift:151:23: warning: static property 'positiveBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
    |                       |- warning: static property 'positiveBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'positiveBignum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
/host/spi-builder-workspace/Sources/CBOR.swift:152:23: warning: static property 'negativeBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
    |                       |- warning: static property 'negativeBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'negativeBignum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
/host/spi-builder-workspace/Sources/CBOR.swift:153:23: warning: static property 'decimalFraction' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
    |                       |- warning: static property 'decimalFraction' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'decimalFraction' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
155 |
/host/spi-builder-workspace/Sources/CBOR.swift:154:23: warning: static property 'bigfloat' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
    |                       |- warning: static property 'bigfloat' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'bigfloat' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |
156 |     // 6...20 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:158:23: warning: static property 'expectedConversionToBase64URLEncoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
156 |     // 6...20 unassigned
157 |
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
    |                       |- warning: static property 'expectedConversionToBase64URLEncoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase64URLEncoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
/host/spi-builder-workspace/Sources/CBOR.swift:159:23: warning: static property 'expectedConversionToBase64Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
157 |
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
    |                       |- warning: static property 'expectedConversionToBase64Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase64Encoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
/host/spi-builder-workspace/Sources/CBOR.swift:160:23: warning: static property 'expectedConversionToBase16Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
    |                       |- warning: static property 'expectedConversionToBase16Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase16Encoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
162 |
/host/spi-builder-workspace/Sources/CBOR.swift:161:23: warning: static property 'encodedCBORDataItem' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
    |                       |- warning: static property 'encodedCBORDataItem' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'encodedCBORDataItem' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 |     // 25...31 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:165:23: warning: static property 'uri' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
163 |     // 25...31 unassigned
164 |
165 |     public static let uri = CBOR.Tag(rawValue: 32)
    |                       |- warning: static property 'uri' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
/host/spi-builder-workspace/Sources/CBOR.swift:166:23: warning: static property 'base64Url' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
164 |
165 |     public static let uri = CBOR.Tag(rawValue: 32)
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
    |                       |- warning: static property 'base64Url' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'base64Url' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
/host/spi-builder-workspace/Sources/CBOR.swift:167:23: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
165 |     public static let uri = CBOR.Tag(rawValue: 32)
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
    |                       |- warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'base64' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
/host/spi-builder-workspace/Sources/CBOR.swift:168:23: warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
    |                       |- warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'regularExpression' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
/host/spi-builder-workspace/Sources/CBOR.swift:169:23: warning: static property 'mimeMessage' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
    |                       |- warning: static property 'mimeMessage' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'mimeMessage' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
171 |
/host/spi-builder-workspace/Sources/CBOR.swift:170:23: warning: static property 'uuid' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
    |                       |- warning: static property 'uuid' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 |
172 |     // 38...55798 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:174:23: warning: static property 'selfDescribeCBOR' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
172 |     // 38...55798 unassigned
173 |
174 |     public static let selfDescribeCBOR = CBOR.Tag(rawValue: 55799)
    |                       |- warning: static property 'selfDescribeCBOR' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'selfDescribeCBOR' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 | }
176 |
[14/20] Compiling SwiftCBOR CBORDecoder.swift
/host/spi-builder-workspace/Sources/CBOR.swift:149:23: warning: static property 'standardDateTimeString' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
147 |
148 | extension CBOR.Tag {
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
    |                       |- warning: static property 'standardDateTimeString' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'standardDateTimeString' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
/host/spi-builder-workspace/Sources/CBOR.swift:150:23: warning: static property 'epochBasedDateTime' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
148 | extension CBOR.Tag {
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
    |                       |- warning: static property 'epochBasedDateTime' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'epochBasedDateTime' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
/host/spi-builder-workspace/Sources/CBOR.swift:151:23: warning: static property 'positiveBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
149 |     public static let standardDateTimeString = CBOR.Tag(rawValue: 0)
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
    |                       |- warning: static property 'positiveBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'positiveBignum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
/host/spi-builder-workspace/Sources/CBOR.swift:152:23: warning: static property 'negativeBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
150 |     public static let epochBasedDateTime = CBOR.Tag(rawValue: 1)
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
    |                       |- warning: static property 'negativeBignum' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'negativeBignum' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
/host/spi-builder-workspace/Sources/CBOR.swift:153:23: warning: static property 'decimalFraction' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
151 |     public static let positiveBignum = CBOR.Tag(rawValue: 2)
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
    |                       |- warning: static property 'decimalFraction' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'decimalFraction' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
155 |
/host/spi-builder-workspace/Sources/CBOR.swift:154:23: warning: static property 'bigfloat' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
152 |     public static let negativeBignum = CBOR.Tag(rawValue: 3)
153 |     public static let decimalFraction = CBOR.Tag(rawValue: 4)
154 |     public static let bigfloat = CBOR.Tag(rawValue: 5)
    |                       |- warning: static property 'bigfloat' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'bigfloat' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |
156 |     // 6...20 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:158:23: warning: static property 'expectedConversionToBase64URLEncoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
156 |     // 6...20 unassigned
157 |
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
    |                       |- warning: static property 'expectedConversionToBase64URLEncoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase64URLEncoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
/host/spi-builder-workspace/Sources/CBOR.swift:159:23: warning: static property 'expectedConversionToBase64Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
157 |
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
    |                       |- warning: static property 'expectedConversionToBase64Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase64Encoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
/host/spi-builder-workspace/Sources/CBOR.swift:160:23: warning: static property 'expectedConversionToBase16Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
158 |     public static let expectedConversionToBase64URLEncoding = CBOR.Tag(rawValue: 21)
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
    |                       |- warning: static property 'expectedConversionToBase16Encoding' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'expectedConversionToBase16Encoding' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
162 |
/host/spi-builder-workspace/Sources/CBOR.swift:161:23: warning: static property 'encodedCBORDataItem' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
159 |     public static let expectedConversionToBase64Encoding = CBOR.Tag(rawValue: 22)
160 |     public static let expectedConversionToBase16Encoding = CBOR.Tag(rawValue: 23)
161 |     public static let encodedCBORDataItem = CBOR.Tag(rawValue: 24)
    |                       |- warning: static property 'encodedCBORDataItem' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'encodedCBORDataItem' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
162 |
163 |     // 25...31 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:165:23: warning: static property 'uri' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
163 |     // 25...31 unassigned
164 |
165 |     public static let uri = CBOR.Tag(rawValue: 32)
    |                       |- warning: static property 'uri' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uri' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
/host/spi-builder-workspace/Sources/CBOR.swift:166:23: warning: static property 'base64Url' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
164 |
165 |     public static let uri = CBOR.Tag(rawValue: 32)
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
    |                       |- warning: static property 'base64Url' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'base64Url' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
/host/spi-builder-workspace/Sources/CBOR.swift:167:23: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
165 |     public static let uri = CBOR.Tag(rawValue: 32)
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
    |                       |- warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'base64' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
/host/spi-builder-workspace/Sources/CBOR.swift:168:23: warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
166 |     public static let base64Url = CBOR.Tag(rawValue: 33)
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
    |                       |- warning: static property 'regularExpression' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'regularExpression' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
/host/spi-builder-workspace/Sources/CBOR.swift:169:23: warning: static property 'mimeMessage' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
167 |     public static let base64 = CBOR.Tag(rawValue: 34)
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
    |                       |- warning: static property 'mimeMessage' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'mimeMessage' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
171 |
/host/spi-builder-workspace/Sources/CBOR.swift:170:23: warning: static property 'uuid' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
168 |     public static let regularExpression = CBOR.Tag(rawValue: 35)
169 |     public static let mimeMessage = CBOR.Tag(rawValue: 36)
170 |     public static let uuid = CBOR.Tag(rawValue: 37)
    |                       |- warning: static property 'uuid' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'uuid' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 |
172 |     // 38...55798 unassigned
/host/spi-builder-workspace/Sources/CBOR.swift:174:23: warning: static property 'selfDescribeCBOR' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
133 |     }
134 |
135 |     public struct Tag: RawRepresentable, Equatable, Hashable {
    |                   `- note: consider making struct 'Tag' conform to the 'Sendable' protocol
136 |         public let rawValue: UInt64
137 |
    :
172 |     // 38...55798 unassigned
173 |
174 |     public static let selfDescribeCBOR = CBOR.Tag(rawValue: 55799)
    |                       |- warning: static property 'selfDescribeCBOR' is not concurrency-safe because non-'Sendable' type 'CBOR.Tag' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'selfDescribeCBOR' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 | }
176 |
[15/20] Compiling SwiftCBOR CBORInputStream.swift
[16/20] Compiling SwiftCBOR CBOROptions.swift
[17/20] Compiling SwiftCBOR CBOREncodable.swift
[18/20] Compiling SwiftCBOR CBOREncoder.swift
[19/20] Compiling SwiftCBOR CodableCBORDecoder.swift
[20/20] Compiling SwiftCBOR KeyedDecodingContainer.swift
Build complete! (11.63s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftCBOR",
  "name" : "SwiftCBOR",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftCBOR",
      "targets" : [
        "SwiftCBOR"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftCBORTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftCBORTests",
      "path" : "Tests",
      "sources" : [
        "CBORCodableRoundtripTests.swift",
        "CBORDecoderTests.swift",
        "CBOREncodableTests.swift",
        "CBOREncoderTests.swift",
        "CBORTests.swift",
        "CodableCBORDecoderTests.swift",
        "CodableCBOREncoderTests.swift",
        "Helpers.swift"
      ],
      "target_dependencies" : [
        "SwiftCBOR"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftCBOR",
      "module_type" : "SwiftTarget",
      "name" : "SwiftCBOR",
      "path" : "Sources",
      "product_memberships" : [
        "SwiftCBOR"
      ],
      "sources" : [
        "AnyCodingKey.swift",
        "CBOR.swift",
        "CBORDecoder.swift",
        "CBOREncodable.swift",
        "CBOREncoder.swift",
        "CBORInputStream.swift",
        "CBOROptions.swift",
        "Decoder/CodableCBORDecoder.swift",
        "Decoder/KeyedDecodingContainer.swift",
        "Decoder/SingleValueDecodingContainer.swift",
        "Decoder/UnkeyedDecodingContainer.swift",
        "Encoder/CodableCBOREncoder.swift",
        "Encoder/KeyedEncodingContainer.swift",
        "Encoder/SingleValueEncodingContainer.swift",
        "Encoder/UnkeyedEncodingContainer.swift",
        "FixedWidthInteger+Bytes.swift",
        "Util.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.