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

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Asynchrone with Swift 6.0 for Linux.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/reddavis/Asynchrone.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/reddavis/Asynchrone
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1ddfcd3 feat: remove Jazzy documentation (#52)
Cloned https://github.com/reddavis/Asynchrone.git
Revision (git rev-parse @):
1ddfcd3bc93277f68dffb793fc60001902f2517b
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/reddavis/Asynchrone.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/reddavis/Asynchrone.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/32] Emitting module Asynchrone
[4/36] Compiling Asynchrone Empty.swift
[5/36] Compiling Asynchrone Fail.swift
[6/36] Compiling Asynchrone Just.swift
[7/36] Compiling Asynchrone Merge3AsyncSequence.swift
[8/36] Compiling Asynchrone Task+Extension.swift
[9/36] Compiling Asynchrone TimeInterval+Extension.swift
[10/36] Compiling Asynchrone AnyAsyncSequenceable.swift
[11/36] Compiling Asynchrone AnyThrowingAsyncSequenceable.swift
[12/36] Compiling Asynchrone ErrorMechanism.swift
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:40:33: warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 38 |         Task {
 39 |             for try await element in self {
 40 |                 object[keyPath: keyPath] = element
    |                                 `- warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 41 |             }
 42 |         }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
  |              `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:27:23: warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 |             let task = Task {
27 |                 await build(continuation)
   |                       |- warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |
[13/36] Compiling Asynchrone RethrowingAccessor.swift
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:40:33: warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 38 |         Task {
 39 |             for try await element in self {
 40 |                 object[keyPath: keyPath] = element
    |                                 `- warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 41 |             }
 42 |         }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
  |              `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:27:23: warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 |             let task = Task {
27 |                 await build(continuation)
   |                       |- warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |
[14/36] Compiling Asynchrone AsyncSequence+Extension.swift
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:40:33: warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 38 |         Task {
 39 |             for try await element in self {
 40 |                 object[keyPath: keyPath] = element
    |                                 `- warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 41 |             }
 42 |         }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
  |              `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:27:23: warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 |             let task = Task {
27 |                 await build(continuation)
   |                       |- warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |
[15/36] Compiling Asynchrone AsyncStream+Extension.swift
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:40:33: warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 38 |         Task {
 39 |             for try await element in self {
 40 |                 object[keyPath: keyPath] = element
    |                                 `- warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 41 |             }
 42 |         }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
  |              `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:27:23: warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 |             let task = Task {
27 |                 await build(continuation)
   |                       |- warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |
[16/36] Compiling Asynchrone AsyncThrowingStream+Extension.swift
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:40:33: warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 38 |         Task {
 39 |             for try await element in self {
 40 |                 object[keyPath: keyPath] = element
    |                                 `- warning: capture of 'keyPath' with non-sendable type 'ReferenceWritableKeyPath<Root, Self.Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 41 |             }
 42 |         }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
  |              `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/host/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncStream+Extension.swift:27:23: warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
25 |         self = AsyncStream(elementType, bufferingPolicy: limit) { continuation in
26 |             let task = Task {
27 |                 await build(continuation)
   |                       |- warning: capture of 'build' with non-sendable type '(AsyncStream<Element>.Continuation) async -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |
[17/36] Compiling Asynchrone AsyncSequenceCompletion.swift
[18/36] Compiling Asynchrone CatchErrorAsyncSequence.swift
[19/36] Compiling Asynchrone ChainAsyncSequenceable.swift
[20/36] Compiling Asynchrone CombineLatest3AsyncSequence.swift
[21/36] Compiling Asynchrone CombineLatestAsyncSequence.swift
[22/36] Compiling Asynchrone CurrentElementAsyncSequence.swift
[23/36] Compiling Asynchrone DebounceAsyncSequence.swift
[24/36] Compiling Asynchrone DelayAsyncSequence.swift
[25/36] Compiling Asynchrone MergeAsyncSequence.swift
[26/36] Compiling Asynchrone NotificationCenterAsyncSequence.swift
[27/36] Compiling Asynchrone PassthroughAsyncSequence.swift
[28/36] Compiling Asynchrone RemoveDuplicatesAsyncSequence.swift
[29/36] Compiling Asynchrone ReplaceErrorAsyncSequence.swift
[30/36] Compiling Asynchrone SequenceAsyncSequence.swift
[31/36] Compiling Asynchrone SharedAsyncSequence.swift
[32/36] Compiling Asynchrone ThrottleAsyncSequence.swift
[33/36] Compiling Asynchrone ThrowingPassthroughAsyncSequence.swift
[34/36] Compiling Asynchrone TimerAsyncSequence.swift
[35/36] Compiling Asynchrone Zip3AsyncSequence.swift
[36/36] Compiling Asynchrone ZipAsyncSequence.swift
Build complete! (13.43s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Asynchrone",
  "name" : "Asynchrone",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Asynchrone",
      "targets" : [
        "Asynchrone"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AsynchroneTests",
      "module_type" : "SwiftTarget",
      "name" : "AsynchroneTests",
      "path" : "Tests/AsynchroneTests",
      "sources" : [
        "Assertion.swift",
        "Extensions/AsyncSequenceTests.swift",
        "Extensions/TimeIntervalTests.swift",
        "Sequences/AnyAsyncSequenceableTests.swift",
        "Sequences/AnyThrowingAsyncSequenceableTests.swift",
        "Sequences/CatchErrorAsyncSequenceTests.swift",
        "Sequences/ChainAsyncSequenceTests.swift",
        "Sequences/CombineLatest3AsyncSequenceTests.swift",
        "Sequences/CombineLatestAsyncSequenceTests.swift",
        "Sequences/CurrentElementAsyncSequenceTests.swift",
        "Sequences/DebounceAsyncSequenceTests.swift",
        "Sequences/DelayAsyncSequenceTests.swift",
        "Sequences/EmptyTests.swift",
        "Sequences/FailTests.swift",
        "Sequences/JustTests.swift",
        "Sequences/Merge3AsyncSequenceTests.swift",
        "Sequences/MergeAsyncSequenceTests.swift",
        "Sequences/NotificationCenterAsyncSequenceTests.swift",
        "Sequences/PassthroughAsyncSequenceTests.swift",
        "Sequences/RemoveDuplicatesAsyncSequenceTests.swift",
        "Sequences/ReplaceErrorAsyncSequenceTests.swift",
        "Sequences/SequenceAsyncSequenceTests.swift",
        "Sequences/SharedAsyncSequenceTests.swift",
        "Sequences/ThrottleAsyncSequenceTests.swift",
        "Sequences/ThrowingPassthroughAsyncSequenceTests.swift",
        "Sequences/TimerAsyncSequenceTests.swift",
        "Sequences/ZipAsyncSequenceTests.swift",
        "TestError.swift"
      ],
      "target_dependencies" : [
        "Asynchrone"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Asynchrone",
      "module_type" : "SwiftTarget",
      "name" : "Asynchrone",
      "path" : "Sources/Asynchrone",
      "product_memberships" : [
        "Asynchrone"
      ],
      "sources" : [
        "Common/ErrorMechanism.swift",
        "Common/RethrowingAccessor.swift",
        "Extensions/AsyncSequence+Extension.swift",
        "Extensions/AsyncStream+Extension.swift",
        "Extensions/AsyncThrowingStream+Extension.swift",
        "Extensions/Task+Extension.swift",
        "Extensions/TimeInterval+Extension.swift",
        "Sequences/AnyAsyncSequenceable.swift",
        "Sequences/AnyThrowingAsyncSequenceable.swift",
        "Sequences/AsyncSequenceCompletion.swift",
        "Sequences/CatchErrorAsyncSequence.swift",
        "Sequences/ChainAsyncSequenceable.swift",
        "Sequences/CombineLatest3AsyncSequence.swift",
        "Sequences/CombineLatestAsyncSequence.swift",
        "Sequences/CurrentElementAsyncSequence.swift",
        "Sequences/DebounceAsyncSequence.swift",
        "Sequences/DelayAsyncSequence.swift",
        "Sequences/Empty.swift",
        "Sequences/Fail.swift",
        "Sequences/Just.swift",
        "Sequences/Merge3AsyncSequence.swift",
        "Sequences/MergeAsyncSequence.swift",
        "Sequences/NotificationCenterAsyncSequence.swift",
        "Sequences/PassthroughAsyncSequence.swift",
        "Sequences/RemoveDuplicatesAsyncSequence.swift",
        "Sequences/ReplaceErrorAsyncSequence.swift",
        "Sequences/SequenceAsyncSequence.swift",
        "Sequences/SharedAsyncSequence.swift",
        "Sequences/ThrottleAsyncSequence.swift",
        "Sequences/ThrowingPassthroughAsyncSequence.swift",
        "Sequences/TimerAsyncSequence.swift",
        "Sequences/Zip3AsyncSequence.swift",
        "Sequences/ZipAsyncSequence.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.