The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of swift-utils, reference main (620de2), with Swift 6.0 for Linux on 18 Feb 2025 02:28:24 UTC.

Swift 6 data race errors: 3

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.60.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/fwcd/swift-utils.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/fwcd/swift-utils
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 620de2d Bump GH pages actions
Cloned https://github.com/fwcd/swift-utils.git
Revision (git rev-parse @):
620de2dea14361be51ce5d018a958bafb78d7320
SUCCESS checkout https://github.com/fwcd/swift-utils.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/fwcd/swift-utils.git
https://github.com/fwcd/swift-utils.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin.git"
    },
    {
      "identity" : "swiftsoup",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.7.5",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/scinfu/SwiftSoup.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.6.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "xmlcoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.17.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/MaxDesiatov/XMLCoder.git"
    }
  ],
  "manifest_display_name" : "swift-utils",
  "name" : "swift-utils",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Utils",
      "targets" : [
        "Utils"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UtilsTests",
      "module_type" : "SwiftTarget",
      "name" : "UtilsTests",
      "path" : "Tests/UtilsTests",
      "sources" : [
        "Collections/AvlTreeTests.swift",
        "Collections/BiDictionaryTests.swift",
        "Collections/BinaryHeapTests.swift",
        "Collections/BitArrayTests.swift",
        "Collections/CircularArrayTests.swift",
        "Collections/CollectionUtilsTests.swift",
        "Collections/StablePriorityQueueTests.swift",
        "Extensions/AsyncExtensionsTests.swift",
        "Extensions/StringExtensionsTests.swift",
        "Numerics/ComplexTests.swift",
        "Numerics/FibonacciSequenceTests.swift",
        "Numerics/Mat2Tests.swift",
        "Numerics/MathUtilsTests.swift",
        "Numerics/MatrixTests.swift",
        "Numerics/NDArrayTests.swift",
        "Numerics/RationalTests.swift",
        "Parsing/TokenIteratorTests.swift",
        "Processes/ShellTests.swift"
      ],
      "target_dependencies" : [
        "Utils"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Utils",
      "module_type" : "SwiftTarget",
      "name" : "Utils",
      "path" : "Sources/Utils",
      "product_dependencies" : [
        "Logging",
        "SwiftSoup",
        "XMLCoder"
      ],
      "product_memberships" : [
        "Utils"
      ],
      "sources" : [
        "Asynchrony/Promise.swift",
        "Asynchrony/PromiseUtils.swift",
        "Collections/ArrayUtils.swift",
        "Collections/AvlTree.swift",
        "Collections/BiDictionary.swift",
        "Collections/BinaryHeap.swift",
        "Collections/BitArray.swift",
        "Collections/CircularArray.swift",
        "Collections/ExpiringList.swift",
        "Collections/FixedArray.swift",
        "Collections/LazyDictionary.swift",
        "Collections/PriorityQueue.swift",
        "Collections/SearchTree.swift",
        "Collections/StablePriorityQueue.swift",
        "Concurrency/UncheckedSendable.swift",
        "Extensions/Array+Extensions.swift",
        "Extensions/ChoiceOf+Extensions.swift",
        "Extensions/Collection+Extensions.swift",
        "Extensions/Dictionary+Extensions.swift",
        "Extensions/Optional+Extensions.swift",
        "Extensions/RandomAccessCollection+Extensions.swift",
        "Extensions/Result+Extensions.swift",
        "Extensions/Sequence+Extensions.swift",
        "Extensions/StringProtocol+Extensions.swift",
        "Extensions/TimeInterval+Extensions.swift",
        "Filesystem/TemporaryDirectory.swift",
        "Filesystem/TemporaryFile.swift",
        "Iterators/PeekableIterator.swift",
        "Metaprogramming/ConstBoolTypes.swift",
        "Metaprogramming/ConstIntTypes.swift",
        "Misc/AsyncRunnable.swift",
        "Misc/CompareUtils.swift",
        "Misc/DefaultInitializable.swift",
        "Misc/DiskFileError.swift",
        "Misc/KeyParameterizable.swift",
        "Misc/Runnable.swift",
        "Misc/Startable.swift",
        "Misc/StringBuilder.swift",
        "Misc/StringEnum.swift",
        "Misc/UnionStringEnum.swift",
        "Networking/AddressUtils.swift",
        "Networking/NetworkError.swift",
        "Numerics/Axis.swift",
        "Numerics/Complex.swift",
        "Numerics/Direction.swift",
        "Numerics/FibonacciSequence.swift",
        "Numerics/Mat2.swift",
        "Numerics/MathUtils.swift",
        "Numerics/Matrix.swift",
        "Numerics/NDArray.swift",
        "Numerics/NDArrayError.swift",
        "Numerics/NDArrayParser.swift",
        "Numerics/NDArrayParserError.swift",
        "Numerics/Rational.swift",
        "Numerics/Vec2.swift",
        "Numerics/Vector.swift",
        "Operations/Absolutable.swift",
        "Operations/Addable.swift",
        "Operations/AnyAsyncBijection.swift",
        "Operations/AnyBijection.swift",
        "Operations/AsyncBijection.swift",
        "Operations/Bijection.swift",
        "Operations/ComposedAsyncBijection.swift",
        "Operations/ComposedBijection.swift",
        "Operations/Divisible.swift",
        "Operations/IdentityBijection.swift",
        "Operations/IntExpressibleAlgebraicField.swift",
        "Operations/InverseAsyncBijection.swift",
        "Operations/InverseBijection.swift",
        "Operations/Magnitudable.swift",
        "Operations/Multipliable.swift",
        "Operations/Negatable.swift",
        "Operations/Remainderable.swift",
        "Operations/Scaling.swift",
        "Operations/Subtractable.swift",
        "Operations/Translation.swift",
        "Operations/UnsignedConvertible.swift",
        "Parsing/LegacyRegex.swift",
        "Parsing/TokenIterator.swift",
        "Processes/NodePackage.swift",
        "Processes/Shell.swift",
        "Ranges/LowBoundedIntRange.swift",
        "Ranges/RangeUtils.swift",
        "Scheduling/RepeatingTimer.swift",
        "Scheduling/TimerContext.swift",
        "Serialization/AnyCodable.swift",
        "Serialization/AnyCodingKey.swift",
        "Serialization/AutoSerializing.swift",
        "Serialization/DiskJsonSerializer.swift",
        "Serialization/EncodeError.swift",
        "Statistics/Averager.swift",
        "Statistics/CustomDiscreteDistribution.swift",
        "Statistics/Distribution.swift",
        "Synchronization/MutexLock.swift",
        "Synchronization/Synchronized.swift",
        "Time/Time.swift",
        "Web/DocumentToMarkdownConverter.swift",
        "Web/HTTPRequest.swift",
        "Wrappers/AsyncLazyExpiring.swift",
        "Wrappers/Binding.swift",
        "Wrappers/Box.swift",
        "Wrappers/Expiring.swift",
        "Wrappers/Lazy.swift",
        "Wrappers/PhantomWrapped.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/MaxDesiatov/XMLCoder.git
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/scinfu/SwiftSoup.git
[1/3761] Fetching swift-log
[2/5811] Fetching swift-log, swift-docc-plugin
[378/9031] Fetching swift-log, swift-docc-plugin, swiftsoup
[3294/19042] Fetching swift-log, swift-docc-plugin, swiftsoup, xmlcoder
Fetched https://github.com/scinfu/SwiftSoup.git from cache (0.43s)
Fetched https://github.com/apple/swift-log.git from cache (0.43s)
Fetched https://github.com/apple/swift-docc-plugin.git from cache (0.43s)
Fetched https://github.com/MaxDesiatov/XMLCoder.git from cache (0.43s)
Computing version for https://github.com/MaxDesiatov/XMLCoder.git
Computed https://github.com/MaxDesiatov/XMLCoder.git at 0.17.1 (1.84s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.2 (0.45s)
Computing version for https://github.com/scinfu/SwiftSoup.git
Computed https://github.com/scinfu/SwiftSoup.git at 2.7.7 (0.51s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.4.3 (0.53s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3305] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.30s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.53s)
Creating working copy for https://github.com/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.4.3
Creating working copy for https://github.com/MaxDesiatov/XMLCoder.git
Working copy of https://github.com/MaxDesiatov/XMLCoder.git resolved at 0.17.1
Creating working copy for https://github.com/scinfu/SwiftSoup.git
Working copy of https://github.com/scinfu/SwiftSoup.git resolved at 2.7.7
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.2
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/7] Write sources
[6/7] Write swift-version-24593BA9C3E375BF.txt
[8/109] Emitting module XMLCoder
[9/115] Emitting module SwiftSoup
[10/122] Compiling Logging MetadataProvider.swift
[11/122] Compiling Logging LogHandler.swift
[12/122] Compiling Logging Logging.swift
[13/122] Compiling Logging Locks.swift
[14/122] Emitting module Logging
[16/123] Compiling SwiftSoup TreeBuilder.swift
[17/123] Compiling SwiftSoup UnfairLock.swift
[18/123] Compiling SwiftSoup UnicodeScalar.swift
[19/123] Compiling SwiftSoup Validate.swift
[20/123] Compiling SwiftSoup Whitelist.swift
[21/123] Compiling SwiftSoup XmlDeclaration.swift
[22/123] Compiling SwiftSoup XmlTreeBuilder.swift
[23/123] Compiling XMLCoder UIntBox.swift
[24/123] Compiling XMLCoder URLBox.swift
[25/123] Compiling XMLCoder UnkeyedBox.swift
[26/123] Compiling XMLCoder ValueBox.swift
[27/123] Compiling XMLCoder Element.swift
[28/123] Compiling XMLCoder DynamicNodeDecoding.swift
[29/123] Compiling XMLCoder SingleValueDecodingContainer.swift
[30/123] Compiling XMLCoder BoolBox.swift
[31/123] Compiling XMLCoder Box.swift
[32/123] Compiling XMLCoder ChoiceBox.swift
[33/123] Compiling XMLCoder DataBox.swift
[34/123] Compiling XMLCoder DateBox.swift
[35/123] Compiling XMLCoder DecimalBox.swift
[36/123] Compiling XMLCoder StringBox.swift
[37/123] Compiling XMLCoder DoubleBox.swift
[38/123] Compiling XMLCoder FloatBox.swift
[39/123] Compiling XMLCoder IntBox.swift
[40/123] Compiling XMLCoder KeyedBox.swift
[41/123] Compiling XMLCoder NullBox.swift
[42/123] Compiling XMLCoder SharedBox.swift
[43/123] Compiling XMLCoder SingleKeyedBox.swift
[44/123] Compiling XMLCoder Attribute.swift
[50/123] Compiling XMLCoder XMLEncoder.swift
[51/123] Compiling XMLCoder XMLEncoderImplementation.swift
[52/123] Compiling XMLCoder XMLEncodingStorage.swift
[53/123] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[54/123] Compiling XMLCoder XMLReferencingEncoder.swift
[55/123] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[56/123] Compiling SwiftSoup TokeniserState.swift
[64/123] Compiling XMLCoder Metatypes.swift
[65/123] Compiling XMLCoder String+Extensions.swift
[66/123] Compiling XMLCoder XMLChoiceCodingKey.swift
[67/123] Compiling XMLCoder XMLCoderElement.swift
[68/123] Compiling XMLCoder XMLDocumentType.swift
[69/123] Compiling XMLCoder XMLHeader.swift
[70/123] Compiling XMLCoder XMLKey.swift
[71/123] Compiling XMLCoder XMLStackParser.swift
[72/123] Compiling XMLCoder DecodingErrorExtension.swift
[73/123] Compiling XMLCoder XMLKeyedDecodingContainer.swift
[74/123] Compiling XMLCoder XMLUnkeyedDecodingContainer.swift
[75/123] Compiling XMLCoder DynamicNodeEncoding.swift
[76/123] Compiling XMLCoder EncodingErrorExtension.swift
[77/123] Compiling XMLCoder SingleValueEncodingContainer.swift
[78/123] Compiling XMLCoder XMLChoiceEncodingContainer.swift
[83/123] Compiling XMLCoder XMLChoiceDecodingContainer.swift
[85/123] Compiling XMLCoder XMLDecoder.swift
[87/123] Compiling XMLCoder XMLDecoderImplementation.swift
[89/123] Compiling XMLCoder XMLDecodingStorage.swift
[97/123] Compiling XMLCoder ElementAndAttribute.swift
[98/123] Compiling XMLCoder ISO8601DateFormatter.swift
[99/123] Compiling XMLCoder KeyedStorage.swift
[126/217] Compiling Utils TemporaryFile.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[127/217] Compiling Utils PeekableIterator.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[128/217] Compiling Utils ConstBoolTypes.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[129/217] Compiling Utils ConstIntTypes.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[130/217] Compiling Utils AsyncRunnable.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[131/217] Compiling Utils CompareUtils.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[132/217] Compiling Utils DefaultInitializable.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[133/217] Compiling Utils DiskFileError.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[134/217] Compiling Utils KeyParameterizable.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[135/217] Compiling Utils Runnable.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[136/217] Compiling Utils Startable.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[137/217] Compiling Utils StringBuilder.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[138/217] Compiling Utils StringEnum.swift
/host/spi-builder-workspace/Sources/Utils/Filesystem/TemporaryFile.swift:32:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
30 |         }
31 |
32 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
33 |     }
34 |
[139/230] Emitting module Utils
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[140/230] Compiling Utils NDArrayParserError.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[141/230] Compiling Utils Rational.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[142/230] Compiling Utils Vec2.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[143/230] Compiling Utils Vector.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[144/230] Compiling Utils Absolutable.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[145/230] Compiling Utils Addable.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[146/230] Compiling Utils AnyAsyncBijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[147/230] Compiling Utils AnyBijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[148/230] Compiling Utils AsyncBijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[149/230] Compiling Utils Bijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[150/230] Compiling Utils ComposedAsyncBijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[151/230] Compiling Utils ComposedBijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[152/230] Compiling Utils Divisible.swift
/host/spi-builder-workspace/Sources/Utils/Operations/AnyBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 1 | public struct AnyBijection<V>: Bijection {
   |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 2 |     private let applyImpl: @Sendable (V) -> V
 3 |     private let inverseApplyImpl: @Sendable (V) -> V
[153/230] Compiling Utils Promise.swift
[154/230] Compiling Utils PromiseUtils.swift
[155/230] Compiling Utils ArrayUtils.swift
[156/230] Compiling Utils AvlTree.swift
[157/230] Compiling Utils BiDictionary.swift
[158/230] Compiling Utils BinaryHeap.swift
[159/230] Compiling Utils BitArray.swift
[160/230] Compiling Utils CircularArray.swift
[161/230] Compiling Utils ExpiringList.swift
[162/230] Compiling Utils FixedArray.swift
[163/230] Compiling Utils LazyDictionary.swift
[164/230] Compiling Utils PriorityQueue.swift
[165/230] Compiling Utils SearchTree.swift
[166/230] Compiling Utils CustomDiscreteDistribution.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[167/230] Compiling Utils Distribution.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[168/230] Compiling Utils MutexLock.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[169/230] Compiling Utils Synchronized.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[170/230] Compiling Utils Time.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[171/230] Compiling Utils DocumentToMarkdownConverter.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[172/230] Compiling Utils HTTPRequest.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[173/230] Compiling Utils AsyncLazyExpiring.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[174/230] Compiling Utils Binding.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[175/230] Compiling Utils Box.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[176/230] Compiling Utils Expiring.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[177/230] Compiling Utils Lazy.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[178/230] Compiling Utils PhantomWrapped.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
 6 | /// A value that periodically expires and gets re-queried
 7 | /// through a supplied getter.
 8 | public actor AsyncLazyExpiring<T> {
   |                                `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 9 |     public let expiryInterval: TimeInterval
10 |     public private(set) var nextExpiry: Date? = nil
   :
28 |
29 |     private func update() async throws {
30 |         cachedValue = try await getter()
   |                                 `- warning: non-sendable type 'T' returned by implicitly asynchronous call to nonisolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
31 |         nextExpiry = Date(timeInterval: expiryInterval, since: Date())
32 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:31:13: warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 1 | /// A mutable, reference-like property wrapper that can read and write a value.
 2 | @propertyWrapper
 3 | public struct Binding<Value>: Sendable {
   |                       `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
 4 |     private let _get: @Sendable () -> Value
 5 |     private let _set: @Sendable (Value) -> Void
   :
29 |     public static func constant(_ value: Value) -> Binding<Value> {
30 |         Binding {
31 |             value
   |             `- warning: capture of 'value' with non-sendable type 'Value' in a `@Sendable` closure; this is an error in the Swift 6 language mode
32 |         } set: { _ in }
33 |     }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:38:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
36 |     public subscript<U>(dynamicMember keyPath: WritableKeyPath<Value, U>) -> Binding<U> {
37 |         Binding<U> {
38 |             wrappedValue[keyPath: keyPath]
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Binding.swift:40:35: warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 |             wrappedValue[keyPath: keyPath]
39 |         } set: {
40 |             wrappedValue[keyPath: keyPath] = $0
   |                                   `- warning: capture of 'keyPath' with non-sendable type 'WritableKeyPath<Value, U>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
41 |         }
42 |     }
Swift.WritableKeyPath:1:14: note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class WritableKeyPath<Root, Value> : KeyPath<Root, Value> {
  |              `- note: generic class 'WritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:12:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
10 |     public var projectedValue: Binding<T> {
11 |         Binding { [self] in
12 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
13 |         } set: { [self] in
14 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Wrappers/Box.swift:14:13: warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 4 | /// writing a class.
 5 | @propertyWrapper
 6 | public class Box<T> {
   |              `- note: generic class 'Box' does not conform to the 'Sendable' protocol
 7 |     public var wrappedValue: T
 8 |
   :
12 |             wrappedValue
13 |         } set: { [self] in
14 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'Box<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
15 |         }
16 |     }
[179/230] Compiling Utils StablePriorityQueue.swift
[180/230] Compiling Utils UncheckedSendable.swift
[181/230] Compiling Utils Array+Extensions.swift
[182/230] Compiling Utils ChoiceOf+Extensions.swift
[183/230] Compiling Utils Collection+Extensions.swift
[184/230] Compiling Utils Dictionary+Extensions.swift
[185/230] Compiling Utils Optional+Extensions.swift
[186/230] Compiling Utils RandomAccessCollection+Extensions.swift
[187/230] Compiling Utils Result+Extensions.swift
[188/230] Compiling Utils Sequence+Extensions.swift
[189/230] Compiling Utils StringProtocol+Extensions.swift
[190/230] Compiling Utils TimeInterval+Extensions.swift
[191/230] Compiling Utils TemporaryDirectory.swift
[192/230] Compiling Utils TokenIterator.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[193/230] Compiling Utils NodePackage.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[194/230] Compiling Utils Shell.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[195/230] Compiling Utils LowBoundedIntRange.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[196/230] Compiling Utils RangeUtils.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[197/230] Compiling Utils RepeatingTimer.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[198/230] Compiling Utils TimerContext.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[199/230] Compiling Utils AnyCodable.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[200/230] Compiling Utils AnyCodingKey.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[201/230] Compiling Utils AutoSerializing.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[202/230] Compiling Utils DiskJsonSerializer.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[203/230] Compiling Utils EncodeError.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[204/230] Compiling Utils Averager.swift
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:22:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
20 |     public var projectedValue: Binding<T> {
21 |         Binding { [self] in
22 |             wrappedValue
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |         } set: { [self] in
24 |             wrappedValue = $0
/host/spi-builder-workspace/Sources/Utils/Serialization/AutoSerializing.swift:24:13: warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 5 | /** Wraps a value that is automatically read from/written to a file. */
 6 | @propertyWrapper
 7 | public class AutoSerializing<T: Codable> {
   |              `- note: generic class 'AutoSerializing' does not conform to the 'Sendable' protocol
 8 |     private let serializer = DiskJsonSerializer()
 9 |     private let filePath: String
   :
22 |             wrappedValue
23 |         } set: { [self] in
24 |             wrappedValue = $0
   |             `- warning: capture of 'self' with non-sendable type 'AutoSerializing<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         }
26 |     }
/host/spi-builder-workspace/Sources/Utils/Serialization/DiskJsonSerializer.swift:18:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
16 |         }
17 |
18 |         fileManager.createFile(atPath: url.path, contents: data, attributes: nil)
   |                     `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
19 |     }
20 |
[205/230] Compiling Utils IdentityBijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[206/230] Compiling Utils IntExpressibleAlgebraicField.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[207/230] Compiling Utils InverseAsyncBijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[208/230] Compiling Utils InverseBijection.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[209/230] Compiling Utils Magnitudable.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[210/230] Compiling Utils Multipliable.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[211/230] Compiling Utils Negatable.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[212/230] Compiling Utils Remainderable.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[213/230] Compiling Utils Scaling.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[214/230] Compiling Utils Subtractable.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[215/230] Compiling Utils Translation.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[216/230] Compiling Utils UnsignedConvertible.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[217/230] Compiling Utils LegacyRegex.swift
/host/spi-builder-workspace/Sources/Utils/Operations/IdentityBijection.swift:1:15: warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
1 | public struct IdentityBijection<V>: Bijection {
  |               `- warning: type 'V' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
2 |     public init() {}
3 |
[218/230] Compiling Utils UnionStringEnum.swift
[219/230] Compiling Utils AddressUtils.swift
[220/230] Compiling Utils NetworkError.swift
[221/230] Compiling Utils Axis.swift
[222/230] Compiling Utils Complex.swift
[223/230] Compiling Utils Direction.swift
[224/230] Compiling Utils FibonacciSequence.swift
[225/230] Compiling Utils Mat2.swift
[226/230] Compiling Utils MathUtils.swift
[227/230] Compiling Utils Matrix.swift
[228/230] Compiling Utils NDArray.swift
[229/230] Compiling Utils NDArrayError.swift
[230/230] Compiling Utils NDArrayParser.swift
Build complete! (35.12s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin.git"
    },
    {
      "identity" : "swiftsoup",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.7.5",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/scinfu/SwiftSoup.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.6.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "xmlcoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.17.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/MaxDesiatov/XMLCoder.git"
    }
  ],
  "manifest_display_name" : "swift-utils",
  "name" : "swift-utils",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Utils",
      "targets" : [
        "Utils"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UtilsTests",
      "module_type" : "SwiftTarget",
      "name" : "UtilsTests",
      "path" : "Tests/UtilsTests",
      "sources" : [
        "Collections/AvlTreeTests.swift",
        "Collections/BiDictionaryTests.swift",
        "Collections/BinaryHeapTests.swift",
        "Collections/BitArrayTests.swift",
        "Collections/CircularArrayTests.swift",
        "Collections/CollectionUtilsTests.swift",
        "Collections/StablePriorityQueueTests.swift",
        "Extensions/AsyncExtensionsTests.swift",
        "Extensions/StringExtensionsTests.swift",
        "Numerics/ComplexTests.swift",
        "Numerics/FibonacciSequenceTests.swift",
        "Numerics/Mat2Tests.swift",
        "Numerics/MathUtilsTests.swift",
        "Numerics/MatrixTests.swift",
        "Numerics/NDArrayTests.swift",
        "Numerics/RationalTests.swift",
        "Parsing/TokenIteratorTests.swift",
        "Processes/ShellTests.swift"
      ],
      "target_dependencies" : [
        "Utils"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Utils",
      "module_type" : "SwiftTarget",
      "name" : "Utils",
      "path" : "Sources/Utils",
      "product_dependencies" : [
        "Logging",
        "SwiftSoup",
        "XMLCoder"
      ],
      "product_memberships" : [
        "Utils"
      ],
      "sources" : [
        "Asynchrony/Promise.swift",
        "Asynchrony/PromiseUtils.swift",
        "Collections/ArrayUtils.swift",
        "Collections/AvlTree.swift",
        "Collections/BiDictionary.swift",
        "Collections/BinaryHeap.swift",
        "Collections/BitArray.swift",
        "Collections/CircularArray.swift",
        "Collections/ExpiringList.swift",
        "Collections/FixedArray.swift",
        "Collections/LazyDictionary.swift",
        "Collections/PriorityQueue.swift",
        "Collections/SearchTree.swift",
        "Collections/StablePriorityQueue.swift",
        "Concurrency/UncheckedSendable.swift",
        "Extensions/Array+Extensions.swift",
        "Extensions/ChoiceOf+Extensions.swift",
        "Extensions/Collection+Extensions.swift",
        "Extensions/Dictionary+Extensions.swift",
        "Extensions/Optional+Extensions.swift",
        "Extensions/RandomAccessCollection+Extensions.swift",
        "Extensions/Result+Extensions.swift",
        "Extensions/Sequence+Extensions.swift",
        "Extensions/StringProtocol+Extensions.swift",
        "Extensions/TimeInterval+Extensions.swift",
        "Filesystem/TemporaryDirectory.swift",
        "Filesystem/TemporaryFile.swift",
        "Iterators/PeekableIterator.swift",
        "Metaprogramming/ConstBoolTypes.swift",
        "Metaprogramming/ConstIntTypes.swift",
        "Misc/AsyncRunnable.swift",
        "Misc/CompareUtils.swift",
        "Misc/DefaultInitializable.swift",
        "Misc/DiskFileError.swift",
        "Misc/KeyParameterizable.swift",
        "Misc/Runnable.swift",
        "Misc/Startable.swift",
        "Misc/StringBuilder.swift",
        "Misc/StringEnum.swift",
        "Misc/UnionStringEnum.swift",
        "Networking/AddressUtils.swift",
        "Networking/NetworkError.swift",
        "Numerics/Axis.swift",
        "Numerics/Complex.swift",
        "Numerics/Direction.swift",
        "Numerics/FibonacciSequence.swift",
        "Numerics/Mat2.swift",
        "Numerics/MathUtils.swift",
        "Numerics/Matrix.swift",
        "Numerics/NDArray.swift",
        "Numerics/NDArrayError.swift",
        "Numerics/NDArrayParser.swift",
        "Numerics/NDArrayParserError.swift",
        "Numerics/Rational.swift",
        "Numerics/Vec2.swift",
        "Numerics/Vector.swift",
        "Operations/Absolutable.swift",
        "Operations/Addable.swift",
        "Operations/AnyAsyncBijection.swift",
        "Operations/AnyBijection.swift",
        "Operations/AsyncBijection.swift",
        "Operations/Bijection.swift",
        "Operations/ComposedAsyncBijection.swift",
        "Operations/ComposedBijection.swift",
        "Operations/Divisible.swift",
        "Operations/IdentityBijection.swift",
        "Operations/IntExpressibleAlgebraicField.swift",
        "Operations/InverseAsyncBijection.swift",
        "Operations/InverseBijection.swift",
        "Operations/Magnitudable.swift",
        "Operations/Multipliable.swift",
        "Operations/Negatable.swift",
        "Operations/Remainderable.swift",
        "Operations/Scaling.swift",
        "Operations/Subtractable.swift",
        "Operations/Translation.swift",
        "Operations/UnsignedConvertible.swift",
        "Parsing/LegacyRegex.swift",
        "Parsing/TokenIterator.swift",
        "Processes/NodePackage.swift",
        "Processes/Shell.swift",
        "Ranges/LowBoundedIntRange.swift",
        "Ranges/RangeUtils.swift",
        "Scheduling/RepeatingTimer.swift",
        "Scheduling/TimerContext.swift",
        "Serialization/AnyCodable.swift",
        "Serialization/AnyCodingKey.swift",
        "Serialization/AutoSerializing.swift",
        "Serialization/DiskJsonSerializer.swift",
        "Serialization/EncodeError.swift",
        "Statistics/Averager.swift",
        "Statistics/CustomDiscreteDistribution.swift",
        "Statistics/Distribution.swift",
        "Synchronization/MutexLock.swift",
        "Synchronization/Synchronized.swift",
        "Time/Time.swift",
        "Web/DocumentToMarkdownConverter.swift",
        "Web/HTTPRequest.swift",
        "Wrappers/AsyncLazyExpiring.swift",
        "Wrappers/Binding.swift",
        "Wrappers/Box.swift",
        "Wrappers/Expiring.swift",
        "Wrappers/Lazy.swift",
        "Wrappers/PhantomWrapped.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.