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 Omnibar with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/CleanCocoa/Omnibar.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/CleanCocoa/Omnibar
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 2fc1a38 update to RxSwift 6.6.0
Cloned https://github.com/CleanCocoa/Omnibar.git
Revision (git rev-parse @):
2fc1a381d8660b61ec5f1d709d0472bb5c438faa
SUCCESS checkout https://github.com/CleanCocoa/Omnibar.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/CleanCocoa/Omnibar.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/14] Write sources
[5/14] Write swift-version-6F35C1178C84523A.txt
[7/173] Emitting module RxSwift
[8/189] Compiling RxSwift SingleAsync.swift
[9/189] Compiling RxSwift Sink.swift
[10/189] Compiling RxSwift Skip.swift
[11/189] Compiling RxSwift SkipUntil.swift
[12/189] Compiling RxSwift SkipWhile.swift
[13/189] Compiling RxSwift StartWith.swift
[14/189] Compiling RxSwift SubjectType.swift
[15/189] Compiling RxSwift SubscribeOn.swift
[16/189] Compiling RxSwift SubscriptionDisposable.swift
[17/189] Compiling RxSwift SwiftSupport.swift
[18/189] Compiling RxSwift Switch.swift
[19/189] Compiling RxSwift SwitchIfEmpty.swift
[20/189] Compiling RxSwift SynchronizedDisposeType.swift
[21/189] Compiling RxSwift SynchronizedOnType.swift
[22/189] Compiling RxSwift SynchronizedUnsubscribeType.swift
[23/189] Compiling RxSwift TailRecursiveSink.swift
[24/189] Compiling Omnibar TextFieldTextChange.swift
[25/190] Compiling RxSwift Infallible+Create.swift
[26/190] Compiling RxSwift Infallible+Debug.swift
[27/190] Compiling RxSwift Infallible+Operators.swift
[28/190] Compiling RxSwift Infallible+Zip+arity.swift
[29/190] Compiling RxSwift Infallible.swift
[30/190] Compiling RxSwift InfiniteSequence.swift
[31/190] Compiling RxSwift InvocableScheduledItem.swift
[32/190] Compiling RxSwift InvocableType.swift
[33/190] Compiling RxSwift Just.swift
[34/190] Compiling RxSwift Lock.swift
[35/190] Compiling RxSwift LockOwnerType.swift
[36/190] Compiling RxSwift MainScheduler.swift
[37/190] Compiling RxSwift Map.swift
[38/190] Compiling RxSwift Materialize.swift
[39/190] Compiling RxSwift Maybe.swift
[40/190] Compiling RxSwift Merge.swift
[41/190] Compiling Omnibar OmnibarTextFieldCell.swift
[42/190] Compiling Omnibar OmnibarContentChange.swift
[43/190] Compiling Omnibar Omnibar.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:123:17: warning: main actor-isolated instance method 'display(content:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
119 | // MARK: - Input
120 |
121 | extension Omnibar: DisplaysOmnibarContent {
    |                    `- note: add '@preconcurrency' to the 'DisplaysOmnibarContent' conformance to defer isolation checking to run time
122 |
123 |     public func display(content: OmnibarContent) {
    |                 |- warning: main actor-isolated instance method 'display(content:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |                 `- note: add 'nonisolated' to 'display(content:)' to make this instance method not isolated to the actor
124 |
125 |         editableText.replace(replacement: TextReplacement(omnibarContent: content))
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/OmnibarContent.swift:6:10: note: mark the protocol requirement 'display(content:)' 'async' to allow actor-isolated conformances
 4 |
 5 | public protocol DisplaysOmnibarContent: AnyObject {
 6 |     func display(content: OmnibarContent)
   |          `- note: mark the protocol requirement 'display(content:)' 'async' to allow actor-isolated conformances
 7 | }
 8 |
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:112:9: warning: cannot access property 'controlTextChangeSubscription' with a non-sendable type 'Any?' from non-isolated deinit; this is an error in the Swift 6 language mode
110 |
111 |     deinit {
112 |         if let subscription = controlTextChangeSubscription {
    |         `- warning: cannot access property 'controlTextChangeSubscription' with a non-sendable type 'Any?' from non-isolated deinit; this is an error in the Swift 6 language mode
113 |             NotificationCenter.default.removeObserver(subscription)
114 |         }
[44/190] Compiling RxSwift AnonymousDisposable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/EditableText.swift:19:21: warning: call to main actor-isolated instance method 'currentEditor()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | extension EditableText where Self: NSControl {
17 |
18 |     func fieldEditor() -> FieldEditor? {
   |          `- note: add '@MainActor' to make instance method 'fieldEditor()' part of global actor 'MainActor'
19 |         return self.currentEditor()
   |                     `- warning: call to main actor-isolated instance method 'currentEditor()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
20 |     }
21 |
AppKit.NSControl:2:26: note: calls to instance method 'currentEditor()' from outside of its actor context are implicitly asynchronous
 1 | extension NSControl {
 2 |     @MainActor open func currentEditor() -> NSText?
   |                          `- note: calls to instance method 'currentEditor()' from outside of its actor context are implicitly asynchronous
 3 |     open func abortEditing() -> Bool
 4 |     open func validateEditing()
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/EditableText.swift:27:18: warning: main actor-isolated property 'stringValue' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
20 |     }
21 |
22 |     func replace(replacement: TextReplacement) {
   |          `- note: add '@MainActor' to make instance method 'replace(replacement:)' part of global actor 'MainActor'
23 |
24 |         // Do not set `stringValue` in an active editing session because that
25 |         // "aborts all editing before setting the value." (See docs.)
26 |         guard let fieldEditor = self.fieldEditor() else {
27 |             self.stringValue = replacement.text
   |                  `- warning: main actor-isolated property 'stringValue' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
28 |             return
29 |         }
AppKit.NSControl:24:25: note: mutation of this property is only permitted within the actor
22 |     open var formatter: Formatter? { get set }
23 |     open var objectValue: Any? { get set }
24 |     @MainActor open var stringValue: String { get set }
   |                         `- note: mutation of this property is only permitted within the actor
25 |     @NSCopying open var attributedStringValue: NSAttributedString { get set }
26 |     open var intValue: Int32 { get set }
[45/190] Compiling RxSwift AnonymousObserver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/EditableText.swift:19:21: warning: call to main actor-isolated instance method 'currentEditor()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | extension EditableText where Self: NSControl {
17 |
18 |     func fieldEditor() -> FieldEditor? {
   |          `- note: add '@MainActor' to make instance method 'fieldEditor()' part of global actor 'MainActor'
19 |         return self.currentEditor()
   |                     `- warning: call to main actor-isolated instance method 'currentEditor()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
20 |     }
21 |
AppKit.NSControl:2:26: note: calls to instance method 'currentEditor()' from outside of its actor context are implicitly asynchronous
 1 | extension NSControl {
 2 |     @MainActor open func currentEditor() -> NSText?
   |                          `- note: calls to instance method 'currentEditor()' from outside of its actor context are implicitly asynchronous
 3 |     open func abortEditing() -> Bool
 4 |     open func validateEditing()
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/EditableText.swift:27:18: warning: main actor-isolated property 'stringValue' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
20 |     }
21 |
22 |     func replace(replacement: TextReplacement) {
   |          `- note: add '@MainActor' to make instance method 'replace(replacement:)' part of global actor 'MainActor'
23 |
24 |         // Do not set `stringValue` in an active editing session because that
25 |         // "aborts all editing before setting the value." (See docs.)
26 |         guard let fieldEditor = self.fieldEditor() else {
27 |             self.stringValue = replacement.text
   |                  `- warning: main actor-isolated property 'stringValue' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
28 |             return
29 |         }
AppKit.NSControl:24:25: note: mutation of this property is only permitted within the actor
22 |     open var formatter: Formatter? { get set }
23 |     open var objectValue: Any? { get set }
24 |     @MainActor open var stringValue: String { get set }
   |                         `- note: mutation of this property is only permitted within the actor
25 |     @NSCopying open var attributedStringValue: NSAttributedString { get set }
26 |     open var intValue: Int32 { get set }
[46/190] Compiling Omnibar OmnibarDelegate.swift
[47/190] Compiling Omnibar NSView+constrainToSuperviewBounds.swift
[48/190] Compiling RxSwift AddRef.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:12:10: warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 3 | import Cocoa
 4 |
 5 | extension NSText: FieldEditor {
   |                   `- note: add '@preconcurrency' to the 'FieldEditor' conformance to defer isolation checking to run time
 6 |
 7 |     func selectRange(_ range: NSRange) {
   :
10 |     }
11 |
12 |     func replaceAllCharacters(with string: String) {
   |          |- warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
   |          `- note: add 'nonisolated' to 'replaceAllCharacters(with:)' to make this instance method not isolated to the actor
13 |
14 |         self.string = string
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:6:10: note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
4 |
5 | protocol FieldEditor {
6 |     func replaceAllCharacters(with string: String)
  |          `- note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
7 |     func selectRange(_ range: NSRange)
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:7:10: warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 5 | extension NSText: FieldEditor {
 6 |
 7 |     func selectRange(_ range: NSRange) {
   |          |- warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
   |          `- note: add 'nonisolated' to 'selectRange' to make this instance method not isolated to the actor
 8 |
 9 |         self.selectedRange = range
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:7:10: note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
5 | protocol FieldEditor {
6 |     func replaceAllCharacters(with string: String)
7 |     func selectRange(_ range: NSRange)
  |          `- note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
8 | }
9 |
[49/190] Compiling RxSwift Amb.swift
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:12:10: warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 3 | import Cocoa
 4 |
 5 | extension NSText: FieldEditor {
   |                   `- note: add '@preconcurrency' to the 'FieldEditor' conformance to defer isolation checking to run time
 6 |
 7 |     func selectRange(_ range: NSRange) {
   :
10 |     }
11 |
12 |     func replaceAllCharacters(with string: String) {
   |          |- warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
   |          `- note: add 'nonisolated' to 'replaceAllCharacters(with:)' to make this instance method not isolated to the actor
13 |
14 |         self.string = string
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:6:10: note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
4 |
5 | protocol FieldEditor {
6 |     func replaceAllCharacters(with string: String)
  |          `- note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
7 |     func selectRange(_ range: NSRange)
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:7:10: warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 5 | extension NSText: FieldEditor {
 6 |
 7 |     func selectRange(_ range: NSRange) {
   |          |- warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
   |          `- note: add 'nonisolated' to 'selectRange' to make this instance method not isolated to the actor
 8 |
 9 |         self.selectedRange = range
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:7:10: note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
5 | protocol FieldEditor {
6 |     func replaceAllCharacters(with string: String)
7 |     func selectRange(_ range: NSRange)
  |          `- note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
8 | }
9 |
[50/190] Compiling Omnibar OmnibarContent.swift
[51/190] Emitting module Omnibar
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:12:10: warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 3 | import Cocoa
 4 |
 5 | extension NSText: FieldEditor {
   |                   `- note: add '@preconcurrency' to the 'FieldEditor' conformance to defer isolation checking to run time
 6 |
 7 |     func selectRange(_ range: NSRange) {
   :
10 |     }
11 |
12 |     func replaceAllCharacters(with string: String) {
   |          |- warning: main actor-isolated instance method 'replaceAllCharacters(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
   |          `- note: add 'nonisolated' to 'replaceAllCharacters(with:)' to make this instance method not isolated to the actor
13 |
14 |         self.string = string
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:6:10: note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
4 |
5 | protocol FieldEditor {
6 |     func replaceAllCharacters(with string: String)
  |          `- note: mark the protocol requirement 'replaceAllCharacters(with:)' 'async' to allow actor-isolated conformances
7 |     func selectRange(_ range: NSRange)
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/NSText+FieldEditor.swift:7:10: warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 5 | extension NSText: FieldEditor {
 6 |
 7 |     func selectRange(_ range: NSRange) {
   |          |- warning: main actor-isolated instance method 'selectRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
   |          `- note: add 'nonisolated' to 'selectRange' to make this instance method not isolated to the actor
 8 |
 9 |         self.selectedRange = range
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/FieldEditor.swift:7:10: note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
5 | protocol FieldEditor {
6 |     func replaceAllCharacters(with string: String)
7 |     func selectRange(_ range: NSRange)
  |          `- note: mark the protocol requirement 'selectRange' 'async' to allow actor-isolated conformances
8 | }
9 |
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:123:17: warning: main actor-isolated instance method 'display(content:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
119 | // MARK: - Input
120 |
121 | extension Omnibar: DisplaysOmnibarContent {
    |                    `- note: add '@preconcurrency' to the 'DisplaysOmnibarContent' conformance to defer isolation checking to run time
122 |
123 |     public func display(content: OmnibarContent) {
    |                 |- warning: main actor-isolated instance method 'display(content:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |                 `- note: add 'nonisolated' to 'display(content:)' to make this instance method not isolated to the actor
124 |
125 |         editableText.replace(replacement: TextReplacement(omnibarContent: content))
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/OmnibarContent.swift:6:10: note: mark the protocol requirement 'display(content:)' 'async' to allow actor-isolated conformances
 4 |
 5 | public protocol DisplaysOmnibarContent: AnyObject {
 6 |     func display(content: OmnibarContent)
   |          `- note: mark the protocol requirement 'display(content:)' 'async' to allow actor-isolated conformances
 7 | }
 8 |
[52/190] Compiling RxSwift Empty.swift
[53/190] Compiling RxSwift Enumerated.swift
[54/190] Compiling RxSwift Error.swift
[55/190] Compiling RxSwift Errors.swift
[56/190] Compiling RxSwift Event.swift
[57/190] Compiling RxSwift Filter.swift
[58/190] Compiling RxSwift First.swift
[59/190] Compiling RxSwift Generate.swift
[60/190] Compiling RxSwift GroupBy.swift
[61/190] Compiling RxSwift GroupedObservable.swift
[62/190] Compiling RxSwift HistoricalScheduler.swift
[63/190] Compiling RxSwift HistoricalSchedulerTimeConverter.swift
[64/190] Compiling RxSwift ImmediateSchedulerType.swift
[65/190] Compiling RxSwift Infallible+CombineLatest+Collection.swift
[66/190] Compiling RxSwift Infallible+CombineLatest+arity.swift
[67/190] Compiling RxSwift Infallible+Concurrency.swift
[68/190] Compiling RxSwift RetryWhen.swift
[69/190] Compiling RxSwift Rx.swift
[70/190] Compiling RxSwift RxMutableBox.swift
[71/190] Compiling RxSwift Sample.swift
[72/190] Compiling RxSwift Scan.swift
[73/190] Compiling RxSwift ScheduledDisposable.swift
[74/190] Compiling RxSwift ScheduledItem.swift
[75/190] Compiling RxSwift ScheduledItemType.swift
[76/190] Compiling RxSwift SchedulerServices+Emulation.swift
[77/190] Compiling RxSwift SchedulerType.swift
[78/190] Compiling RxSwift Sequence.swift
[79/190] Compiling RxSwift SerialDispatchQueueScheduler.swift
[80/190] Compiling RxSwift SerialDisposable.swift
[81/190] Compiling RxSwift ShareReplayScope.swift
[82/190] Compiling RxSwift Single.swift
[83/190] Compiling RxSwift SingleAssignmentDisposable.swift
[84/190] Compiling RxSwift Platform.Linux.swift
[85/190] Compiling RxSwift PrimitiveSequence+Concurrency.swift
[86/190] Compiling RxSwift PrimitiveSequence+Zip+arity.swift
[87/190] Compiling RxSwift PrimitiveSequence.swift
[88/190] Compiling RxSwift PriorityQueue.swift
[89/190] Compiling RxSwift Producer.swift
[90/190] Compiling RxSwift PublishSubject.swift
[91/190] Compiling RxSwift Queue.swift
[92/190] Compiling RxSwift Range.swift
[93/190] Compiling RxSwift Reactive.swift
[94/190] Compiling RxSwift RecursiveLock.swift
[95/190] Compiling RxSwift RecursiveScheduler.swift
[96/190] Compiling RxSwift Reduce.swift
[97/190] Compiling RxSwift RefCountDisposable.swift
[98/190] Compiling RxSwift Repeat.swift
[99/190] Compiling RxSwift ReplaySubject.swift
[100/190] Compiling RxSwift Cancelable.swift
[101/190] Compiling RxSwift Catch.swift
[102/190] Compiling RxSwift CombineLatest+Collection.swift
[103/190] Compiling RxSwift CombineLatest+arity.swift
[104/190] Compiling RxSwift CombineLatest.swift
[105/190] Compiling RxSwift CompactMap.swift
[106/190] Compiling RxSwift Completable+AndThen.swift
[107/190] Compiling RxSwift Completable.swift
[108/190] Compiling RxSwift CompositeDisposable.swift
[109/190] Compiling RxSwift Concat.swift
[110/190] Compiling RxSwift ConcurrentDispatchQueueScheduler.swift
[111/190] Compiling RxSwift ConcurrentMainScheduler.swift
[112/190] Compiling RxSwift ConnectableObservableType.swift
[113/190] Compiling RxSwift Create.swift
[114/190] Compiling RxSwift CurrentThreadScheduler.swift
[115/190] Compiling RxSwift Date+Dispatch.swift
[116/190] Compiling RxSwift Debounce.swift
[117/190] Compiling RxSwift Multicast.swift
[118/190] Compiling RxSwift Never.swift
[119/190] Compiling RxSwift NopDisposable.swift
[120/190] Compiling RxSwift Observable+Concurrency.swift
[121/190] Compiling RxSwift Observable.swift
[122/190] Compiling RxSwift ObservableConvertibleType+Infallible.swift
[123/190] Compiling RxSwift ObservableConvertibleType.swift
[124/190] Compiling RxSwift ObservableType+Extensions.swift
[125/190] Compiling RxSwift ObservableType+PrimitiveSequence.swift
[126/190] Compiling RxSwift ObservableType.swift
[127/190] Compiling RxSwift ObserveOn.swift
[128/190] Compiling RxSwift ObserverBase.swift
[129/190] Compiling RxSwift ObserverType.swift
[130/190] Compiling RxSwift OperationQueueScheduler.swift
[131/190] Compiling RxSwift Optional.swift
[132/190] Compiling RxSwift Platform.Darwin.swift
[137/190] Compiling RxSwift AnyObserver.swift
[138/190] Compiling RxSwift AsMaybe.swift
[139/190] Compiling RxSwift AsSingle.swift
[140/190] Compiling RxSwift AsyncLock.swift
[141/190] Compiling RxSwift AsyncSubject.swift
[142/190] Compiling RxSwift AtomicInt.swift
[143/190] Compiling RxSwift Bag+Rx.swift
[144/190] Compiling RxSwift Bag.swift
[145/190] Compiling RxSwift BehaviorSubject.swift
[146/190] Compiling RxSwift BinaryDisposable.swift
[147/190] Compiling RxSwift Binder.swift
[148/190] Compiling RxSwift BooleanDisposable.swift
[149/190] Compiling RxSwift Buffer.swift
[150/190] Compiling RxSwift Debug.swift
[151/190] Compiling RxSwift Decode.swift
[152/190] Compiling RxSwift DefaultIfEmpty.swift
[153/190] Compiling RxSwift Deferred.swift
[154/190] Compiling RxSwift Delay.swift
[155/190] Compiling RxSwift DelaySubscription.swift
[156/190] Compiling RxSwift Dematerialize.swift
[157/190] Compiling RxSwift DispatchQueue+Extensions.swift
[158/190] Compiling RxSwift DispatchQueueConfiguration.swift
[159/190] Compiling RxSwift Disposable.swift
[160/190] Compiling RxSwift Disposables.swift
[161/190] Compiling RxSwift DisposeBag.swift
[162/190] Compiling RxSwift DisposeBase.swift
[163/190] Compiling RxSwift DistinctUntilChanged.swift
[164/190] Compiling RxSwift Do.swift
[165/190] Compiling RxSwift ElementAt.swift
[166/190] Compiling Omnibar TextReplacement.swift
[167/190] Compiling RxSwift Take.swift
[168/190] Compiling RxSwift TakeLast.swift
[169/190] Compiling RxSwift TakeWithPredicate.swift
[170/190] Compiling RxSwift Throttle.swift
[171/190] Compiling RxSwift Timeout.swift
[172/190] Compiling RxSwift Timer.swift
[173/190] Compiling RxSwift ToArray.swift
[174/190] Compiling RxSwift Using.swift
[175/190] Compiling RxSwift VirtualTimeConverterType.swift
[176/190] Compiling RxSwift VirtualTimeScheduler.swift
[177/190] Compiling RxSwift Window.swift
[178/190] Compiling RxSwift WithLatestFrom.swift
[179/190] Compiling RxSwift WithUnretained.swift
[180/190] Compiling RxSwift Zip+Collection.swift
[181/190] Compiling RxSwift Zip+arity.swift
[182/190] Compiling RxSwift Zip.swift
[183/196] Compiling RxRelay Utils.swift
[184/196] Compiling RxRelay PublishRelay.swift
[185/196] Compiling RxRelay BehaviorRelay.swift
[186/196] Compiling RxRelay ReplayRelay.swift
[187/196] Emitting module RxRelay
[188/196] Compiling RxRelay Observable+Bind.swift
[188/196] Compiling RxCocoaRuntime _RXKVOObserver.m
[189/196] Compiling RxCocoaRuntime _RXDelegateProxy.m
[190/196] Compiling RxCocoaRuntime _RX.m
[191/196] Compiling RxCocoaRuntime _RXObjCRuntime.m
[193/283] Compiling RxCocoa ObservableConvertibleType+Driver.swift
[194/283] Compiling RxCocoa ObservableConvertibleType+SharedSequence.swift
[195/283] Compiling RxCocoa ObservableConvertibleType+Signal.swift
[196/283] Compiling RxCocoa PublishRelay+Signal.swift
[197/283] Compiling RxCocoa RxCocoa.swift
[198/283] Compiling RxCocoa RxCocoaObjCRuntimeError+Extensions.swift
[199/283] Compiling RxCocoa RxCollectionViewDataSourcePrefetchingProxy.swift
[200/283] Compiling RxCocoa RxCollectionViewDataSourceProxy.swift
[201/283] Compiling RxCocoa RxCollectionViewDataSourceType.swift
[202/283] Compiling RxCocoa RxCollectionViewDelegateProxy.swift
[203/283] Compiling RxCocoa Signal.swift
[204/283] Compiling RxCocoa TextInput.swift
[205/283] Compiling RxCocoa UIActivityIndicatorView+Rx.swift
[206/283] Compiling RxCocoa UIApplication+Rx.swift
[207/283] Compiling RxCocoa UIBarButtonItem+Rx.swift
[208/283] Compiling RxCocoa UIButton+Rx.swift
[209/283] Compiling RxCocoa UICollectionView+Rx.swift
[210/283] Compiling RxCocoa UIControl+Rx.swift
[211/283] Compiling RxCocoa UIDatePicker+Rx.swift
[212/292] Compiling RxCocoa UIGestureRecognizer+Rx.swift
[213/292] Compiling RxCocoa UINavigationController+Rx.swift
[214/292] Compiling RxCocoa UIPickerView+Rx.swift
[215/292] Compiling RxCocoa UIRefreshControl+Rx.swift
[216/292] Compiling RxCocoa UIScrollView+Rx.swift
[217/292] Compiling RxCocoa UISearchBar+Rx.swift
[218/292] Compiling RxCocoa UISearchController+Rx.swift
[219/292] Compiling RxCocoa UISegmentedControl+Rx.swift
[220/292] Compiling RxCocoa UISlider+Rx.swift
[221/292] Compiling RxCocoa Driver+Subscription.swift
[222/292] Compiling RxCocoa Driver.swift
[223/292] Compiling RxCocoa Infallible+Bind.swift
[224/292] Compiling RxCocoa Infallible+Driver.swift
[225/292] Compiling RxCocoa ItemEvents.swift
[226/292] Compiling RxCocoa KVORepresentable+CoreGraphics.swift
[227/292] Compiling RxCocoa KVORepresentable+Swift.swift
[228/292] Compiling RxCocoa KVORepresentable.swift
[229/292] Compiling RxCocoa NSButton+Rx.swift
[230/292] Compiling RxCocoa NSControl+Rx.swift
[231/292] Emitting module RxCocoa
[232/292] Compiling RxCocoa NSObject+Rx+KVORepresentable.swift
[233/292] Compiling RxCocoa NSObject+Rx+RawRepresentable.swift
[234/292] Compiling RxCocoa NSObject+Rx.swift
[235/292] Compiling RxCocoa NSSlider+Rx.swift
[236/292] Compiling RxCocoa NSTextField+Rx.swift
[237/292] Compiling RxCocoa NSTextStorage+Rx.swift
[238/292] Compiling RxCocoa NSTextView+Rx.swift
[239/292] Compiling RxCocoa NSView+Rx.swift
[240/292] Compiling RxCocoa NotificationCenter+Rx.swift
[241/292] Compiling RxCocoa Observable+Bind.swift
[242/292] Compiling RxCocoa UIStepper+Rx.swift
[243/292] Compiling RxCocoa UISwitch+Rx.swift
[244/292] Compiling RxCocoa UITabBar+Rx.swift
[245/292] Compiling RxCocoa UITabBarController+Rx.swift
[246/292] Compiling RxCocoa UITableView+Rx.swift
[247/292] Compiling RxCocoa UITextField+Rx.swift
[248/292] Compiling RxCocoa UITextView+Rx.swift
[249/292] Compiling RxCocoa URLSession+Rx.swift
[250/292] Compiling RxCocoa WKWebView+Rx.swift
[251/292] Compiling RxCocoa RxTabBarControllerDelegateProxy.swift
[252/292] Compiling RxCocoa RxTabBarDelegateProxy.swift
[253/292] Compiling RxCocoa RxTableViewDataSourcePrefetchingProxy.swift
[254/292] Compiling RxCocoa RxTableViewDataSourceProxy.swift
[255/292] Compiling RxCocoa RxTableViewDataSourceType.swift
[256/292] Compiling RxCocoa RxTableViewDelegateProxy.swift
[257/292] Compiling RxCocoa RxTableViewReactiveArrayDataSource.swift
[258/292] Compiling RxCocoa RxTarget.swift
[259/292] Compiling RxCocoa RxTextStorageDelegateProxy.swift
[260/292] Compiling RxCocoa RxCollectionViewReactiveArrayDataSource.swift
[261/292] Compiling RxCocoa RxDelegateProxyCrashFix.swift
[262/292] Compiling RxCocoa RxNavigationControllerDelegateProxy.swift
[263/292] Compiling RxCocoa RxPickerViewAdapter.swift
[264/292] Compiling RxCocoa RxPickerViewDataSourceProxy.swift
[265/292] Compiling RxCocoa RxPickerViewDataSourceType.swift
[266/292] Compiling RxCocoa RxPickerViewDelegateProxy.swift
[267/292] Compiling RxCocoa RxScrollViewDelegateProxy.swift
[268/292] Compiling RxCocoa RxSearchBarDelegateProxy.swift
[269/292] Compiling RxCocoa RxSearchControllerDelegateProxy.swift
[270/292] Compiling RxCocoa BehaviorRelay+Driver.swift
[271/292] Compiling RxCocoa ControlEvent+Driver.swift
[272/292] Compiling RxCocoa ControlEvent+Signal.swift
[273/292] Compiling RxCocoa ControlEvent.swift
[274/292] Compiling RxCocoa ControlProperty+Driver.swift
[275/292] Compiling RxCocoa ControlProperty.swift
[276/292] Compiling RxCocoa ControlTarget.swift
[277/292] Compiling RxCocoa DelegateProxy.swift
[278/292] Compiling RxCocoa DelegateProxyType.swift
[279/292] Compiling RxCocoa DispatchQueue+Extensions.swift
[280/292] Compiling RxCocoa RxTextViewDelegateProxy.swift
[281/292] Compiling RxCocoa RxWKNavigationDelegateProxy.swift
[282/292] Compiling RxCocoa SchedulerType+SharedSequence.swift
[283/292] Compiling RxCocoa SectionedViewDataSourceType.swift
[284/292] Compiling RxCocoa SharedSequence+Concurrency.swift
[285/292] Compiling RxCocoa SharedSequence+Operators+arity.swift
[286/292] Compiling RxCocoa SharedSequence+Operators.swift
[287/292] Compiling RxCocoa SharedSequence.swift
[288/292] Compiling RxCocoa Signal+Subscription.swift
[289/296] Compiling RxOmnibar RxCocoaCasting.swift
[290/296] Compiling RxOmnibar RxOmnibarDelegateProxy.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxOmnibar/RxOmnibarDelegateProxy.swift:27:23: warning: main actor-isolated property 'omnibarDelegate' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 24 |     }
 25 |
 26 |     public static func currentDelegate(for object: Omnibar) -> OmnibarDelegate? {
    |                        `- note: add '@MainActor' to make static method 'currentDelegate(for:)' part of global actor 'MainActor'
 27 |         return object.omnibarDelegate
    |                       `- warning: main actor-isolated property 'omnibarDelegate' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 28 |     }
 29 |
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:44:21: note: property declared here
 42 |     }
 43 |
 44 |     public weak var omnibarDelegate: OmnibarDelegate?
    |                     `- note: property declared here
 45 |     fileprivate var cachedTextFieldChange: TextFieldTextChange?
 46 |
/Users/admin/builder/spi-builder-workspace/Sources/RxOmnibar/RxOmnibarDelegateProxy.swift:31:16: warning: main actor-isolated property 'omnibarDelegate' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     public static func setCurrentDelegate(_ delegate: OmnibarDelegate?, to object: Omnibar) {
    |                        `- note: add '@MainActor' to make static method 'setCurrentDelegate(_:to:)' part of global actor 'MainActor'
 31 |         object.omnibarDelegate = delegate
    |                `- warning: main actor-isolated property 'omnibarDelegate' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
 32 |     }
 33 |
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:44:21: note: mutation of this property is only permitted within the actor
 42 |     }
 43 |
 44 |     public weak var omnibarDelegate: OmnibarDelegate?
    |                     `- note: mutation of this property is only permitted within the actor
 45 |     fileprivate var cachedTextFieldChange: TextFieldTextChange?
 46 |
[291/296] Compiling RxOmnibar Omnibar+Rx.swift
/Users/admin/builder/spi-builder-workspace/Sources/RxOmnibar/Omnibar+Rx.swift:23:21: warning: call to main actor-isolated instance method 'display(content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 21 |     public var content: Binder<OmnibarContent> {
 22 |         return Binder(base) { (omnibar: Omnibar, content: OmnibarContent) in
 23 |             omnibar.display(content: content)
    |                     `- warning: call to main actor-isolated instance method 'display(content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 24 |         }
 25 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Omnibar/Omnibar.swift:123:17: note: calls to instance method 'display(content:)' from outside of its actor context are implicitly asynchronous
121 | extension Omnibar: DisplaysOmnibarContent {
122 |
123 |     public func display(content: OmnibarContent) {
    |                 `- note: calls to instance method 'display(content:)' from outside of its actor context are implicitly asynchronous
124 |
125 |         editableText.replace(replacement: TextReplacement(omnibarContent: content))
/Users/admin/builder/spi-builder-workspace/Sources/RxOmnibar/Omnibar+Rx.swift:23:21: warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
 21 |     public var content: Binder<OmnibarContent> {
 22 |         return Binder(base) { (omnibar: Omnibar, content: OmnibarContent) in
 23 |             omnibar.display(content: content)
    |                     |- warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
    |                     `- note: sending task-isolated 'content' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
 24 |         }
 25 |     }
[292/296] Emitting module RxOmnibar
[292/296] Write Objects.LinkFileList
/Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'DispatchQueue+Extensions.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/RxSwift.build/DispatchQueue+Extensions.swift.o(DispatchQueue+Extensions.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/RxCocoa.build/DispatchQueue+Extensions.swift.o(DispatchQueue+Extensions.swift.o)'
/Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'Observable+Bind.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/RxCocoa.build/Observable+Bind.swift.o(Observable+Bind.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/RxRelay.build/Observable+Bind.swift.o(Observable+Bind.swift.o)'
[294/296] Archiving libRxOmnibar-Static.a
[295/296] Linking libRxOmnibar-Dynamic.dylib
Build complete! (42.93s)
Fetching https://github.com/ReactiveX/RxSwift
[1/51416] Fetching rxswift
Fetched https://github.com/ReactiveX/RxSwift from cache (4.61s)
Computing version for https://github.com/ReactiveX/RxSwift.git
Computed https://github.com/ReactiveX/RxSwift.git at 6.6.0 (0.72s)
Creating working copy for https://github.com/ReactiveX/RxSwift
Working copy of https://github.com/ReactiveX/RxSwift resolved at 6.6.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "rxswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.6.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ReactiveX/RxSwift.git"
    }
  ],
  "manifest_display_name" : "Omnibar",
  "name" : "Omnibar",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Omnibar",
      "targets" : [
        "Omnibar"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxOmnibar",
      "targets" : [
        "RxOmnibar"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RxOmnibar-Static",
      "targets" : [
        "RxOmnibar"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "RxOmnibar-Dynamic",
      "targets" : [
        "RxOmnibar"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RxOmnibarTests",
      "module_type" : "SwiftTarget",
      "name" : "RxOmnibarTests",
      "path" : "Tests/RxOmnibarTests",
      "product_dependencies" : [
        "RxTest"
      ],
      "sources" : [
        "Omnibar+RxTests.swift",
        "RxTestHelpers.swift"
      ],
      "target_dependencies" : [
        "RxOmnibar"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RxOmnibar",
      "module_type" : "SwiftTarget",
      "name" : "RxOmnibar",
      "path" : "Sources/RxOmnibar",
      "product_dependencies" : [
        "RxSwift",
        "RxCocoa",
        "RxRelay"
      ],
      "product_memberships" : [
        "RxOmnibar",
        "RxOmnibar-Static",
        "RxOmnibar-Dynamic"
      ],
      "sources" : [
        "Omnibar+Rx.swift",
        "RxCocoaCasting.swift",
        "RxOmnibarDelegateProxy.swift"
      ],
      "target_dependencies" : [
        "Omnibar"
      ],
      "type" : "library"
    },
    {
      "c99name" : "OmnibarTests",
      "module_type" : "SwiftTarget",
      "name" : "OmnibarTests",
      "path" : "Tests/OmnibarTests",
      "sources" : [
        "ChangeMethodTests.swift",
        "NSRange+EquatableTests.swift",
        "NSText+FieldEditorTests.swift",
        "OmnibarContentChangeTests.swift",
        "OmnibarContentTests.swift",
        "OmnibarTests.swift",
        "TextFieldTextChangeTests.swift",
        "TextReplacementTests.swift"
      ],
      "target_dependencies" : [
        "Omnibar"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Omnibar",
      "module_type" : "SwiftTarget",
      "name" : "Omnibar",
      "path" : "Sources/Omnibar",
      "product_memberships" : [
        "Omnibar",
        "RxOmnibar",
        "RxOmnibar-Static",
        "RxOmnibar-Dynamic"
      ],
      "sources" : [
        "ChangeMethod.swift",
        "EditableText.swift",
        "FieldEditor.swift",
        "NSText+FieldEditor.swift",
        "NSView+constrainToSuperviewBounds.swift",
        "Omnibar.swift",
        "OmnibarContent.swift",
        "OmnibarContentChange.swift",
        "OmnibarDelegate.swift",
        "OmnibarTextFieldCell.swift",
        "TextFieldTextChange.swift",
        "TextReplacement.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.