The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of swift-parsing, reference main (611f34), with Swift 6.1 for Android on 1 Sep 2025 21:21:28 UTC.

Swift 6 data race errors: 5

Build Command

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

Build Log

41 |     /initializer
   |      `- warning: implicit capture of 'initializer' requires that 'Enum' conforms to 'Sendable'; this is an error in the Swift 6 language mode
42 |   }
43 | }
[450/509] Compiling Parsing PrefixThrough.swift
[451/509] Compiling Parsing PrefixUpTo.swift
[452/509] Compiling Parsing Printing.swift
[453/509] Compiling Parsing Pullback.swift
[454/509] Compiling Parsing ReplaceError.swift
[455/509] Compiling Parsing Rest.swift
[456/509] Compiling Parsing Skip.swift
[457/509] Compiling Parsing StartsWith.swift
[458/509] Compiling Parsing UUID.swift
[459/509] Compiling Parsing CaseIterableRawRepresentable.swift
[460/509] Compiling Parsing CharacterSet.swift
[461/509] Compiling Parsing Conditional.swift
[462/509] Compiling Parsing Consumed.swift
[463/509] Compiling Parsing Digits.swift
[464/509] Compiling Parsing End.swift
[465/509] Compiling Parsing Fail.swift
[466/509] Compiling Parsing Filter.swift
[467/509] Compiling Parsing First.swift
[468/509] Compiling Parsing OneOf.swift
[469/509] Compiling Parsing OneOfMany.swift
[470/509] Compiling Parsing Optional.swift
[471/509] Compiling Parsing Optionally.swift
[472/509] Compiling Parsing Parse.swift
[473/509] Compiling Parsing ParseableFormatStyle.swift
[474/509] Compiling Parsing Peek.swift
[475/509] Compiling Parsing Pipe.swift
[476/509] Compiling Parsing Prefix.swift
[477/509] Compiling Parsing CountingRange.swift
[478/509] Compiling Parsing EmptyInitializable.swift
[479/509] Compiling Parsing AnyEquatable.swift
[480/509] Compiling Parsing Deprecations.swift
[481/509] Compiling Parsing Parser.swift
[482/509] Compiling Parsing ParserPrinter.swift
[483/509] Compiling Parsing Always.swift
[484/509] Compiling Parsing AnyParserPrinter.swift
[485/509] Compiling Parsing Backtracking.swift
[486/509] Compiling Parsing Bool.swift
[487/509] Compiling Parsing Float.swift
[488/509] Compiling Parsing From.swift
[489/509] Compiling Parsing Int.swift
[490/509] Compiling Parsing Lazy.swift
[491/509] Compiling Parsing Literal.swift
[492/509] Compiling Parsing Many.swift
[493/509] Compiling Parsing Map.swift
[494/509] Compiling Parsing Newline.swift
[495/509] Compiling Parsing Not.swift
[496/509] Emitting module Parsing
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:6: warning: implicit capture of 'initializer' requires that 'Enum' conforms to 'Sendable'; this is an error in the Swift 6 language mode
36 |
37 |   @inlinable
38 |   public static func `case`<Enum>(
   |                             `- note: consider making generic parameter 'Enum' conform to the 'Sendable' protocol
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |      `- warning: implicit capture of 'initializer' requires that 'Enum' conforms to 'Sendable'; this is an error in the Swift 6 language mode
42 |   }
43 | }
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[497/509] Compiling Parsing Whitespace.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[498/509] Compiling Parsing AnyParser.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[499/509] Compiling Parsing CompactMap.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[500/509] Compiling Parsing FlatMap.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[501/509] Compiling Parsing Parsers.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[502/509] Compiling Parsing Stream.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[503/509] Compiling Parsing ParsingError.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[504/509] Compiling Parsing PrependableCollection.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[505/509] Compiling Parsing PrintingError.swift
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:5:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  3 | @usableFromInline
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  6 |   case manyFailed([Error], Context)
  7 |
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/ParsingError.swift:6:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  4 | enum ParsingError: Error {
  5 |   case failed(String, Context)
  6 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'ParsingError' has non-sendable type 'ParsingError.Context'; this is an error in the Swift 6 language mode
  7 |
  8 |   @usableFromInline
    :
114 |
115 |   @usableFromInline
116 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
117 |     @usableFromInline
118 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:3:8: warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  1 | @usableFromInline
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
    |        `- warning: associated value 'failed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  4 |   case manyFailed([Error], Context)
  5 |
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
/host/spi-builder-workspace/Sources/Parsing/PrintingError.swift:4:8: warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  2 | enum PrintingError: Error {
  3 |   case failed(Context)
  4 |   case manyFailed([Error], Context)
    |        `- warning: associated value 'manyFailed' of 'Sendable'-conforming enum 'PrintingError' has non-sendable type 'PrintingError.Context'; this is an error in the Swift 6 language mode
  5 |
  6 |   @available(*, deprecated)
    :
 62 |
 63 |   @usableFromInline
 64 |   struct Context {
    |          `- note: consider making struct 'Context' conform to the 'Sendable' protocol
 65 |     @usableFromInline
 66 |     var debugDescription: String
[506/510] Wrapping AST for Parsing for debugging
[508/529] Compiling swift_parsing_benchmark CSVSample.swift
[509/529] Compiling swift_parsing_benchmark XCTestLogsSample.swift
[510/529] Compiling swift_parsing_benchmark StringAbstractions.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// but this means we are responsible for handling UTF8 normalization, so we have to explicitly
14 | /// handle both the "LATIN SMALL LETTER E WITH ACUTE" and "E + COMBINING ACUTE ACCENT" characters.
15 | let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
   |     `- warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
16 |   let count = 1_000
17 |   let input = (1...count)
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Parsing
 3 |
   :
13 | /// but this means we are responsible for handling UTF8 normalization, so we have to explicitly
14 | /// handle both the "LATIN SMALL LETTER E WITH ACUTE" and "E + COMBINING ACUTE ACCENT" characters.
15 | let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
   |     |- note: add '@MainActor' to make let 'stringAbstractionsSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |   let count = 1_000
17 |   let input = (1...count)
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// This benchmark demonstrates how the UUID parser compares to `UUID`'s initializer.
 6 | let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
   |     `- warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |   let input = "deadbeef-dead-beef-dead-beefdeadbeef"
 8 |   let expected = UUID(uuidString: "deadbeef-dead-beef-dead-beefdeadbeef")!
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
 4 |
 5 | /// This benchmark demonstrates how the UUID parser compares to `UUID`'s initializer.
 6 | let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
   |     |- note: add '@MainActor' to make let 'uuidSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   let input = "deadbeef-dead-beef-dead-beefdeadbeef"
 8 |   let expected = UUID(uuidString: "deadbeef-dead-beef-dead-beefdeadbeef")!
[511/529] Compiling swift_parsing_benchmark UUID.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// but this means we are responsible for handling UTF8 normalization, so we have to explicitly
14 | /// handle both the "LATIN SMALL LETTER E WITH ACUTE" and "E + COMBINING ACUTE ACCENT" characters.
15 | let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
   |     `- warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
16 |   let count = 1_000
17 |   let input = (1...count)
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Parsing
 3 |
   :
13 | /// but this means we are responsible for handling UTF8 normalization, so we have to explicitly
14 | /// handle both the "LATIN SMALL LETTER E WITH ACUTE" and "E + COMBINING ACUTE ACCENT" characters.
15 | let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
   |     |- note: add '@MainActor' to make let 'stringAbstractionsSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |   let count = 1_000
17 |   let input = (1...count)
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// This benchmark demonstrates how the UUID parser compares to `UUID`'s initializer.
 6 | let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
   |     `- warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |   let input = "deadbeef-dead-beef-dead-beefdeadbeef"
 8 |   let expected = UUID(uuidString: "deadbeef-dead-beef-dead-beefdeadbeef")!
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
 4 |
 5 | /// This benchmark demonstrates how the UUID parser compares to `UUID`'s initializer.
 6 | let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
   |     |- note: add '@MainActor' to make let 'uuidSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   let input = "deadbeef-dead-beef-dead-beefdeadbeef"
 8 |   let expected = UUID(uuidString: "deadbeef-dead-beef-dead-beefdeadbeef")!
[512/531] Compiling swift_parsing_benchmark Arithmetic.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// This benchmark demonstrates how to parse a recursive grammar: arithmetic.
  6 | let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    |     `- warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |   struct AdditionAndSubtraction: Parser {
  8 |     var body: some Parser<Substring.UTF8View, Double> {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
  4 |
  5 | /// This benchmark demonstrates how to parse a recursive grammar: arithmetic.
  6 | let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    |     |- note: add '@MainActor' to make let 'arithmeticSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   struct AdditionAndSubtraction: Parser {
  8 |     var body: some Parser<Substring.UTF8View, Double> {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | ///     |                    ARCOUNT                    |
 25 | ///     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 26 | let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    |     `- warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |   #if swift(>=5.8)
 28 |     struct Word16Parser: Parser {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
 24 | ///     |                    ARCOUNT                    |
 25 | ///     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 26 | let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    |     |- note: add '@MainActor' to make let 'binaryDataSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |   #if swift(>=5.8)
 28 |     struct Word16Parser: Parser {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | /// type. `Scanner` does not have a `scanBool` method, but we can emulate this functionality by calling
 8 | /// `scanString` twice and mapping each result to a boolean.
 9 | let boolSuite = BenchmarkSuite(name: "Bool") { suite in
   |     `- warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
10 |   var input = "true"
11 |   var expected = true
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
   :
 7 | /// type. `Scanner` does not have a `scanBool` method, but we can emulate this functionality by calling
 8 | /// `scanString` twice and mapping each result to a boolean.
 9 | let boolSuite = BenchmarkSuite(name: "Bool") { suite in
   |     |- note: add '@MainActor' to make let 'boolSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |   var input = "true"
11 |   var expected = true
[513/531] Compiling swift_parsing_benchmark BinaryData.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// This benchmark demonstrates how to parse a recursive grammar: arithmetic.
  6 | let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    |     `- warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |   struct AdditionAndSubtraction: Parser {
  8 |     var body: some Parser<Substring.UTF8View, Double> {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
  4 |
  5 | /// This benchmark demonstrates how to parse a recursive grammar: arithmetic.
  6 | let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    |     |- note: add '@MainActor' to make let 'arithmeticSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   struct AdditionAndSubtraction: Parser {
  8 |     var body: some Parser<Substring.UTF8View, Double> {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | ///     |                    ARCOUNT                    |
 25 | ///     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 26 | let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    |     `- warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |   #if swift(>=5.8)
 28 |     struct Word16Parser: Parser {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
 24 | ///     |                    ARCOUNT                    |
 25 | ///     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 26 | let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    |     |- note: add '@MainActor' to make let 'binaryDataSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |   #if swift(>=5.8)
 28 |     struct Word16Parser: Parser {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | /// type. `Scanner` does not have a `scanBool` method, but we can emulate this functionality by calling
 8 | /// `scanString` twice and mapping each result to a boolean.
 9 | let boolSuite = BenchmarkSuite(name: "Bool") { suite in
   |     `- warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
10 |   var input = "true"
11 |   var expected = true
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
   :
 7 | /// type. `Scanner` does not have a `scanBool` method, but we can emulate this functionality by calling
 8 | /// `scanString` twice and mapping each result to a boolean.
 9 | let boolSuite = BenchmarkSuite(name: "Bool") { suite in
   |     |- note: add '@MainActor' to make let 'boolSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |   var input = "true"
11 |   var expected = true
[514/531] Compiling swift_parsing_benchmark Bool.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// This benchmark demonstrates how to parse a recursive grammar: arithmetic.
  6 | let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    |     `- warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |   struct AdditionAndSubtraction: Parser {
  8 |     var body: some Parser<Substring.UTF8View, Double> {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
  4 |
  5 | /// This benchmark demonstrates how to parse a recursive grammar: arithmetic.
  6 | let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    |     |- note: add '@MainActor' to make let 'arithmeticSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   struct AdditionAndSubtraction: Parser {
  8 |     var body: some Parser<Substring.UTF8View, Double> {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | ///     |                    ARCOUNT                    |
 25 | ///     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 26 | let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    |     `- warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |   #if swift(>=5.8)
 28 |     struct Word16Parser: Parser {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
 24 | ///     |                    ARCOUNT                    |
 25 | ///     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 26 | let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    |     |- note: add '@MainActor' to make let 'binaryDataSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |   #if swift(>=5.8)
 28 |     struct Word16Parser: Parser {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | /// type. `Scanner` does not have a `scanBool` method, but we can emulate this functionality by calling
 8 | /// `scanString` twice and mapping each result to a boolean.
 9 | let boolSuite = BenchmarkSuite(name: "Bool") { suite in
   |     `- warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
10 |   var input = "true"
11 |   var expected = true
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
   :
 7 | /// type. `Scanner` does not have a `scanBool` method, but we can emulate this functionality by calling
 8 | /// `scanString` twice and mapping each result to a boolean.
 9 | let boolSuite = BenchmarkSuite(name: "Bool") { suite in
   |     |- note: add '@MainActor' to make let 'boolSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |   var input = "true"
11 |   var expected = true
[515/531] Compiling swift_parsing_benchmark Race.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | ///
  7 | /// [parsing]: https://www.pointfree.co/collections/parsing
  8 | let raceSuite = BenchmarkSuite(name: "Race") { suite in
    |     `- warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |   #if swift(>=5.8)
 10 |     struct Coordinate {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  6 | ///
  7 | /// [parsing]: https://www.pointfree.co/collections/parsing
  8 | let raceSuite = BenchmarkSuite(name: "Race") { suite in
    |     |- note: add '@MainActor' to make let 'raceSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   #if swift(>=5.8)
 10 |     struct Coordinate {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// This benchmark measures the performance of the examples given in the library's README.
  6 | let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    |     `- warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |   #if swift(>=5.8)
  8 |     let input = """
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
  4 |
  5 | /// This benchmark measures the performance of the examples given in the library's README.
  6 | let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    |     |- note: add '@MainActor' to make let 'readmeExampleSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   #if swift(>=5.8)
  8 |     let input = """
[516/531] Compiling swift_parsing_benchmark ReadmeExample.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | ///
  7 | /// [parsing]: https://www.pointfree.co/collections/parsing
  8 | let raceSuite = BenchmarkSuite(name: "Race") { suite in
    |     `- warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |   #if swift(>=5.8)
 10 |     struct Coordinate {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  6 | ///
  7 | /// [parsing]: https://www.pointfree.co/collections/parsing
  8 | let raceSuite = BenchmarkSuite(name: "Race") { suite in
    |     |- note: add '@MainActor' to make let 'raceSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   #if swift(>=5.8)
 10 |     struct Coordinate {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// This benchmark measures the performance of the examples given in the library's README.
  6 | let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    |     `- warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |   #if swift(>=5.8)
  8 |     let input = """
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
  4 |
  5 | /// This benchmark measures the performance of the examples given in the library's README.
  6 | let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    |     |- note: add '@MainActor' to make let 'readmeExampleSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   #if swift(>=5.8)
  8 |     let input = """
[517/531] Emitting module swift_parsing_benchmark
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:6:5: warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// This benchmark demonstrates how to parse a recursive grammar: arithmetic.
  6 | let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    |     `- warning: let 'arithmeticSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |   struct AdditionAndSubtraction: Parser {
  8 |     var body: some Parser<Substring.UTF8View, Double> {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Arithmetic.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
  4 |
  5 | /// This benchmark demonstrates how to parse a recursive grammar: arithmetic.
  6 | let arithmeticSuite = BenchmarkSuite(name: "Arithmetic") { suite in
    |     |- note: add '@MainActor' to make let 'arithmeticSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   struct AdditionAndSubtraction: Parser {
  8 |     var body: some Parser<Substring.UTF8View, Double> {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:26:5: warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 24 | ///     |                    ARCOUNT                    |
 25 | ///     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 26 | let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    |     `- warning: let 'binaryDataSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |   #if swift(>=5.8)
 28 |     struct Word16Parser: Parser {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/BinaryData.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
 24 | ///     |                    ARCOUNT                    |
 25 | ///     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 26 | let binaryDataSuite = BenchmarkSuite(name: "BinaryData") { suite in
    |     |- note: add '@MainActor' to make let 'binaryDataSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |   #if swift(>=5.8)
 28 |     struct Word16Parser: Parser {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:9:5: warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | /// type. `Scanner` does not have a `scanBool` method, but we can emulate this functionality by calling
 8 | /// `scanString` twice and mapping each result to a boolean.
 9 | let boolSuite = BenchmarkSuite(name: "Bool") { suite in
   |     `- warning: let 'boolSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
10 |   var input = "true"
11 |   var expected = true
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Bool.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
   :
 7 | /// type. `Scanner` does not have a `scanBool` method, but we can emulate this functionality by calling
 8 | /// `scanString` twice and mapping each result to a boolean.
 9 | let boolSuite = BenchmarkSuite(name: "Bool") { suite in
   |     |- note: add '@MainActor' to make let 'boolSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |   var input = "true"
11 |   var expected = true
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// This benchmark demonstrates how to define a simple CSV parser with quoted fields and measures
  6 | /// its performance against a more ad hoc approach at the same level of abstraction.
  7 | let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    |     `- warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   struct FieldParser: ParserPrinter {
  9 |     var body: some ParserPrinter<Substring.UTF8View, String> {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  5 | /// This benchmark demonstrates how to define a simple CSV parser with quoted fields and measures
  6 | /// its performance against a more ad hoc approach at the same level of abstraction.
  7 | let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    |     |- note: add '@MainActor' to make let 'csvSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   struct FieldParser: ParserPrinter {
  9 |     var body: some ParserPrinter<Substring.UTF8View, String> {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | ///
 6 | /// Compare to the Rust [example using nom](https://github.com/Geal/nom#example).
 7 | let colorSuite = BenchmarkSuite(name: "Color") { suite in
   |     `- warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |   struct Color: Equatable {
 9 |     let red, green, blue: UInt8
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Parsing
 3 |
   :
 5 | ///
 6 | /// Compare to the Rust [example using nom](https://github.com/Geal/nom#example).
 7 | let colorSuite = BenchmarkSuite(name: "Color") { suite in
   |     |- note: add '@MainActor' to make let 'colorSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |   struct Color: Equatable {
 9 |     let red, green, blue: UInt8
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 79 | /// parse fractional seconds and time zone offsets automatically, and it will parse to the
 80 | /// nanosecond, while the formatters do not parse beyond the millisecond.
 81 | let dateSuite = BenchmarkSuite(name: "Date") { suite in
    |     `- warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 82 |   #if swift(>=5.8)
 83 |     let input = "1979-05-27T00:32:00Z"
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
 79 | /// parse fractional seconds and time zone offsets automatically, and it will parse to the
 80 | /// nanosecond, while the formatters do not parse beyond the millisecond.
 81 | let dateSuite = BenchmarkSuite(name: "Date") { suite in
    |     |- note: add '@MainActor' to make let 'dateSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |   #if swift(>=5.8)
 83 |     let input = "1979-05-27T00:32:00Z"
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 | ///
  8 | /// In particular, it benchmarks the same HTTP header as that defined in `one_test`.
  9 | let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    |     `- warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |   #if swift(>=5.8)
 11 |     struct RequestParser: ParserPrinter {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  7 | ///
  8 | /// In particular, it benchmarks the same HTTP header as that defined in `one_test`.
  9 | let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    |     |- note: add '@MainActor' to make let 'httpSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   #if swift(>=5.8)
 11 |     struct RequestParser: ParserPrinter {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:8:5: warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | ///
  7 | /// It is implemented according to the [spec](https://www.json.org/json-en.html).
  8 | let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    |     `- warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |   #if swift(>=5.8)
 10 |     struct JSONValue: ParserPrinter {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  6 | ///
  7 | /// It is implemented according to the [spec](https://www.json.org/json-en.html).
  8 | let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    |     |- note: add '@MainActor' to make let 'jsonSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   #if swift(>=5.8)
 10 |     struct JSONValue: ParserPrinter {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// This benchmark demonstrates how the numeric parsers in the library compare to Apple's tools, such
  6 | /// as initializers and `Scanner`.
  7 | let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    |     `- warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   do {
  9 |     let input = "123"
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  5 | /// This benchmark demonstrates how the numeric parsers in the library compare to Apple's tools, such
  6 | /// as initializers and `Scanner`.
  7 | let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    |     |- note: add '@MainActor' to make let 'numericsSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   do {
  9 |     let input = "123"
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// This benchmarks the performance of `PrefixUpTo` against Apple's tools.
 6 | let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
   |     `- warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |   let input = String(repeating: ".", count: 10_000) + "Hello, world!"
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
 4 |
 5 | /// This benchmarks the performance of `PrefixUpTo` against Apple's tools.
 6 | let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
   |     |- note: add '@MainActor' to make let 'prefixUpToSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   let input = String(repeating: ".", count: 10_000) + "Hello, world!"
 8 |
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:8:5: warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | ///
  7 | /// [parsing]: https://www.pointfree.co/collections/parsing
  8 | let raceSuite = BenchmarkSuite(name: "Race") { suite in
    |     `- warning: let 'raceSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |   #if swift(>=5.8)
 10 |     struct Coordinate {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Race.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  6 | ///
  7 | /// [parsing]: https://www.pointfree.co/collections/parsing
  8 | let raceSuite = BenchmarkSuite(name: "Race") { suite in
    |     |- note: add '@MainActor' to make let 'raceSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   #if swift(>=5.8)
 10 |     struct Coordinate {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:6:5: warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  4 |
  5 | /// This benchmark measures the performance of the examples given in the library's README.
  6 | let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    |     `- warning: let 'readmeExampleSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |   #if swift(>=5.8)
  8 |     let input = """
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/ReadmeExample.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
  4 |
  5 | /// This benchmark measures the performance of the examples given in the library's README.
  6 | let readmeExampleSuite = BenchmarkSuite(name: "README Example") { suite in
    |     |- note: add '@MainActor' to make let 'readmeExampleSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  7 |   #if swift(>=5.8)
  8 |     let input = """
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:15:5: warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// but this means we are responsible for handling UTF8 normalization, so we have to explicitly
14 | /// handle both the "LATIN SMALL LETTER E WITH ACUTE" and "E + COMBINING ACUTE ACCENT" characters.
15 | let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
   |     `- warning: let 'stringAbstractionsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
16 |   let count = 1_000
17 |   let input = (1...count)
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/StringAbstractions.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Parsing
 3 |
   :
13 | /// but this means we are responsible for handling UTF8 normalization, so we have to explicitly
14 | /// handle both the "LATIN SMALL LETTER E WITH ACUTE" and "E + COMBINING ACUTE ACCENT" characters.
15 | let stringAbstractionsSuite = BenchmarkSuite(name: "String Abstractions") { suite in
   |     |- note: add '@MainActor' to make let 'stringAbstractionsSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |   let count = 1_000
17 |   let input = (1...count)
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:6:5: warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// This benchmark demonstrates how the UUID parser compares to `UUID`'s initializer.
 6 | let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
   |     `- warning: let 'uuidSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |   let input = "deadbeef-dead-beef-dead-beefdeadbeef"
 8 |   let expected = UUID(uuidString: "deadbeef-dead-beef-dead-beefdeadbeef")!
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/UUID.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
 4 |
 5 | /// This benchmark demonstrates how the UUID parser compares to `UUID`'s initializer.
 6 | let uuidSuite = BenchmarkSuite(name: "UUID") { suite in
   |     |- note: add '@MainActor' to make let 'uuidSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   let input = "deadbeef-dead-beef-dead-beefdeadbeef"
 8 |   let expected = UUID(uuidString: "deadbeef-dead-beef-dead-beefdeadbeef")!
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// in an array of test failures and passes.
  6 |
  7 | let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    |     `- warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   var output: [TestResult]!
  9 |
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  5 | /// in an array of test failures and passes.
  6 |
  7 | let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    |     |- note: add '@MainActor' to make let 'xcodeLogsSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   var output: [TestResult]!
  9 |
[518/531] Compiling swift_parsing_benchmark ParsingError.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 79 | /// parse fractional seconds and time zone offsets automatically, and it will parse to the
 80 | /// nanosecond, while the formatters do not parse beyond the millisecond.
 81 | let dateSuite = BenchmarkSuite(name: "Date") { suite in
    |     `- warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 82 |   #if swift(>=5.8)
 83 |     let input = "1979-05-27T00:32:00Z"
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
 79 | /// parse fractional seconds and time zone offsets automatically, and it will parse to the
 80 | /// nanosecond, while the formatters do not parse beyond the millisecond.
 81 | let dateSuite = BenchmarkSuite(name: "Date") { suite in
    |     |- note: add '@MainActor' to make let 'dateSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |   #if swift(>=5.8)
 83 |     let input = "1979-05-27T00:32:00Z"
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 | ///
  8 | /// In particular, it benchmarks the same HTTP header as that defined in `one_test`.
  9 | let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    |     `- warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |   #if swift(>=5.8)
 11 |     struct RequestParser: ParserPrinter {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  7 | ///
  8 | /// In particular, it benchmarks the same HTTP header as that defined in `one_test`.
  9 | let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    |     |- note: add '@MainActor' to make let 'httpSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   #if swift(>=5.8)
 11 |     struct RequestParser: ParserPrinter {
[519/531] Compiling swift_parsing_benchmark Date.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 79 | /// parse fractional seconds and time zone offsets automatically, and it will parse to the
 80 | /// nanosecond, while the formatters do not parse beyond the millisecond.
 81 | let dateSuite = BenchmarkSuite(name: "Date") { suite in
    |     `- warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 82 |   #if swift(>=5.8)
 83 |     let input = "1979-05-27T00:32:00Z"
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
 79 | /// parse fractional seconds and time zone offsets automatically, and it will parse to the
 80 | /// nanosecond, while the formatters do not parse beyond the millisecond.
 81 | let dateSuite = BenchmarkSuite(name: "Date") { suite in
    |     |- note: add '@MainActor' to make let 'dateSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |   #if swift(>=5.8)
 83 |     let input = "1979-05-27T00:32:00Z"
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 | ///
  8 | /// In particular, it benchmarks the same HTTP header as that defined in `one_test`.
  9 | let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    |     `- warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |   #if swift(>=5.8)
 11 |     struct RequestParser: ParserPrinter {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  7 | ///
  8 | /// In particular, it benchmarks the same HTTP header as that defined in `one_test`.
  9 | let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    |     |- note: add '@MainActor' to make let 'httpSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   #if swift(>=5.8)
 11 |     struct RequestParser: ParserPrinter {
[520/531] Compiling swift_parsing_benchmark HTTP.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:81:5: warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 79 | /// parse fractional seconds and time zone offsets automatically, and it will parse to the
 80 | /// nanosecond, while the formatters do not parse beyond the millisecond.
 81 | let dateSuite = BenchmarkSuite(name: "Date") { suite in
    |     `- warning: let 'dateSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 82 |   #if swift(>=5.8)
 83 |     let input = "1979-05-27T00:32:00Z"
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Date.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
 79 | /// parse fractional seconds and time zone offsets automatically, and it will parse to the
 80 | /// nanosecond, while the formatters do not parse beyond the millisecond.
 81 | let dateSuite = BenchmarkSuite(name: "Date") { suite in
    |     |- note: add '@MainActor' to make let 'dateSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |   #if swift(>=5.8)
 83 |     let input = "1979-05-27T00:32:00Z"
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:9:5: warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  7 | ///
  8 | /// In particular, it benchmarks the same HTTP header as that defined in `one_test`.
  9 | let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    |     `- warning: let 'httpSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |   #if swift(>=5.8)
 11 |     struct RequestParser: ParserPrinter {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/HTTP.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  7 | ///
  8 | /// In particular, it benchmarks the same HTTP header as that defined in `one_test`.
  9 | let httpSuite = BenchmarkSuite(name: "HTTP") { suite in
    |     |- note: add '@MainActor' to make let 'httpSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 10 |   #if swift(>=5.8)
 11 |     struct RequestParser: ParserPrinter {
[521/531] Compiling swift_parsing_benchmark XCTestLogs.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// in an array of test failures and passes.
  6 |
  7 | let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    |     `- warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   var output: [TestResult]!
  9 |
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  5 | /// in an array of test failures and passes.
  6 |
  7 | let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    |     |- note: add '@MainActor' to make let 'xcodeLogsSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   var output: [TestResult]!
  9 |
[522/531] Compiling swift_parsing_benchmark main.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:7:5: warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// in an array of test failures and passes.
  6 |
  7 | let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    |     `- warning: let 'xcodeLogsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   var output: [TestResult]!
  9 |
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/XCTestLogs.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Parsing
  3 |
    :
  5 | /// in an array of test failures and passes.
  6 |
  7 | let xcodeLogsSuite = BenchmarkSuite(name: "Xcode Logs") { suite in
    |     |- note: add '@MainActor' to make let 'xcodeLogsSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   var output: [TestResult]!
  9 |
[523/531] Compiling swift_parsing_benchmark CSV.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// This benchmark demonstrates how to define a simple CSV parser with quoted fields and measures
  6 | /// its performance against a more ad hoc approach at the same level of abstraction.
  7 | let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    |     `- warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   struct FieldParser: ParserPrinter {
  9 |     var body: some ParserPrinter<Substring.UTF8View, String> {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  5 | /// This benchmark demonstrates how to define a simple CSV parser with quoted fields and measures
  6 | /// its performance against a more ad hoc approach at the same level of abstraction.
  7 | let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    |     |- note: add '@MainActor' to make let 'csvSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   struct FieldParser: ParserPrinter {
  9 |     var body: some ParserPrinter<Substring.UTF8View, String> {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | ///
 6 | /// Compare to the Rust [example using nom](https://github.com/Geal/nom#example).
 7 | let colorSuite = BenchmarkSuite(name: "Color") { suite in
   |     `- warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |   struct Color: Equatable {
 9 |     let red, green, blue: UInt8
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Parsing
 3 |
   :
 5 | ///
 6 | /// Compare to the Rust [example using nom](https://github.com/Geal/nom#example).
 7 | let colorSuite = BenchmarkSuite(name: "Color") { suite in
   |     |- note: add '@MainActor' to make let 'colorSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |   struct Color: Equatable {
 9 |     let red, green, blue: UInt8
[524/531] Compiling swift_parsing_benchmark Color.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// This benchmark demonstrates how to define a simple CSV parser with quoted fields and measures
  6 | /// its performance against a more ad hoc approach at the same level of abstraction.
  7 | let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    |     `- warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   struct FieldParser: ParserPrinter {
  9 |     var body: some ParserPrinter<Substring.UTF8View, String> {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  5 | /// This benchmark demonstrates how to define a simple CSV parser with quoted fields and measures
  6 | /// its performance against a more ad hoc approach at the same level of abstraction.
  7 | let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    |     |- note: add '@MainActor' to make let 'csvSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   struct FieldParser: ParserPrinter {
  9 |     var body: some ParserPrinter<Substring.UTF8View, String> {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | ///
 6 | /// Compare to the Rust [example using nom](https://github.com/Geal/nom#example).
 7 | let colorSuite = BenchmarkSuite(name: "Color") { suite in
   |     `- warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |   struct Color: Equatable {
 9 |     let red, green, blue: UInt8
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Parsing
 3 |
   :
 5 | ///
 6 | /// Compare to the Rust [example using nom](https://github.com/Geal/nom#example).
 7 | let colorSuite = BenchmarkSuite(name: "Color") { suite in
   |     |- note: add '@MainActor' to make let 'colorSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |   struct Color: Equatable {
 9 |     let red, green, blue: UInt8
[525/531] Compiling swift_parsing_benchmark Benchmarking.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:7:5: warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// This benchmark demonstrates how to define a simple CSV parser with quoted fields and measures
  6 | /// its performance against a more ad hoc approach at the same level of abstraction.
  7 | let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    |     `- warning: let 'csvSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   struct FieldParser: ParserPrinter {
  9 |     var body: some ParserPrinter<Substring.UTF8View, String> {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/CSV.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  5 | /// This benchmark demonstrates how to define a simple CSV parser with quoted fields and measures
  6 | /// its performance against a more ad hoc approach at the same level of abstraction.
  7 | let csvSuite = BenchmarkSuite(name: "CSV") { suite in
    |     |- note: add '@MainActor' to make let 'csvSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   struct FieldParser: ParserPrinter {
  9 |     var body: some ParserPrinter<Substring.UTF8View, String> {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:7:5: warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 5 | ///
 6 | /// Compare to the Rust [example using nom](https://github.com/Geal/nom#example).
 7 | let colorSuite = BenchmarkSuite(name: "Color") { suite in
   |     `- warning: let 'colorSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |   struct Color: Equatable {
 9 |     let red, green, blue: UInt8
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Color.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Parsing
 3 |
   :
 5 | ///
 6 | /// Compare to the Rust [example using nom](https://github.com/Geal/nom#example).
 7 | let colorSuite = BenchmarkSuite(name: "Color") { suite in
   |     |- note: add '@MainActor' to make let 'colorSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 |   struct Color: Equatable {
 9 |     let red, green, blue: UInt8
[526/531] Compiling swift_parsing_benchmark JSON.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:8:5: warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | ///
  7 | /// It is implemented according to the [spec](https://www.json.org/json-en.html).
  8 | let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    |     `- warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |   #if swift(>=5.8)
 10 |     struct JSONValue: ParserPrinter {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  6 | ///
  7 | /// It is implemented according to the [spec](https://www.json.org/json-en.html).
  8 | let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    |     |- note: add '@MainActor' to make let 'jsonSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   #if swift(>=5.8)
 10 |     struct JSONValue: ParserPrinter {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:72:64: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 70 |
 71 |     struct JSONString: ParserPrinter {
 72 |       var body: some ParserPrinter<Substring.UTF8View, String> {
    |                                                                `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 73 |         "\"".utf8
 74 |         Many(into: "") { string, fragment in
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// This benchmark demonstrates how the numeric parsers in the library compare to Apple's tools, such
  6 | /// as initializers and `Scanner`.
  7 | let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    |     `- warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   do {
  9 |     let input = "123"
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  5 | /// This benchmark demonstrates how the numeric parsers in the library compare to Apple's tools, such
  6 | /// as initializers and `Scanner`.
  7 | let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    |     |- note: add '@MainActor' to make let 'numericsSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   do {
  9 |     let input = "123"
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// This benchmarks the performance of `PrefixUpTo` against Apple's tools.
 6 | let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
   |     `- warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |   let input = String(repeating: ".", count: 10_000) + "Hello, world!"
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
 4 |
 5 | /// This benchmarks the performance of `PrefixUpTo` against Apple's tools.
 6 | let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
   |     |- note: add '@MainActor' to make let 'prefixUpToSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   let input = String(repeating: ".", count: 10_000) + "Hello, world!"
 8 |
[527/531] Compiling swift_parsing_benchmark Numerics.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:8:5: warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | ///
  7 | /// It is implemented according to the [spec](https://www.json.org/json-en.html).
  8 | let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    |     `- warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |   #if swift(>=5.8)
 10 |     struct JSONValue: ParserPrinter {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  6 | ///
  7 | /// It is implemented according to the [spec](https://www.json.org/json-en.html).
  8 | let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    |     |- note: add '@MainActor' to make let 'jsonSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   #if swift(>=5.8)
 10 |     struct JSONValue: ParserPrinter {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:72:64: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 70 |
 71 |     struct JSONString: ParserPrinter {
 72 |       var body: some ParserPrinter<Substring.UTF8View, String> {
    |                                                                `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 73 |         "\"".utf8
 74 |         Many(into: "") { string, fragment in
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// This benchmark demonstrates how the numeric parsers in the library compare to Apple's tools, such
  6 | /// as initializers and `Scanner`.
  7 | let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    |     `- warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   do {
  9 |     let input = "123"
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  5 | /// This benchmark demonstrates how the numeric parsers in the library compare to Apple's tools, such
  6 | /// as initializers and `Scanner`.
  7 | let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    |     |- note: add '@MainActor' to make let 'numericsSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   do {
  9 |     let input = "123"
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// This benchmarks the performance of `PrefixUpTo` against Apple's tools.
 6 | let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
   |     `- warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |   let input = String(repeating: ".", count: 10_000) + "Hello, world!"
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
 4 |
 5 | /// This benchmarks the performance of `PrefixUpTo` against Apple's tools.
 6 | let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
   |     |- note: add '@MainActor' to make let 'prefixUpToSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   let input = String(repeating: ".", count: 10_000) + "Hello, world!"
 8 |
[528/531] Compiling swift_parsing_benchmark PrefixUpTo.swift
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:8:5: warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | ///
  7 | /// It is implemented according to the [spec](https://www.json.org/json-en.html).
  8 | let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    |     `- warning: let 'jsonSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  9 |   #if swift(>=5.8)
 10 |     struct JSONValue: ParserPrinter {
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  6 | ///
  7 | /// It is implemented according to the [spec](https://www.json.org/json-en.html).
  8 | let jsonSuite = BenchmarkSuite(name: "JSON") { suite in
    |     |- note: add '@MainActor' to make let 'jsonSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 |   #if swift(>=5.8)
 10 |     struct JSONValue: ParserPrinter {
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/JSON.swift:72:64: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 70 |
 71 |     struct JSONString: ParserPrinter {
 72 |       var body: some ParserPrinter<Substring.UTF8View, String> {
    |                                                                `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 73 |         "\"".utf8
 74 |         Many(into: "") { string, fragment in
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:7:5: warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// This benchmark demonstrates how the numeric parsers in the library compare to Apple's tools, such
  6 | /// as initializers and `Scanner`.
  7 | let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    |     `- warning: let 'numericsSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
  8 |   do {
  9 |     let input = "123"
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/Numerics.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  1 | import Benchmark
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
  2 | import Foundation
  3 | import Parsing
    :
  5 | /// This benchmark demonstrates how the numeric parsers in the library compare to Apple's tools, such
  6 | /// as initializers and `Scanner`.
  7 | let numericsSuite = BenchmarkSuite(name: "Numerics") { suite in
    |     |- note: add '@MainActor' to make let 'numericsSuite' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  8 |   do {
  9 |     let input = "123"
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:6:5: warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | /// This benchmarks the performance of `PrefixUpTo` against Apple's tools.
 6 | let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
   |     `- warning: let 'prefixUpToSuite' is not concurrency-safe because non-'Sendable' type 'BenchmarkSuite' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |   let input = String(repeating: ".", count: 10_000) + "Hello, world!"
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-benchmark/Sources/Benchmark/BenchmarkSuite.swift:15:14: note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
13 | // limitations under the License.
14 |
15 | public class BenchmarkSuite {
   |              `- note: class 'BenchmarkSuite' does not conform to the 'Sendable' protocol
16 |     public let name: String
17 |     public let settings: [BenchmarkSetting]
/host/spi-builder-workspace/Sources/swift-parsing-benchmark/PrefixUpTo.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 1 | import Benchmark
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Benchmark'
 2 | import Foundation
 3 | import Parsing
 4 |
 5 | /// This benchmarks the performance of `PrefixUpTo` against Apple's tools.
 6 | let prefixUpToSuite = BenchmarkSuite(name: "PrefixUpTo") { suite in
   |     |- note: add '@MainActor' to make let 'prefixUpToSuite' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |   let input = String(repeating: ".", count: 10_000) + "Hello, world!"
 8 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8106a39f56f5bb7aad9f0d9a94f1e5362f9a40b692f7bc17efe17b7b91dc65fc
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
[3/3] Compiling plugin Swift-DocC Preview
[4/4] Compiling plugin Swift-DocC
Building for debugging...
[4/35] Write swift-version-24593BA9C3E375BF.txt
[6/47] Emitting module SwiftSyntax600
[7/47] Compiling SwiftSyntax600 Empty.swift
[8/47] Emitting module SwiftSyntax509
[9/47] Compiling SwiftSyntax509 Empty.swift
[10/47] Emitting module SwiftSyntax601
[11/47] Compiling SwiftSyntax601 Empty.swift
[12/50] Compiling SwiftSyntax510 Empty.swift
[13/50] Emitting module SwiftSyntax510
[14/51] Emitting module IssueReportingPackageSupport
[15/51] Compiling IssueReportingPackageSupport _Test.swift
[21/130] Emitting module ArgumentParserToolInfo
[22/130] Compiling ArgumentParserToolInfo ToolInfo.swift
[24/130] Compiling SwiftSyntax MemoryLayout.swift
[25/130] Compiling SwiftSyntax MissingNodeInitializers.swift
[26/176] Compiling ArgumentParser Option.swift
[27/176] Compiling ArgumentParser OptionGroup.swift
[28/176] Compiling ArgumentParser AsyncParsableCommand.swift
[29/176] Compiling ArgumentParser CompletionKind.swift
[30/176] Compiling ArgumentParser Errors.swift
[31/176] Compiling ArgumentParser ArgumentHelp.swift
[32/176] Compiling ArgumentParser ArgumentVisibility.swift
[33/176] Compiling ArgumentParser ZshCompletionsGenerator.swift
[34/176] Compiling ArgumentParser Argument.swift
[35/176] Compiling ArgumentParser ArgumentDiscussion.swift
[36/176] Compiling ArgumentParser BashCompletionsGenerator.swift
[37/176] Compiling ArgumentParser CompletionsGenerator.swift
[38/176] Compiling ArgumentParser FishCompletionsGenerator.swift
[39/176] Compiling ArgumentParser CommandConfiguration.swift
[40/176] Compiling ArgumentParser CommandGroup.swift
[41/176] Compiling ArgumentParser EnumerableFlag.swift
[42/176] Compiling ArgumentParser ExpressibleByArgument.swift
[43/176] Compiling ArgumentParser ParsableArguments.swift
[44/176] Emitting module IssueReporting
[46/179] Emitting module ArgumentParser
[53/185] Compiling XCTestDynamicOverlay Exports.swift
[54/185] Compiling ArgumentParser CollectionExtensions.swift
[55/185] Compiling ArgumentParser Mutex.swift
[56/185] Compiling ArgumentParser Platform.swift
[57/185] Compiling ArgumentParser SequenceExtensions.swift
[58/185] Compiling ArgumentParser StringExtensions.swift
[59/185] Compiling ArgumentParser SwiftExtensions.swift
[60/185] Emitting module XCTestDynamicOverlay
[61/185] Compiling XCTestDynamicOverlay Deprecations.swift
[65/185] Compiling ArgumentParser ParsableCommand.swift
[66/185] Compiling ArgumentParser ArgumentDecoder.swift
[67/185] Compiling ArgumentParser ArgumentDefinition.swift
[68/185] Compiling ArgumentParser ArgumentSet.swift
[69/185] Compiling ArgumentParser CommandParser.swift
[70/185] Compiling ArgumentParser InputKey.swift
[71/185] Compiling ArgumentParser InputOrigin.swift
[72/204] Compiling ArgumentParser Tree.swift
[73/204] Compiling ArgumentParser CodingKeyValidator.swift
[74/204] Compiling ArgumentParser NonsenseFlagsValidator.swift
[75/204] Compiling ArgumentParser ParsableArgumentsValidation.swift
[76/204] Compiling ArgumentParser PositionalArgumentsValidator.swift
[77/204] Compiling ArgumentParser UniqueNamesValidator.swift
[78/204] Compiling CasePathsCore KeyPath+Sendable.swift
[79/204] Compiling CasePathsCore Never+CasePathable.swift
[80/204] Compiling CasePathsCore TypeName.swift
[81/205] Compiling CasePathsCore Optional+CasePathable.swift
[82/205] Compiling CasePathsCore UncheckedSendable.swift
[83/205] Compiling CasePathsCore AnyCasePath.swift
[84/205] Compiling CasePathsCore CasePathIterable.swift
[85/205] Compiling CasePathsCore CasePathReflectable.swift
[86/205] Compiling CasePathsCore CasePathable.swift
[87/205] Emitting module CasePathsCore
[88/205] Compiling CasePathsCore Result+CasePathable.swift
[92/206] Compiling ArgumentParser Flag.swift
[93/206] Compiling ArgumentParser NameSpecification.swift
[103/205] Compiling ArgumentParser SplitArguments.swift
[104/205] Compiling ArgumentParser DumpHelpGenerator.swift
[105/205] Compiling ArgumentParser HelpCommand.swift
[106/205] Compiling ArgumentParser HelpGenerator.swift
[107/205] Compiling ArgumentParser MessageInfo.swift
[108/205] Compiling ArgumentParser UsageGenerator.swift
[111/205] Compiling ArgumentParser Name.swift
[112/205] Compiling ArgumentParser Parsed.swift
[113/205] Compiling ArgumentParser ParsedValues.swift
[114/205] Compiling ArgumentParser ParserError.swift
[149/221] Compiling Benchmark BenchmarkTermination.swift
[150/221] Compiling Benchmark BenchmarkTime.swift
[151/223] Compiling Benchmark BenchmarkCommand.swift
[152/223] Compiling Benchmark BenchmarkFilter.swift
[153/223] Compiling Benchmark BenchmarkState.swift
[154/223] Compiling Benchmark BenchmarkSuite.swift
[155/223] Emitting module Benchmark
[156/223] Compiling Benchmark Stats.swift
[157/223] Compiling Benchmark TestIntegration.swift
[158/223] Compiling Benchmark Benchmark.swift
[159/223] Compiling Benchmark BenchmarkArguments.swift
[160/223] Compiling Benchmark BenchmarkColumn.swift
[161/223] Compiling Benchmark BenchmarkFormatter.swift
[162/223] Compiling Benchmark BenchmarkMain.swift
[163/223] Compiling Benchmark BenchmarkReporter.swift
[164/223] Compiling Benchmark BenchmarkResult.swift
[165/223] Compiling Benchmark BenchmarkRunner.swift
[166/223] Compiling Benchmark BenchmarkSetting.swift
[167/224] Wrapping AST for Benchmark for debugging
[169/224] Emitting module SwiftSyntax
[170/224] Compiling SwiftSyntax RawSyntaxNodesC.swift
[171/224] Compiling SwiftSyntax RawSyntaxNodesD.swift
[172/224] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[173/224] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[174/224] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[175/224] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[176/224] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[177/224] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[178/224] Compiling SwiftSyntax RawSyntaxValidation.swift
[192/224] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[193/224] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[194/224] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[195/224] Compiling SwiftSyntax SyntaxBaseNodes.swift
[196/224] Compiling SwiftSyntax SyntaxCollections.swift
[197/224] Compiling SwiftSyntax SyntaxNodesAB.swift
[198/224] Compiling SwiftSyntax SyntaxNodesC.swift
[199/224] Compiling SwiftSyntax SyntaxNodesD.swift
[200/224] Compiling SwiftSyntax SyntaxNodesEF.swift
[201/224] Compiling SwiftSyntax SyntaxNodesGHI.swift
[202/224] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[203/224] Compiling SwiftSyntax SyntaxNodesOP.swift
[204/224] Compiling SwiftSyntax SyntaxNodesQRS.swift
[205/224] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[207/282] Compiling SwiftDiagnostics Message.swift
[208/283] Compiling SwiftDiagnostics FixIt.swift
[209/283] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[210/283] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[211/283] Compiling SwiftBasicFormat Syntax+Extensions.swift
[212/283] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[213/283] Compiling SwiftParser TopLevel.swift
[214/283] Compiling SwiftParser TriviaParser.swift
[215/283] Emitting module SwiftDiagnostics
[216/283] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[217/283] Compiling SwiftParser TokenSpec.swift
[218/283] Compiling SwiftParser TokenSpecSet.swift
[219/283] Compiling SwiftBasicFormat Indenter.swift
[220/283] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[221/283] Compiling SwiftDiagnostics Note.swift
[223/284] Compiling SwiftBasicFormat InferIndentation.swift
[224/284] Emitting module SwiftBasicFormat
[225/284] Compiling SwiftBasicFormat BasicFormat.swift
[227/283] Compiling SwiftParser Modifiers.swift
[228/283] Compiling SwiftParser Names.swift
[229/283] Compiling SwiftParser Nominals.swift
[230/283] Compiling SwiftParser Parameters.swift
[231/283] Compiling SwiftParser ParseSourceFile.swift
[232/283] Compiling SwiftParser Parser.swift
[237/283] Compiling SwiftParser Types.swift
[238/283] Compiling SwiftParser SwiftParserCompatibility.swift
[239/283] Compiling SwiftParser SwiftVersion.swift
[240/283] Compiling SwiftParser SyntaxUtils.swift
[241/283] Compiling SwiftParser TokenConsumer.swift
[242/283] Compiling SwiftParser TokenPrecedence.swift
[243/283] Compiling SwiftParser LexemeSequence.swift
[244/283] Compiling SwiftParser Lexer.swift
[245/283] Compiling SwiftParser RegexLiteralLexer.swift
[246/283] Compiling SwiftParser UnicodeScalarExtensions.swift
[247/283] Compiling SwiftParser Lookahead.swift
[248/283] Compiling SwiftParser LoopProgressCondition.swift
[249/283] Compiling SwiftParser Patterns.swift
[250/283] Compiling SwiftParser Recovery.swift
[251/283] Compiling SwiftParser Specifiers.swift
[252/283] Compiling SwiftParser Statements.swift
[253/283] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[254/283] Compiling SwiftParser StringLiterals.swift
[255/288] Emitting module SwiftParser
[256/288] Compiling SwiftParser Attributes.swift
[257/288] Compiling SwiftParser Availability.swift
[258/288] Compiling SwiftParser CharacterInfo.swift
[259/288] Compiling SwiftParser CollectionNodes+Parsable.swift
[260/288] Compiling SwiftParser Declarations.swift
[261/288] Compiling SwiftParser Directives.swift
[262/288] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[263/288] Compiling SwiftParser Expressions.swift
[264/288] Compiling SwiftParser IncrementalParseTransition.swift
[265/288] Compiling SwiftParser IsValidIdentifier.swift
[266/288] Compiling SwiftParser Cursor.swift
[267/288] Compiling SwiftParser Lexeme.swift
[268/288] Compiling SwiftParser ExperimentalFeatures.swift
[269/288] Compiling SwiftParser IsLexerClassified.swift
[270/288] Compiling SwiftParser LayoutNodes+Parsable.swift
[271/288] Compiling SwiftParser Parser+TokenSpecSet.swift
[272/288] Compiling SwiftParser TokenSpecStaticMembers.swift
[274/311] Compiling SwiftOperators PrecedenceGroup.swift
[275/312] Compiling SwiftOperators PrecedenceGraph.swift
[276/312] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[277/313] Compiling SwiftOperators OperatorTable.swift
[278/313] Compiling SwiftParserDiagnostics MissingNodesError.swift
[279/313] Compiling SwiftParserDiagnostics MissingTokenError.swift
[280/313] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[281/313] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[282/313] Emitting module SwiftOperators
[283/313] Compiling SwiftOperators SyntaxSynthesis.swift
[284/313] Compiling SwiftOperators OperatorTable+Semantics.swift
[285/313] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[286/313] Compiling SwiftOperators OperatorTable+Folding.swift
[288/313] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[289/313] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[290/313] Compiling SwiftParserDiagnostics Utils.swift
[291/313] Emitting module SwiftParserDiagnostics
[292/313] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[293/313] Compiling SwiftParserDiagnostics PresenceUtils.swift
[298/313] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[299/313] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[301/328] Compiling SwiftSyntaxBuilder Indenter.swift
[302/328] Compiling SwiftSyntaxBuilder ListBuilder.swift
[303/329] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[304/329] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[305/329] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[306/329] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[307/329] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[308/329] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[309/329] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[310/329] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[311/329] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[312/329] Emitting module SwiftSyntaxBuilder
[313/329] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[314/329] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[315/329] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[316/329] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[318/346] Emitting module SwiftSyntaxMacros
[319/348] Compiling SwiftSyntaxMacros AccessorMacro.swift
[320/348] Compiling SwiftSyntaxMacros AttachedMacro.swift
[321/348] Compiling SwiftSyntaxMacros BodyMacro.swift
[322/348] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[323/348] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[324/348] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[325/348] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[326/348] Compiling SwiftSyntaxMacros Macro.swift
[327/348] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[328/348] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[329/348] Compiling SwiftSyntaxMacros Macro+Format.swift
[330/348] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[331/348] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[332/348] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[333/348] Compiling SwiftSyntaxMacros MemberMacro.swift
[334/348] Compiling SwiftSyntaxMacros PeerMacro.swift
[335/348] Compiling SwiftSyntaxMacros PreambleMacro.swift
[336/348] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[338/357] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[339/358] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[340/358] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[341/358] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[342/358] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[343/358] Emitting module SwiftSyntaxMacroExpansion
[344/358] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[345/358] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[346/358] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[347/358] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[349/370] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[350/370] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[351/370] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[352/370] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[353/370] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[354/371] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[355/371] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[356/371] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[357/371] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[358/371] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[359/371] Emitting module SwiftCompilerPluginMessageHandling
[360/371] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[361/371] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[363/373] Emitting module SwiftCompilerPlugin
[364/373] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[366/376] Compiling CasePathsMacros Plugin.swift
[367/376] Emitting module CasePathsMacros
[368/376] Compiling CasePathsMacros CasePathableMacro.swift
[369/376] Write Objects.LinkFileList
[370/376] Linking CasePathsMacros-tool
[372/383] Compiling CasePaths Macros.swift
[373/383] Compiling CasePaths Exports.swift
[374/383] Compiling CasePaths LockIsolated.swift
[375/383] Compiling CasePaths XCTestSupport.swift
[376/383] Compiling CasePaths Deprecations.swift
[377/383] Compiling CasePaths EnumReflection.swift
[378/383] Emitting module CasePaths
[380/450] Compiling Parsing CaseIterableRawRepresentable.swift
[381/450] Compiling Parsing CharacterSet.swift
[382/450] Compiling Parsing Conditional.swift
[383/450] Compiling Parsing Consumed.swift
[384/450] Compiling Parsing Digits.swift
[385/450] Compiling Parsing End.swift
[386/450] Compiling Parsing Fail.swift
[387/450] Compiling Parsing Filter.swift
[388/450] Compiling Parsing First.swift
[389/459] Compiling Parsing OneOfBuilder.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[390/459] Compiling Parsing ParserBuilder.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[391/459] Compiling Parsing Conversion.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[392/459] Compiling Parsing AnyConversion.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[393/459] Compiling Parsing BinaryFloatingPoint.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[394/459] Compiling Parsing ConversionMap.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[395/459] Compiling Parsing Conversions.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[396/459] Compiling Parsing Data.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[397/459] Compiling Parsing Enum.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[398/459] Compiling Parsing FixedWidthInteger.swift
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[399/459] Compiling Parsing PrefixThrough.swift
[400/459] Compiling Parsing PrefixUpTo.swift
[401/459] Compiling Parsing Printing.swift
[402/459] Compiling Parsing Pullback.swift
[403/459] Compiling Parsing ReplaceError.swift
[404/459] Compiling Parsing Rest.swift
[405/459] Compiling Parsing Skip.swift
[406/459] Compiling Parsing StartsWith.swift
[407/459] Compiling Parsing UUID.swift
[408/459] Compiling Parsing OneOf.swift
[409/459] Compiling Parsing OneOfMany.swift
[410/459] Compiling Parsing Optional.swift
[411/459] Compiling Parsing Optionally.swift
[412/459] Compiling Parsing Parse.swift
[413/459] Compiling Parsing ParseableFormatStyle.swift
[414/459] Compiling Parsing Peek.swift
[415/459] Compiling Parsing Pipe.swift
[416/459] Compiling Parsing Prefix.swift
[417/459] Compiling Parsing CountingRange.swift
[418/459] Compiling Parsing EmptyInitializable.swift
[419/459] Compiling Parsing AnyEquatable.swift
[420/459] Compiling Parsing Deprecations.swift
[421/459] Compiling Parsing Parser.swift
[422/459] Compiling Parsing ParserPrinter.swift
[423/459] Compiling Parsing Always.swift
[424/459] Compiling Parsing AnyParserPrinter.swift
[425/459] Compiling Parsing Backtracking.swift
[426/459] Compiling Parsing Bool.swift
[427/459] Compiling Parsing Identity.swift
[428/459] Compiling Parsing JSON.swift
[429/459] Compiling Parsing LosslessStringConvertible.swift
[430/459] Compiling Parsing Memberwise.swift
[431/459] Compiling Parsing ParseableFormatStyleConversion.swift
[432/459] Compiling Parsing RawRepresentable.swift
[433/459] Compiling Parsing String.swift
[434/459] Compiling Parsing Substring.swift
[435/459] Compiling Parsing UTF8View.swift
[436/459] Compiling Parsing ConvertingError.swift
[437/459] Compiling Parsing Float.swift
[438/459] Compiling Parsing From.swift
[439/459] Compiling Parsing Int.swift
[440/459] Compiling Parsing Lazy.swift
[441/459] Compiling Parsing Literal.swift
[442/459] Compiling Parsing Many.swift
[443/459] Compiling Parsing Map.swift
[444/459] Compiling Parsing Newline.swift
[445/459] Compiling Parsing Not.swift
[446/459] Emitting module Parsing
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:33:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
31 |   public static func `case`<Values, Enum>(
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
34 |     /initializer
35 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:40:27: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
38 |   public static func `case`<Enum>(
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
   |                           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |                           `- note: use 'AnyCasePath' instead
41 |     /initializer
42 |   }
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:45:11: warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
43 | }
44 |
45 | extension CasePath: Conversion {
   |           |- warning: 'CasePath' is deprecated: renamed to 'AnyCasePath'
   |           `- note: use 'AnyCasePath' instead
46 |   @inlinable
47 |   public func apply(_ input: Value) -> Root {
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:34:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
32 |     _ initializer: @escaping (Values) -> Enum
33 |   ) -> Self where Self == CasePath<Enum, Values> {
34 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
35 |   }
36 |
/host/spi-builder-workspace/Sources/Parsing/Conversions/Enum.swift:41:5: warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
39 |     _ initializer: Enum
40 |   ) -> Self where Self == CasePath<Enum, Void> {
41 |     /initializer
   |     `- warning: '/' is deprecated: Use a 'CasePathable' case key path, instead
42 |   }
43 | }
[447/459] Compiling Parsing Whitespace.swift
[448/459] Compiling Parsing AnyParser.swift
[449/459] Compiling Parsing CompactMap.swift
[450/459] Compiling Parsing FlatMap.swift
[451/459] Compiling Parsing Parsers.swift
[452/459] Compiling Parsing Stream.swift
[453/459] Compiling Parsing ParsingError.swift
[454/459] Compiling Parsing PrependableCollection.swift
[455/459] Compiling Parsing PrintingError.swift
[456/460] Wrapping AST for Parsing for debugging
[458/479] Compiling swift_parsing_benchmark CSV.swift
[459/479] Compiling swift_parsing_benchmark Color.swift
[460/479] Compiling swift_parsing_benchmark Benchmarking.swift
[461/481] Emitting module swift_parsing_benchmark
[462/481] Compiling swift_parsing_benchmark CSVSample.swift
[463/481] Compiling swift_parsing_benchmark XCTestLogsSample.swift
[464/481] Compiling swift_parsing_benchmark ParsingError.swift
[465/481] Compiling swift_parsing_benchmark Date.swift
[466/481] Compiling swift_parsing_benchmark HTTP.swift
[467/481] Compiling swift_parsing_benchmark XCTestLogs.swift
[468/481] Compiling swift_parsing_benchmark main.swift
[469/481] Compiling swift_parsing_benchmark Race.swift
[470/481] Compiling swift_parsing_benchmark ReadmeExample.swift
[471/481] Compiling swift_parsing_benchmark Arithmetic.swift
[472/481] Compiling swift_parsing_benchmark BinaryData.swift
[473/481] Compiling swift_parsing_benchmark Bool.swift
[474/481] Compiling swift_parsing_benchmark JSON.swift
[475/481] Compiling swift_parsing_benchmark Numerics.swift
[476/481] Compiling swift_parsing_benchmark PrefixUpTo.swift
[477/481] Compiling swift_parsing_benchmark StringAbstractions.swift
[478/481] Compiling swift_parsing_benchmark UUID.swift
[479/482] Wrapping AST for swift-parsing-benchmark for debugging
[480/482] Write Objects.LinkFileList
[481/482] Linking swift-parsing-benchmark
Build complete! (176.37s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-case-paths",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-case-paths"
    },
    {
      "identity" : "swift-benchmark",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/google/swift-benchmark"
    }
  ],
  "manifest_display_name" : "swift-parsing",
  "name" : "swift-parsing",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Parsing",
      "targets" : [
        "Parsing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swift-parsing-benchmark",
      "targets" : [
        "swift-parsing-benchmark"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_parsing_benchmark",
      "module_type" : "SwiftTarget",
      "name" : "swift-parsing-benchmark",
      "path" : "Sources/swift-parsing-benchmark",
      "product_dependencies" : [
        "Benchmark"
      ],
      "product_memberships" : [
        "swift-parsing-benchmark"
      ],
      "sources" : [
        "Arithmetic.swift",
        "BinaryData.swift",
        "Bool.swift",
        "CSV.swift",
        "Color.swift",
        "Common/Benchmarking.swift",
        "Common/ParsingError.swift",
        "Date.swift",
        "HTTP.swift",
        "JSON.swift",
        "Numerics.swift",
        "PrefixUpTo.swift",
        "Race.swift",
        "ReadmeExample.swift",
        "Samples/CSVSample.swift",
        "Samples/XCTestLogsSample.swift",
        "StringAbstractions.swift",
        "UUID.swift",
        "XCTestLogs.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "Parsing"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ParsingTests",
      "module_type" : "SwiftTarget",
      "name" : "ParsingTests",
      "path" : "Tests/ParsingTests",
      "sources" : [
        "AlwaysTests.swift",
        "AnyParserTests.swift",
        "BacktrackTests.swift",
        "BoolTests.swift",
        "CaseIterableRawRepresentableTests.swift",
        "CaseIterableTests.swift",
        "CharacterSetTests.swift",
        "CompactMapTests.swift",
        "ConditionalTests.swift",
        "ConsumedTests.swift",
        "DigitsTests.swift",
        "DoubleTests.swift",
        "EndTests.swift",
        "FailTests.swift",
        "FilterTests.swift",
        "FirstTests.swift",
        "FlatMapTests.swift",
        "FromSubstringTests.swift",
        "IntTests.swift",
        "LazyTests.swift",
        "ManyTests.swift",
        "MapTests.swift",
        "NotTests.swift",
        "OneOfBuilderTests.swift",
        "OneOfTests.swift",
        "OptionallyTests.swift",
        "ParseableFormatTests.swift",
        "ParserBuilderTests.swift",
        "ParserTests.swift",
        "ParsingErrorTests.swift",
        "PeekTests.swift",
        "PipeEndTests.swift",
        "PipeTests.swift",
        "PrefixTests.swift",
        "PrefixThroughTests.swift",
        "PrefixUpToTests.swift",
        "RegressionTests.swift",
        "ReplaceErrorTests.swift",
        "RestTests.swift",
        "SkipTests.swift",
        "StartsWithTests.swift",
        "StreamTests.swift",
        "UTF8Tests.swift",
        "UUIDTests.swift",
        "VariadicTests.swift",
        "WhitespaceTests.swift"
      ],
      "target_dependencies" : [
        "Parsing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Parsing",
      "module_type" : "SwiftTarget",
      "name" : "Parsing",
      "path" : "Sources/Parsing",
      "product_dependencies" : [
        "CasePaths"
      ],
      "product_memberships" : [
        "Parsing",
        "swift-parsing-benchmark"
      ],
      "sources" : [
        "Builders/OneOfBuilder.swift",
        "Builders/ParserBuilder.swift",
        "Conversion.swift",
        "Conversions/AnyConversion.swift",
        "Conversions/BinaryFloatingPoint.swift",
        "Conversions/ConversionMap.swift",
        "Conversions/Conversions.swift",
        "Conversions/Data.swift",
        "Conversions/Enum.swift",
        "Conversions/FixedWidthInteger.swift",
        "Conversions/Identity.swift",
        "Conversions/JSON.swift",
        "Conversions/LosslessStringConvertible.swift",
        "Conversions/Memberwise.swift",
        "Conversions/ParseableFormatStyleConversion.swift",
        "Conversions/RawRepresentable.swift",
        "Conversions/String.swift",
        "Conversions/Substring.swift",
        "Conversions/UTF8View.swift",
        "ConvertingError.swift",
        "CountingRange.swift",
        "EmptyInitializable.swift",
        "Internal/AnyEquatable.swift",
        "Internal/Deprecations.swift",
        "Parser.swift",
        "ParserPrinter.swift",
        "ParserPrinters/Always.swift",
        "ParserPrinters/AnyParserPrinter.swift",
        "ParserPrinters/Backtracking.swift",
        "ParserPrinters/Bool.swift",
        "ParserPrinters/CaseIterableRawRepresentable.swift",
        "ParserPrinters/CharacterSet.swift",
        "ParserPrinters/Conditional.swift",
        "ParserPrinters/Consumed.swift",
        "ParserPrinters/Digits.swift",
        "ParserPrinters/End.swift",
        "ParserPrinters/Fail.swift",
        "ParserPrinters/Filter.swift",
        "ParserPrinters/First.swift",
        "ParserPrinters/Float.swift",
        "ParserPrinters/From.swift",
        "ParserPrinters/Int.swift",
        "ParserPrinters/Lazy.swift",
        "ParserPrinters/Literal.swift",
        "ParserPrinters/Many.swift",
        "ParserPrinters/Map.swift",
        "ParserPrinters/Newline.swift",
        "ParserPrinters/Not.swift",
        "ParserPrinters/OneOf.swift",
        "ParserPrinters/OneOfMany.swift",
        "ParserPrinters/Optional.swift",
        "ParserPrinters/Optionally.swift",
        "ParserPrinters/Parse.swift",
        "ParserPrinters/ParseableFormatStyle.swift",
        "ParserPrinters/Peek.swift",
        "ParserPrinters/Pipe.swift",
        "ParserPrinters/Prefix.swift",
        "ParserPrinters/PrefixThrough.swift",
        "ParserPrinters/PrefixUpTo.swift",
        "ParserPrinters/Printing.swift",
        "ParserPrinters/Pullback.swift",
        "ParserPrinters/ReplaceError.swift",
        "ParserPrinters/Rest.swift",
        "ParserPrinters/Skip.swift",
        "ParserPrinters/StartsWith.swift",
        "ParserPrinters/UUID.swift",
        "ParserPrinters/Whitespace.swift",
        "Parsers/AnyParser.swift",
        "Parsers/CompactMap.swift",
        "Parsers/FlatMap.swift",
        "Parsers/Parsers.swift",
        "Parsers/Stream.swift",
        "ParsingError.swift",
        "PrependableCollection.swift",
        "PrintingError.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8106a39f56f5bb7aad9f0d9a94f1e5362f9a40b692f7bc17efe17b7b91dc65fc
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.