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.1 for Linux on 30 Apr 2025 15:10:18 UTC.

Swift 6 data race errors: 1

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-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.61.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.1
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-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-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.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/MaxDesiatov/XMLCoder.git
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/scinfu/SwiftSoup.git
[1/3908] Fetching swiftsoup
[900/7744] Fetching swiftsoup, swift-log
[901/9793] Fetching swiftsoup, swift-log, swift-docc-plugin
[2243/19804] Fetching swiftsoup, swift-log, swift-docc-plugin, xmlcoder
Fetched https://github.com/scinfu/SwiftSoup.git from cache (0.80s)
Fetched https://github.com/apple/swift-log.git from cache (0.81s)
Fetched https://github.com/MaxDesiatov/XMLCoder.git from cache (0.97s)
Fetched https://github.com/apple/swift-docc-plugin.git from cache (0.96s)
Computing version for https://github.com/MaxDesiatov/XMLCoder.git
Computed https://github.com/MaxDesiatov/XMLCoder.git at 0.17.1 (4.24s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.77s)
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.93s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3376] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.59s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.58s)
Computing version for https://github.com/scinfu/SwiftSoup.git
Computed https://github.com/scinfu/SwiftSoup.git at 2.8.7 (0.86s)
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.8.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.3
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/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 Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/7] Write sources
[6/7] Write swift-version-24593BA9C3E375BF.txt
[8/111] Emitting module XMLCoder
[9/117] Compiling Logging LogHandler.swift
[10/117] Compiling Logging MetadataProvider.swift
[11/117] Compiling Logging Locks.swift
[12/117] Emitting module Logging
[13/117] Compiling Logging Logging.swift
[15/118] Compiling SwiftSoup HtmlTreeBuilder.swift
[16/118] Compiling SwiftSoup HtmlTreeBuilderState.swift
[17/118] Compiling SwiftSoup HttpStatusException.swift
[18/118] Compiling SwiftSoup Mutex.swift
[19/118] Compiling SwiftSoup Node.swift
[20/118] Compiling SwiftSoup NodeTraversor.swift
[21/118] Compiling SwiftSoup ParseErrorList.swift
[22/118] Compiling SwiftSoup ParseSettings.swift
[23/118] Compiling SwiftSoup Parser.swift
[24/118] Compiling SwiftSoup ParsingStrings.swift
[25/118] Compiling SwiftSoup Pattern.swift
[26/118] Compiling SwiftSoup QueryParser.swift
[27/118] Compiling SwiftSoup SerializationException.swift
[28/118] Compiling SwiftSoup Cleaner.swift
[29/118] Compiling SwiftSoup SimpleDictionary.swift
[30/118] Compiling SwiftSoup StreamReader.swift
[31/118] Compiling SwiftSoup String.swift
[32/118] Compiling SwiftSoup StringBuilder.swift
[33/118] Compiling SwiftSoup StringUtil.swift
[34/125] Compiling SwiftSoup Attribute.swift
[35/125] Compiling SwiftSoup Attributes.swift
[36/125] Compiling SwiftSoup BinarySearch.swift
[37/125] Compiling SwiftSoup BooleanAttribute.swift
[38/125] Compiling SwiftSoup CharacterExt.swift
[39/125] Compiling SwiftSoup CharacterReader.swift
[40/125] Compiling SwiftSoup DocumentType.swift
[41/125] Compiling SwiftSoup Element.swift
[42/125] Compiling SwiftSoup Elements.swift
[43/125] Compiling SwiftSoup Entities.swift
[44/125] Compiling SwiftSoup Evaluator.swift
[45/125] Compiling SwiftSoup Exception.swift
[46/125] Compiling SwiftSoup FormElement.swift
[52/125] Compiling SwiftSoup ArrayExt.swift
[53/125] Compiling SwiftSoup CssSelector.swift
[54/125] Compiling SwiftSoup DataNode.swift
[55/125] Compiling SwiftSoup DataUtil.swift
[56/125] Compiling SwiftSoup Document.swift
[59/125] Compiling SwiftSoup NodeVisitor.swift
[60/125] Compiling SwiftSoup OrderedSet.swift
[61/125] Compiling SwiftSoup ParseError.swift
[62/125] Compiling SwiftSoup Collector.swift
[63/125] Compiling SwiftSoup CombiningEvaluator.swift
[64/125] Compiling SwiftSoup Comment.swift
[65/125] Compiling SwiftSoup Connection.swift
[66/125] Emitting module SwiftSoup
[67/125] Compiling XMLCoder XMLEncoder.swift
[68/125] Compiling XMLCoder XMLEncoderImplementation.swift
[69/125] Compiling XMLCoder XMLEncodingStorage.swift
[70/125] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[71/125] Compiling XMLCoder XMLReferencingEncoder.swift
[72/125] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[78/126] Compiling SwiftSoup Tokeniser.swift
[79/126] Compiling SwiftSoup TokeniserState.swift
[80/126] Compiling SwiftSoup TreeBuilder.swift
[120/126] Compiling SwiftSoup UTF8Arrays.swift
[121/126] Compiling SwiftSoup UnfairLock.swift
[122/126] Compiling SwiftSoup UnicodeScalar.swift
[123/126] Compiling SwiftSoup Validate.swift
[124/126] Compiling SwiftSoup Whitelist.swift
[125/126] Compiling SwiftSoup XmlDeclaration.swift
[126/126] Compiling SwiftSoup XmlTreeBuilder.swift
[128/219] Compiling Utils IdentityBijection.swift
[129/219] Compiling Utils IntExpressibleAlgebraicField.swift
[130/219] Compiling Utils InverseAsyncBijection.swift
[131/219] Compiling Utils InverseBijection.swift
[132/219] Compiling Utils Magnitudable.swift
[133/219] Compiling Utils Multipliable.swift
[134/219] Compiling Utils Negatable.swift
[135/219] Compiling Utils Remainderable.swift
[136/219] Compiling Utils Scaling.swift
[137/219] Compiling Utils Subtractable.swift
[138/219] Compiling Utils Translation.swift
[139/219] Compiling Utils UnsignedConvertible.swift
[140/219] Compiling Utils LegacyRegex.swift
[141/232] Emitting module Utils
[142/232] 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 |
[143/232] 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 |
[144/232] 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 |
[145/232] 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 |
[146/232] 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 |
[147/232] 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 |
[148/232] 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 |
[149/232] 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 |
[150/232] 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 |
[151/232] 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 |
[152/232] 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 |
[153/232] 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 |
[154/232] 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 |
[155/232] Compiling Utils NDArrayParserError.swift
[156/232] Compiling Utils Rational.swift
[157/232] Compiling Utils Vec2.swift
[158/232] Compiling Utils Vector.swift
[159/232] Compiling Utils Absolutable.swift
[160/232] Compiling Utils Addable.swift
[161/232] Compiling Utils AnyAsyncBijection.swift
[162/232] Compiling Utils AnyBijection.swift
[163/232] Compiling Utils AsyncBijection.swift
[164/232] Compiling Utils Bijection.swift
[165/232] Compiling Utils ComposedAsyncBijection.swift
[166/232] Compiling Utils ComposedBijection.swift
[167/232] Compiling Utils Divisible.swift
[168/232] Compiling Utils CustomDiscreteDistribution.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils Distribution.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils MutexLock.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils Synchronized.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils Time.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils DocumentToMarkdownConverter.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils HTTPRequest.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils AsyncLazyExpiring.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils Binding.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils Box.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils Expiring.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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/232] Compiling Utils Lazy.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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 |     }
[180/232] Compiling Utils PhantomWrapped.swift
/host/spi-builder-workspace/Sources/Utils/Wrappers/AsyncLazyExpiring.swift:30:33: warning: non-sendable result type 'T' cannot be sent from nonisolated context in call to async function; 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 result type 'T' cannot be sent from nonisolated context in call to async function; 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 |     }
[181/232] Compiling Utils Promise.swift
[182/232] Compiling Utils PromiseUtils.swift
[183/232] Compiling Utils ArrayUtils.swift
[184/232] Compiling Utils AvlTree.swift
[185/232] Compiling Utils BiDictionary.swift
[186/232] Compiling Utils BinaryHeap.swift
[187/232] Compiling Utils BitArray.swift
[188/232] Compiling Utils CircularArray.swift
[189/232] Compiling Utils ExpiringList.swift
[190/232] Compiling Utils FixedArray.swift
[191/232] Compiling Utils LazyDictionary.swift
[192/232] Compiling Utils PriorityQueue.swift
[193/232] Compiling Utils SearchTree.swift
[194/232] Compiling Utils StablePriorityQueue.swift
[195/232] Compiling Utils UncheckedSendable.swift
[196/232] Compiling Utils Array+Extensions.swift
[197/232] Compiling Utils ChoiceOf+Extensions.swift
[198/232] Compiling Utils Collection+Extensions.swift
[199/232] Compiling Utils Dictionary+Extensions.swift
[200/232] Compiling Utils Optional+Extensions.swift
[201/232] Compiling Utils RandomAccessCollection+Extensions.swift
[202/232] Compiling Utils Result+Extensions.swift
[203/232] Compiling Utils Sequence+Extensions.swift
[204/232] Compiling Utils StringProtocol+Extensions.swift
[205/232] Compiling Utils TimeInterval+Extensions.swift
[206/232] Compiling Utils TemporaryDirectory.swift
[207/232] Compiling Utils UnionStringEnum.swift
[208/232] Compiling Utils AddressUtils.swift
[209/232] Compiling Utils NetworkError.swift
[210/232] Compiling Utils Axis.swift
[211/232] Compiling Utils Complex.swift
[212/232] Compiling Utils Direction.swift
[213/232] Compiling Utils FibonacciSequence.swift
[214/232] Compiling Utils Mat2.swift
[215/232] Compiling Utils MathUtils.swift
[216/232] Compiling Utils Matrix.swift
[217/232] Compiling Utils NDArray.swift
[218/232] Compiling Utils NDArrayError.swift
[219/232] Compiling Utils NDArrayParser.swift
[220/232] 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 |
[221/232] 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 |
[222/232] 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 |
[223/232] 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 |
[224/232] 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 |
[225/232] 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 |
[226/232] 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 |
[227/232] 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 |
[228/232] 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 |
[229/232] 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 |
[230/232] 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 |
[231/232] 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 |
[232/232] 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 |
Build complete! (53.78s)
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.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.