Build Information
Successful build of swift-parsing, reference main (611f34
), with Swift 6.1 for Linux on 1 Sep 2025 21:21:03 UTC.
Swift 6 data race errors: 5
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
[456/509] Compiling Parsing Peek.swift
[457/509] Compiling Parsing Pipe.swift
[458/509] Compiling Parsing Prefix.swift
[459/509] Compiling Parsing PrefixThrough.swift
[460/509] Compiling Parsing PrefixUpTo.swift
[461/509] Compiling Parsing Printing.swift
[462/509] Compiling Parsing Pullback.swift
[463/509] Compiling Parsing ReplaceError.swift
[464/509] Compiling Parsing Rest.swift
[465/509] Compiling Parsing Skip.swift
[466/509] Compiling Parsing StartsWith.swift
[467/509] Compiling Parsing UUID.swift
[468/509] Compiling Parsing CountingRange.swift
[469/509] Compiling Parsing EmptyInitializable.swift
[470/509] Compiling Parsing AnyEquatable.swift
[471/509] Compiling Parsing Deprecations.swift
[472/509] Compiling Parsing Parser.swift
[473/509] Compiling Parsing ParserPrinter.swift
[474/509] Compiling Parsing Always.swift
[475/509] Compiling Parsing AnyParserPrinter.swift
[476/509] Compiling Parsing Backtracking.swift
[477/509] Compiling Parsing Bool.swift
[478/509] Compiling Parsing CaseIterableRawRepresentable.swift
[479/509] Compiling Parsing CharacterSet.swift
[480/509] Compiling Parsing Conditional.swift
[481/509] Compiling Parsing Consumed.swift
[482/509] Compiling Parsing Digits.swift
[483/509] Compiling Parsing End.swift
[484/509] Compiling Parsing Fail.swift
[485/509] Compiling Parsing Filter.swift
[486/509] Compiling Parsing First.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 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 = """
[513/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 = """
[514/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 |
[515/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
[516/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
[517/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
[518/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
[519/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
[520/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
[521/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 {
[522/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 {
[523/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 {
[524/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 |
[525/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 |
[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-1":/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:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:99ea6d26ace67c023f359493a2ac553a612b92a7f2dee009657225f46f43aa0e
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-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] Emitting module SwiftSyntax509
[8/47] Compiling SwiftSyntax509 Empty.swift
[9/48] Compiling SwiftSyntax600 Empty.swift
[10/48] Compiling SwiftSyntax510 Empty.swift
[11/49] Emitting module SwiftSyntax510
[12/50] Compiling IssueReportingPackageSupport _Test.swift
[13/50] Emitting module IssueReportingPackageSupport
[14/51] Compiling SwiftSyntax601 Empty.swift
[15/51] Emitting module SwiftSyntax601
[21/130] Compiling SwiftSyntax Identifier.swift
[22/130] Compiling SwiftSyntax MemoryLayout.swift
[23/130] Compiling SwiftSyntax MissingNodeInitializers.swift
[24/130] Compiling SwiftSyntax Convenience.swift
[25/130] Compiling SwiftSyntax CustomTraits.swift
[26/130] Compiling SwiftSyntax EditorPlaceholder.swift
[27/132] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[28/132] Compiling SwiftSyntax RawSyntaxTokenView.swift
[29/132] Emitting module ArgumentParserToolInfo
[30/132] Compiling ArgumentParserToolInfo ToolInfo.swift
[31/133] Compiling SwiftSyntax RawSyntax.swift
[32/133] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[33/133] Compiling SwiftSyntax SourceEdit.swift
[34/133] Compiling SwiftSyntax SourceLength.swift
[36/133] Emitting module IssueReporting
[37/176] Compiling ArgumentParser ExpressibleByArgument.swift
[38/176] Compiling ArgumentParser ParsableArguments.swift
[39/176] Compiling ArgumentParser BashCompletionsGenerator.swift
[40/176] Compiling ArgumentParser CompletionsGenerator.swift
[41/176] Compiling ArgumentParser FishCompletionsGenerator.swift
[42/176] Compiling ArgumentParser ZshCompletionsGenerator.swift
[43/176] Compiling ArgumentParser Argument.swift
[44/176] Compiling ArgumentParser ArgumentDiscussion.swift
[46/179] Compiling ArgumentParser OptionGroup.swift
[47/179] Compiling ArgumentParser AsyncParsableCommand.swift
[48/179] Compiling ArgumentParser CommandConfiguration.swift
[49/179] Compiling ArgumentParser CommandGroup.swift
[50/179] Compiling ArgumentParser EnumerableFlag.swift
[52/185] Compiling XCTestDynamicOverlay Exports.swift
[53/185] Compiling ArgumentParser CollectionExtensions.swift
[54/185] Compiling ArgumentParser Mutex.swift
[55/185] Compiling ArgumentParser Platform.swift
[56/185] Compiling ArgumentParser SequenceExtensions.swift
[57/185] Compiling ArgumentParser StringExtensions.swift
[58/185] Compiling ArgumentParser SwiftExtensions.swift
[59/185] Emitting module XCTestDynamicOverlay
[60/185] Compiling XCTestDynamicOverlay Deprecations.swift
[62/195] Emitting module ArgumentParser
[63/195] Compiling CasePathsCore AnyCasePath.swift
[64/195] Compiling CasePathsCore CasePathIterable.swift
[65/195] Compiling CasePathsCore CasePathReflectable.swift
[66/195] Compiling CasePathsCore CasePathable.swift
[69/195] Compiling ArgumentParser ArgumentHelp.swift
[70/195] Compiling ArgumentParser ArgumentVisibility.swift
[71/195] Compiling ArgumentParser CompletionKind.swift
[72/195] Compiling ArgumentParser Errors.swift
[73/195] Compiling ArgumentParser Flag.swift
[74/195] Compiling ArgumentParser NameSpecification.swift
[75/195] Compiling ArgumentParser Option.swift
[76/195] Compiling CasePathsCore UncheckedSendable.swift
[77/196] Compiling CasePathsCore KeyPath+Sendable.swift
[78/196] Compiling CasePathsCore TypeName.swift
[79/196] Emitting module CasePathsCore
[84/196] Compiling ArgumentParser Tree.swift
[85/196] Compiling ArgumentParser CodingKeyValidator.swift
[86/196] Compiling ArgumentParser NonsenseFlagsValidator.swift
[87/196] Compiling ArgumentParser ParsableArgumentsValidation.swift
[88/196] Compiling ArgumentParser PositionalArgumentsValidator.swift
[89/196] Compiling ArgumentParser UniqueNamesValidator.swift
[90/196] Compiling CasePathsCore Never+CasePathable.swift
[91/196] Compiling CasePathsCore Optional+CasePathable.swift
[92/196] Compiling CasePathsCore Result+CasePathable.swift
[94/196] Compiling ArgumentParser InputKey.swift
[95/196] Compiling ArgumentParser InputOrigin.swift
[96/196] Compiling ArgumentParser Name.swift
[97/196] Compiling ArgumentParser Parsed.swift
[98/196] Compiling ArgumentParser ParsedValues.swift
[99/196] Compiling ArgumentParser ParserError.swift
[100/196] Compiling ArgumentParser SplitArguments.swift
[101/196] Compiling ArgumentParser DumpHelpGenerator.swift
[102/196] Compiling ArgumentParser HelpCommand.swift
[103/196] Compiling ArgumentParser HelpGenerator.swift
[104/196] Compiling ArgumentParser MessageInfo.swift
[105/196] Compiling ArgumentParser UsageGenerator.swift
[126/196] Compiling ArgumentParser ParsableCommand.swift
[127/196] Compiling ArgumentParser ArgumentDecoder.swift
[128/196] Compiling ArgumentParser ArgumentDefinition.swift
[129/196] Compiling ArgumentParser ArgumentSet.swift
[130/196] Compiling ArgumentParser CommandParser.swift
[140/221] Compiling Benchmark BenchmarkTermination.swift
[141/221] Compiling Benchmark BenchmarkTime.swift
[142/223] Compiling Benchmark BenchmarkRunner.swift
[143/223] Compiling Benchmark BenchmarkSetting.swift
[144/223] Compiling Benchmark BenchmarkState.swift
[145/223] Compiling Benchmark BenchmarkSuite.swift
[146/223] Compiling Benchmark Stats.swift
[147/223] Compiling Benchmark TestIntegration.swift
[148/223] Compiling Benchmark BenchmarkReporter.swift
[149/223] Compiling Benchmark BenchmarkResult.swift
[150/223] Compiling Benchmark BenchmarkCommand.swift
[151/223] Compiling Benchmark BenchmarkFilter.swift
[152/223] Compiling Benchmark BenchmarkFormatter.swift
[153/223] Compiling Benchmark BenchmarkMain.swift
[154/223] Emitting module Benchmark
[155/223] Compiling Benchmark Benchmark.swift
[156/223] Compiling Benchmark BenchmarkArguments.swift
[157/223] Compiling Benchmark BenchmarkColumn.swift
[158/224] Wrapping AST for Benchmark for debugging
[160/224] Emitting module SwiftSyntax
[165/224] Compiling SwiftSyntax SyntaxVisitor.swift
[166/224] Compiling SwiftSyntax TokenKind.swift
[167/224] Compiling SwiftSyntax Tokens.swift
[168/224] Compiling SwiftSyntax TriviaPieces.swift
[169/224] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[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
[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/241] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[208/241] Compiling SwiftDiagnostics Message.swift
[209/242] Compiling SwiftBasicFormat InferIndentation.swift
[210/242] Compiling SwiftBasicFormat Syntax+Extensions.swift
[211/242] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[212/283] Compiling SwiftDiagnostics Note.swift
[213/283] Compiling SwiftBasicFormat Indenter.swift
[214/283] Emitting module SwiftDiagnostics
[215/283] Compiling SwiftParser LexemeSequence.swift
[216/283] Compiling SwiftParser Lexer.swift
[217/283] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[218/283] Compiling SwiftParser RegexLiteralLexer.swift
[219/283] Compiling SwiftParser UnicodeScalarExtensions.swift
[220/283] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[221/283] Compiling SwiftDiagnostics FixIt.swift
[222/283] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[224/284] Emitting module SwiftBasicFormat
[225/284] Compiling SwiftBasicFormat BasicFormat.swift
[227/283] Compiling SwiftParser Patterns.swift
[228/283] Compiling SwiftParser Recovery.swift
[229/283] Compiling SwiftParser Specifiers.swift
[230/283] Compiling SwiftParser Statements.swift
[231/283] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[232/283] Compiling SwiftParser StringLiterals.swift
[233/283] Compiling SwiftParser Modifiers.swift
[234/283] Compiling SwiftParser Names.swift
[235/283] Compiling SwiftParser Nominals.swift
[236/283] Compiling SwiftParser Parameters.swift
[237/283] Compiling SwiftParser ParseSourceFile.swift
[238/283] Compiling SwiftParser Parser.swift
[239/283] Compiling SwiftParser SwiftParserCompatibility.swift
[240/283] Compiling SwiftParser SwiftVersion.swift
[241/283] Compiling SwiftParser SyntaxUtils.swift
[242/283] Compiling SwiftParser TokenConsumer.swift
[243/283] Compiling SwiftParser TokenPrecedence.swift
[244/283] Compiling SwiftParser TokenSpec.swift
[245/283] Compiling SwiftParser TokenSpecSet.swift
[246/283] Compiling SwiftParser TopLevel.swift
[247/283] Compiling SwiftParser TriviaParser.swift
[248/283] Compiling SwiftParser Types.swift
[249/288] Emitting module SwiftParser
[254/288] Compiling SwiftParser Lookahead.swift
[255/288] Compiling SwiftParser LoopProgressCondition.swift
[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 PrecedenceGraph.swift
[275/312] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[276/313] Compiling SwiftOperators PrecedenceGroup.swift
[277/313] Compiling SwiftOperators OperatorTable.swift
[278/313] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[279/313] Compiling SwiftOperators SyntaxSynthesis.swift
[280/313] Compiling SwiftOperators OperatorTable+Semantics.swift
[281/313] Compiling SwiftParserDiagnostics MissingNodesError.swift
[282/313] Compiling SwiftParserDiagnostics MissingTokenError.swift
[283/313] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[284/313] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[285/313] Emitting module SwiftOperators
[286/313] Compiling SwiftOperators OperatorTable+Folding.swift
[287/314] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[288/314] Compiling SwiftParserDiagnostics Utils.swift
[289/314] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[290/314] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[291/314] Compiling SwiftParserDiagnostics PresenceUtils.swift
[294/314] Emitting module SwiftParserDiagnostics
[296/313] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[297/313] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[301/328] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[302/328] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[303/329] Compiling SwiftSyntaxBuilder Indenter.swift
[304/329] Compiling SwiftSyntaxBuilder ListBuilder.swift
[305/329] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[306/329] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[307/329] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[308/329] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[309/329] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[310/329] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[311/329] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[312/329] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[313/329] Emitting module SwiftSyntaxBuilder
[314/329] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[315/329] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[316/329] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[318/346] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[319/346] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[320/346] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[321/346] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[322/346] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[323/346] Compiling SwiftSyntaxMacros Macro+Format.swift
[324/346] Compiling SwiftSyntaxMacros Macro.swift
[325/346] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[326/346] Compiling SwiftSyntaxMacros AccessorMacro.swift
[327/346] Compiling SwiftSyntaxMacros AttachedMacro.swift
[328/346] Compiling SwiftSyntaxMacros BodyMacro.swift
[329/346] Compiling SwiftSyntaxMacros MemberMacro.swift
[330/346] Compiling SwiftSyntaxMacros PeerMacro.swift
[331/348] Emitting module SwiftSyntaxMacros
[332/348] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[333/348] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[334/348] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[335/348] Compiling SwiftSyntaxMacros PreambleMacro.swift
[336/348] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[338/357] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[339/357] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[340/357] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[341/358] Emitting module SwiftSyntaxMacroExpansion
[342/358] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[343/358] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[344/358] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[345/358] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[346/358] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[347/358] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[349/370] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[350/370] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[351/370] Emitting module SwiftCompilerPluginMessageHandling
[352/371] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[353/371] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[354/371] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[355/371] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[356/371] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[357/371] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[358/371] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[359/371] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[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] Compiling CasePathsMacros CasePathableMacro.swift
[368/376] Emitting module CasePathsMacros
[369/376] Write Objects.LinkFileList
[370/376] Linking CasePathsMacros-tool
[372/383] Compiling CasePaths Exports.swift
[373/383] Emitting module CasePaths
[374/383] Compiling CasePaths Deprecations.swift
[375/383] Compiling CasePaths LockIsolated.swift
[376/383] Compiling CasePaths Macros.swift
[377/383] Compiling CasePaths XCTestSupport.swift
[378/383] Compiling CasePaths EnumReflection.swift
[380/450] Compiling Parsing OneOf.swift
[381/450] Compiling Parsing OneOfMany.swift
[382/450] Compiling Parsing Optional.swift
[383/450] Compiling Parsing Optionally.swift
[384/450] Compiling Parsing Parse.swift
[385/450] Compiling Parsing ParseableFormatStyle.swift
[386/450] Compiling Parsing Peek.swift
[387/450] Compiling Parsing Pipe.swift
[388/450] Compiling Parsing Prefix.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 CaseIterableRawRepresentable.swift
[409/459] Compiling Parsing CharacterSet.swift
[410/459] Compiling Parsing Conditional.swift
[411/459] Compiling Parsing Consumed.swift
[412/459] Compiling Parsing Digits.swift
[413/459] Compiling Parsing End.swift
[414/459] Compiling Parsing Fail.swift
[415/459] Compiling Parsing Filter.swift
[416/459] Compiling Parsing First.swift
[417/459] Compiling Parsing Identity.swift
[418/459] Compiling Parsing JSON.swift
[419/459] Compiling Parsing LosslessStringConvertible.swift
[420/459] Compiling Parsing Memberwise.swift
[421/459] Compiling Parsing ParseableFormatStyleConversion.swift
[422/459] Compiling Parsing RawRepresentable.swift
[423/459] Compiling Parsing String.swift
[424/459] Compiling Parsing Substring.swift
[425/459] Compiling Parsing UTF8View.swift
[426/459] Compiling Parsing ConvertingError.swift
[427/459] Compiling Parsing CountingRange.swift
[428/459] Compiling Parsing EmptyInitializable.swift
[429/459] Compiling Parsing AnyEquatable.swift
[430/459] Compiling Parsing Deprecations.swift
[431/459] Compiling Parsing Parser.swift
[432/459] Compiling Parsing ParserPrinter.swift
[433/459] Compiling Parsing Always.swift
[434/459] Compiling Parsing AnyParserPrinter.swift
[435/459] Compiling Parsing Backtracking.swift
[436/459] Compiling Parsing Bool.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 StringAbstractions.swift
[459/479] Compiling swift_parsing_benchmark UUID.swift
[460/481] Compiling swift_parsing_benchmark CSV.swift
[461/481] Compiling swift_parsing_benchmark Color.swift
[462/481] Compiling swift_parsing_benchmark Benchmarking.swift
[463/481] Emitting module swift_parsing_benchmark
[464/481] Compiling swift_parsing_benchmark Race.swift
[465/481] Compiling swift_parsing_benchmark ReadmeExample.swift
[466/481] Compiling swift_parsing_benchmark ParsingError.swift
[467/481] Compiling swift_parsing_benchmark Date.swift
[468/481] Compiling swift_parsing_benchmark HTTP.swift
[469/481] Compiling swift_parsing_benchmark XCTestLogs.swift
[470/481] Compiling swift_parsing_benchmark main.swift
[471/481] Compiling swift_parsing_benchmark CSVSample.swift
[472/481] Compiling swift_parsing_benchmark XCTestLogsSample.swift
[473/481] Compiling swift_parsing_benchmark Arithmetic.swift
[474/481] Compiling swift_parsing_benchmark BinaryData.swift
[475/481] Compiling swift_parsing_benchmark Bool.swift
[476/481] Compiling swift_parsing_benchmark JSON.swift
[477/481] Compiling swift_parsing_benchmark Numerics.swift
[478/481] Compiling swift_parsing_benchmark PrefixUpTo.swift
[479/482] Wrapping AST for swift-parsing-benchmark for debugging
[480/482] Write Objects.LinkFileList
[481/482] Linking swift-parsing-benchmark
Build complete! (157.65s)
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"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:99ea6d26ace67c023f359493a2ac553a612b92a7f2dee009657225f46f43aa0e
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.