Build Information
Successful build of Asynchrone, reference main (1ddfcd
), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 22:26:25 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/reddavis/Asynchrone.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
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: $PWD/.spi.yml
SUCCESS checkout https://github.com/reddavis/Asynchrone.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/reddavis/Asynchrone.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/33] Emitting module Asynchrone
[4/36] Compiling Asynchrone Fail.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/Merge3AsyncSequence.swift:95:44: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | _ continuation: AsyncThrowingStream<Element, Error>.Continuation
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | continuation.yield(event)
97 | }
[5/36] Compiling Asynchrone Just.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/Merge3AsyncSequence.swift:95:44: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | _ continuation: AsyncThrowingStream<Element, Error>.Continuation
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | continuation.yield(event)
97 | }
[6/36] Compiling Asynchrone Merge3AsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/Merge3AsyncSequence.swift:95:44: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | _ continuation: AsyncThrowingStream<Element, Error>.Continuation
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | continuation.yield(event)
97 | }
[7/36] Compiling Asynchrone AnyThrowingAsyncSequenceable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/AnyThrowingAsyncSequenceable.swift:13:37: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 | /// - sequence: The async sequence to type erase.
12 | public init<T>(_ sequence: T) where T: AsyncSequence, T: Sendable, T.Element == Element {
13 | self._makeAsyncIterator = { Iterator(sequence.makeAsyncIterator()) }
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 | }
15 |
[8/36] Compiling Asynchrone AsyncSequenceCompletion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/AnyThrowingAsyncSequenceable.swift:13:37: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 | /// - sequence: The async sequence to type erase.
12 | public init<T>(_ sequence: T) where T: AsyncSequence, T: Sendable, T.Element == Element {
13 | self._makeAsyncIterator = { Iterator(sequence.makeAsyncIterator()) }
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 | }
15 |
[9/36] Compiling Asynchrone CatchErrorAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/AnyThrowingAsyncSequenceable.swift:13:37: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 | /// - sequence: The async sequence to type erase.
12 | public init<T>(_ sequence: T) where T: AsyncSequence, T: Sendable, T.Element == Element {
13 | self._makeAsyncIterator = { Iterator(sequence.makeAsyncIterator()) }
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 | }
15 |
[10/36] Compiling Asynchrone ChainAsyncSequenceable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/AnyThrowingAsyncSequenceable.swift:13:37: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 | /// - sequence: The async sequence to type erase.
12 | public init<T>(_ sequence: T) where T: AsyncSequence, T: Sendable, T.Element == Element {
13 | self._makeAsyncIterator = { Iterator(sequence.makeAsyncIterator()) }
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 | }
15 |
[11/36] Compiling Asynchrone TimerAsyncSequence.swift
[12/36] Compiling Asynchrone Zip3AsyncSequence.swift
[13/36] Compiling Asynchrone ZipAsyncSequence.swift
[14/36] Compiling Asynchrone RemoveDuplicatesAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/RemoveDuplicatesAsyncSequence.swift:111:32: warning: capture of non-sendable type 'Self.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
109 | /// - Returns: A `AsyncRemoveDuplicatesSequence` instance.
110 | public func removeDuplicates() -> RemoveDuplicatesAsyncSequence<Self> {
111 | .init(base: self) { $0 == $1 }
| `- warning: capture of non-sendable type 'Self.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 | }
113 |
[15/36] Compiling Asynchrone ReplaceErrorAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/RemoveDuplicatesAsyncSequence.swift:111:32: warning: capture of non-sendable type 'Self.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
109 | /// - Returns: A `AsyncRemoveDuplicatesSequence` instance.
110 | public func removeDuplicates() -> RemoveDuplicatesAsyncSequence<Self> {
111 | .init(base: self) { $0 == $1 }
| `- warning: capture of non-sendable type 'Self.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 | }
113 |
[16/36] Compiling Asynchrone SequenceAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/RemoveDuplicatesAsyncSequence.swift:111:32: warning: capture of non-sendable type 'Self.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
109 | /// - Returns: A `AsyncRemoveDuplicatesSequence` instance.
110 | public func removeDuplicates() -> RemoveDuplicatesAsyncSequence<Self> {
111 | .init(base: self) { $0 == $1 }
| `- warning: capture of non-sendable type 'Self.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 | }
113 |
[17/36] Compiling Asynchrone MergeAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/MergeAsyncSequence.swift:95:44: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | _ continuation: AsyncThrowingStream<Element, Error>.Continuation
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | continuation.yield(event)
97 | }
[18/36] Compiling Asynchrone NotificationCenterAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/MergeAsyncSequence.swift:95:44: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | _ continuation: AsyncThrowingStream<Element, Error>.Continuation
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | continuation.yield(event)
97 | }
[19/36] Compiling Asynchrone PassthroughAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/MergeAsyncSequence.swift:95:44: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | _ continuation: AsyncThrowingStream<Element, Error>.Continuation
94 | ) async throws -> Void = { sequence, continuation in
95 | for try await event in sequence {
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | continuation.yield(event)
97 | }
[20/36] Compiling Asynchrone AsyncThrowingStream+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/AnyAsyncSequenceable.swift:13:37: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 | /// - sequence: The async sequence to type erase.
12 | public init<T>(_ sequence: T) where T: AsyncSequence, T.Element == Element, T: Sendable {
13 | self._makeAsyncIterator = { Iterator(sequence.makeAsyncIterator()) }
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 | }
15 |
[21/36] Compiling Asynchrone Task+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/AnyAsyncSequenceable.swift:13:37: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 | /// - sequence: The async sequence to type erase.
12 | public init<T>(_ sequence: T) where T: AsyncSequence, T.Element == Element, T: Sendable {
13 | self._makeAsyncIterator = { Iterator(sequence.makeAsyncIterator()) }
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 | }
15 |
[22/36] Compiling Asynchrone TimeInterval+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/AnyAsyncSequenceable.swift:13:37: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 | /// - sequence: The async sequence to type erase.
12 | public init<T>(_ sequence: T) where T: AsyncSequence, T.Element == Element, T: Sendable {
13 | self._makeAsyncIterator = { Iterator(sequence.makeAsyncIterator()) }
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 | }
15 |
[23/36] Compiling Asynchrone AnyAsyncSequenceable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/AnyAsyncSequenceable.swift:13:37: warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 | /// - sequence: The async sequence to type erase.
12 | public init<T>(_ sequence: T) where T: AsyncSequence, T.Element == Element, T: Sendable {
13 | self._makeAsyncIterator = { Iterator(sequence.makeAsyncIterator()) }
| `- warning: capture of non-sendable type 'T.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 | }
15 |
[24/36] Compiling Asynchrone SharedAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/SharedAsyncSequence.swift:195:40: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
193 |
194 | do {
195 | for try await value in base {
| `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
196 | await self.continuations.values.forEach { $0.yield(value) }
197 | }
[25/36] Compiling Asynchrone ThrottleAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/SharedAsyncSequence.swift:195:40: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
193 |
194 | do {
195 | for try await value in base {
| `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
196 | await self.continuations.values.forEach { $0.yield(value) }
197 | }
[26/36] Compiling Asynchrone ThrowingPassthroughAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/SharedAsyncSequence.swift:195:40: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
193 |
194 | do {
195 | for try await value in base {
| `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
196 | await self.continuations.values.forEach { $0.yield(value) }
197 | }
[27/36] Compiling Asynchrone ErrorMechanism.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:39:38: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
37 | ) rethrows -> Task<Void, Error> where Self: Sendable, Root: Sendable {
38 | Task {
39 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
40 | object[keyPath: keyPath] = element
41 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:126:38: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
124 | ) -> Task<Void, Error> where Self: Sendable {
125 | Task(priority: priority) {
126 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
127 | await receiveValue(element)
128 | try Task.checkCancellation()
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:168:42: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | Task(priority: priority) {
167 | do {
168 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
169 | await receiveValue(element)
170 | try Task.checkCancellation()
[28/36] Compiling Asynchrone RethrowingAccessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:39:38: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
37 | ) rethrows -> Task<Void, Error> where Self: Sendable, Root: Sendable {
38 | Task {
39 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
40 | object[keyPath: keyPath] = element
41 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:126:38: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
124 | ) -> Task<Void, Error> where Self: Sendable {
125 | Task(priority: priority) {
126 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
127 | await receiveValue(element)
128 | try Task.checkCancellation()
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:168:42: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | Task(priority: priority) {
167 | do {
168 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
169 | await receiveValue(element)
170 | try Task.checkCancellation()
[29/36] Compiling Asynchrone AsyncSequence+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:39:38: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
37 | ) rethrows -> Task<Void, Error> where Self: Sendable, Root: Sendable {
38 | Task {
39 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
40 | object[keyPath: keyPath] = element
41 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:126:38: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
124 | ) -> Task<Void, Error> where Self: Sendable {
125 | Task(priority: priority) {
126 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
127 | await receiveValue(element)
128 | try Task.checkCancellation()
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:168:42: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | Task(priority: priority) {
167 | do {
168 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
169 | await receiveValue(element)
170 | try Task.checkCancellation()
[30/36] Compiling Asynchrone AsyncStream+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:39:38: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
37 | ) rethrows -> Task<Void, Error> where Self: Sendable, Root: Sendable {
38 | Task {
39 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
40 | object[keyPath: keyPath] = element
41 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:126:38: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
124 | ) -> Task<Void, Error> where Self: Sendable {
125 | Task(priority: priority) {
126 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
127 | await receiveValue(element)
128 | try Task.checkCancellation()
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Extensions/AsyncSequence+Extension.swift:168:42: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
166 | Task(priority: priority) {
167 | do {
168 | for try await element in self {
| `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
169 | await receiveValue(element)
170 | try Task.checkCancellation()
[31/36] Compiling Asynchrone CombineLatest3AsyncSequence.swift
[32/36] Compiling Asynchrone CombineLatestAsyncSequence.swift
[33/36] Compiling Asynchrone CurrentElementAsyncSequence.swift
[34/36] Compiling Asynchrone DebounceAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:98:80: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 |
97 | while true {
98 | let resultTask = self.resultTask ?? Task<RaceResult, Never> { [base] in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
99 | var iterator = base
100 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:102:33: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 | do {
101 | let value = try await iterator.next()
102 | return .winner(.success(value), iterator: iterator)
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 | } catch {
104 | return .winner(.failure(error), iterator: iterator)
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:113:29: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
111 | let sleep = Task<RaceResult, Never> {
112 | try? await Task.sleep(nanoseconds: delay)
113 | return .sleep
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:124:41: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 | for task in tasks {
123 | Task<Void, Never> {
124 | _ = await task.result
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | if await raceCoordinator.isFirstToCrossLine(task) {
126 | continuation.resume(returning: task)
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:122:37: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 | operation: {
121 | await withCheckedContinuation { continuation in
122 | for task in tasks {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
123 | Task<Void, Never> {
124 | _ = await task.result
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:133:41: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
131 | },
132 | onCancel: {
133 | for task in tasks {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 | task.cancel()
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:116:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 | }
115 |
116 | let tasks = [resultTask, sleep]
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 | let firstTask = await { () async -> Task<RaceResult, Never> in
118 | let raceCoordinator = TaskRaceCoodinator<RaceResult, Never>()
[35/36] Compiling Asynchrone DelayAsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:98:80: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 |
97 | while true {
98 | let resultTask = self.resultTask ?? Task<RaceResult, Never> { [base] in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
99 | var iterator = base
100 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:102:33: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 | do {
101 | let value = try await iterator.next()
102 | return .winner(.success(value), iterator: iterator)
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 | } catch {
104 | return .winner(.failure(error), iterator: iterator)
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:113:29: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
111 | let sleep = Task<RaceResult, Never> {
112 | try? await Task.sleep(nanoseconds: delay)
113 | return .sleep
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:124:41: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 | for task in tasks {
123 | Task<Void, Never> {
124 | _ = await task.result
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | if await raceCoordinator.isFirstToCrossLine(task) {
126 | continuation.resume(returning: task)
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:122:37: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 | operation: {
121 | await withCheckedContinuation { continuation in
122 | for task in tasks {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
123 | Task<Void, Never> {
124 | _ = await task.result
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:133:41: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
131 | },
132 | onCancel: {
133 | for task in tasks {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 | task.cancel()
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:116:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 | }
115 |
116 | let tasks = [resultTask, sleep]
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 | let firstTask = await { () async -> Task<RaceResult, Never> in
118 | let raceCoordinator = TaskRaceCoodinator<RaceResult, Never>()
[36/36] Compiling Asynchrone Empty.swift
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:98:80: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 |
97 | while true {
98 | let resultTask = self.resultTask ?? Task<RaceResult, Never> { [base] in
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
99 | var iterator = base
100 | do {
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:102:33: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 | do {
101 | let value = try await iterator.next()
102 | return .winner(.success(value), iterator: iterator)
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 | } catch {
104 | return .winner(.failure(error), iterator: iterator)
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:113:29: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
111 | let sleep = Task<RaceResult, Never> {
112 | try? await Task.sleep(nanoseconds: delay)
113 | return .sleep
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 | }
115 |
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:124:41: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 | for task in tasks {
123 | Task<Void, Never> {
124 | _ = await task.result
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
125 | if await raceCoordinator.isFirstToCrossLine(task) {
126 | continuation.resume(returning: task)
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:122:37: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 | operation: {
121 | await withCheckedContinuation { continuation in
122 | for task in tasks {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
123 | Task<Void, Never> {
124 | _ = await task.result
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:133:41: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
131 | },
132 | onCancel: {
133 | for task in tasks {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 | task.cancel()
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Asynchrone/Sequences/DebounceAsyncSequence.swift:116:21: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 | }
115 |
116 | let tasks = [resultTask, sleep]
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 | let firstTask = await { () async -> Task<RaceResult, Never> in
118 | let raceCoordinator = TaskRaceCoodinator<RaceResult, Never>()
Build complete! (4.22s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Asynchrone",
"name" : "Asynchrone",
"path" : "/Users/admin/builder/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.