Build Information
Successful build of swift-interception with Swift 6.0 for macOS (SPM).
Swift 6 data race errors: 17
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/capturecontext/swift-interception.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/capturecontext/swift-interception
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 75cd4ea feat: Update README.md
Cloned https://github.com/capturecontext/swift-interception.git
Revision (git rev-parse @):
75cd4ead12921276e78a2071ec0273e008b4e6ff
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/capturecontext/swift-interception.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $workDir
https://github.com/capturecontext/swift-interception.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/33] Write sources
[19/33] Write swift-version-6F35C1178C84523A.txt
[20/40] Compiling _InterceptionUtilsObjc ObjcRuntimeAliases.m
[22/50] Emitting module SwiftSyntax509
[23/50] Compiling SwiftSyntax509 Empty.swift
[24/96] Compiling SwiftSyntax MemoryLayout.swift
[25/96] Compiling SwiftSyntax MissingNodeInitializers.swift
[26/96] Compiling SwiftSyntax RawSyntax.swift
[27/96] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[28/96] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[29/101] Compiling SwiftSyntax SyntaxText.swift
[30/101] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[31/101] Compiling SwiftSyntax TokenDiagnostic.swift
[32/101] Compiling SwiftSyntax TokenSyntax.swift
[33/101] Compiling SwiftSyntax Trivia.swift
[34/101] Compiling SwiftSyntax AbsolutePosition.swift
[35/101] Compiling SwiftSyntax Assert.swift
[36/101] Compiling SwiftSyntax BumpPtrAllocator.swift
[37/101] Compiling SwiftSyntax CommonAncestor.swift
[38/101] Compiling SwiftSyntax Convenience.swift
[39/101] Compiling SwiftSyntax Syntax.swift
[40/101] Compiling SwiftSyntax SyntaxArena.swift
[41/101] Compiling SwiftSyntax SyntaxChildren.swift
[42/101] Compiling SwiftSyntax SyntaxCollection.swift
[43/101] Compiling SwiftSyntax SyntaxData.swift
[44/101] Compiling _InterceptionUtils ObjC+Selector.swift
[45/101] Emitting module _InterceptionUtils
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:5:20: warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
3 | // Unavailable selectors in Swift.
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
| `- warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ObjectiveC'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ObjectiveC'
2 |
3 | // Unavailable selectors in Swift.
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
| |- note: annotate 'forwardInvocation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:6:20: warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
| |- warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'methodSignatureForSelector' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | public static let getClass = Selector((("class")))
8 | }
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:7:20: warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
| |- warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'getClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | }
9 |
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:12:20: warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
10 | // Method encoding of the unavailable selectors.
11 | public enum ObjCMethodEncoding {
12 | public static let forwardInvocation = extract("v@:@")
| |- warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'forwardInvocation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let methodSignatureForSelector = extract("v@::")
14 | public static let getClass = extract("#@:")
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:13:20: warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
11 | public enum ObjCMethodEncoding {
12 | public static let forwardInvocation = extract("v@:@")
13 | public static let methodSignatureForSelector = extract("v@::")
| |- warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'methodSignatureForSelector' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let getClass = extract("#@:")
15 |
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:14:20: warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
12 | public static let forwardInvocation = extract("v@:@")
13 | public static let methodSignatureForSelector = extract("v@::")
14 | public static let getClass = extract("#@:")
| |- warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'getClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | private static func extract(_ string: StaticString) -> UnsafePointer<CChar> {
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+RuntimeSubclassing.swift:6:13: warning: let 'runtimeSubclassedKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
4 |
5 | /// Whether the runtime subclass has already been swizzled.
6 | private let runtimeSubclassedKey = AssociationKey(default: false)
| |- warning: let 'runtimeSubclassedKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'runtimeSubclassedKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | /// A known combine-interception runtime subclass of the instance. `nil` if the runtime subclass
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+RuntimeSubclassing.swift:10:13: warning: let 'knownRuntimeSubclassKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<AnyClass?>' (aka 'AssociationKey<Optional<any AnyObject.Type>>') may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// A known combine-interception runtime subclass of the instance. `nil` if the runtime subclass
9 | /// has not been requested for the instance before.
10 | private let knownRuntimeSubclassKey = AssociationKey<AnyClass?>(default: nil)
| |- warning: let 'knownRuntimeSubclassKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<AnyClass?>' (aka 'AssociationKey<Optional<any AnyObject.Type>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'knownRuntimeSubclassKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | extension NSObject {
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
[46/101] Compiling _InterceptionCustomSelectors KeyPath+.swift
[47/101] Compiling _InterceptionCustomSelectors _MethodSelector.swift
[48/101] Compiling _InterceptionCustomSelectors _PropertySelector.swift
[49/101] Emitting module _InterceptionCustomSelectors
[50/101] Compiling _InterceptionCustomSelectors _MutablePropertySelector.swift
[50/101] Write Objects.LinkFileList
[51/101] Archiving lib_InterceptionCustomSelectors.a
[53/101] Compiling _InterceptionUtils ObjC+Constants.swift
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:5:20: warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
3 | // Unavailable selectors in Swift.
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
| `- warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ObjectiveC'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ObjectiveC'
2 |
3 | // Unavailable selectors in Swift.
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
| |- note: annotate 'forwardInvocation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:6:20: warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
| |- warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'methodSignatureForSelector' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | public static let getClass = Selector((("class")))
8 | }
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:7:20: warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
| |- warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'getClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | }
9 |
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:12:20: warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
10 | // Method encoding of the unavailable selectors.
11 | public enum ObjCMethodEncoding {
12 | public static let forwardInvocation = extract("v@:@")
| |- warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'forwardInvocation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let methodSignatureForSelector = extract("v@::")
14 | public static let getClass = extract("#@:")
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:13:20: warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
11 | public enum ObjCMethodEncoding {
12 | public static let forwardInvocation = extract("v@:@")
13 | public static let methodSignatureForSelector = extract("v@::")
| |- warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'methodSignatureForSelector' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let getClass = extract("#@:")
15 |
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:14:20: warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
12 | public static let forwardInvocation = extract("v@:@")
13 | public static let methodSignatureForSelector = extract("v@::")
14 | public static let getClass = extract("#@:")
| |- warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'getClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | private static func extract(_ string: StaticString) -> UnsafePointer<CChar> {
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
[54/101] Compiling _InterceptionUtils ObjC+Runtime.swift
[55/101] Compiling _InterceptionUtils Synchronizing.swift
[56/101] Compiling _InterceptionUtils Exports.swift
[57/101] Compiling _InterceptionUtils ObjC+Messages.swift
[58/101] Compiling _InterceptionUtils NSObject+Association.swift
[59/101] Compiling _InterceptionUtils ObjC+RuntimeSubclassing.swift
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+RuntimeSubclassing.swift:6:13: warning: let 'runtimeSubclassedKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
4 |
5 | /// Whether the runtime subclass has already been swizzled.
6 | private let runtimeSubclassedKey = AssociationKey(default: false)
| |- warning: let 'runtimeSubclassedKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'runtimeSubclassedKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 |
8 | /// A known combine-interception runtime subclass of the instance. `nil` if the runtime subclass
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+RuntimeSubclassing.swift:10:13: warning: let 'knownRuntimeSubclassKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<AnyClass?>' (aka 'AssociationKey<Optional<any AnyObject.Type>>') may have shared mutable state; this is an error in the Swift 6 language mode
8 | /// A known combine-interception runtime subclass of the instance. `nil` if the runtime subclass
9 | /// has not been requested for the instance before.
10 | private let knownRuntimeSubclassKey = AssociationKey<AnyClass?>(default: nil)
| |- warning: let 'knownRuntimeSubclassKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<AnyClass?>' (aka 'AssociationKey<Optional<any AnyObject.Type>>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'knownRuntimeSubclassKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | extension NSObject {
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: consider making generic struct 'AssociationKey' conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:7:20: warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
| `- warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
8 | }
9 |
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ObjectiveC'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ObjectiveC'
2 |
3 | // Unavailable selectors in Swift.
:
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
| |- note: annotate 'getClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
8 | }
9 |
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:14:20: warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
12 | public static let forwardInvocation = extract("v@:@")
13 | public static let methodSignatureForSelector = extract("v@::")
14 | public static let getClass = extract("#@:")
| |- warning: static property 'getClass' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'getClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | private static func extract(_ string: StaticString) -> UnsafePointer<CChar> {
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
[60/101] Compiling _InterceptionUtils NSObject+ObjCRuntime.swift
[60/101] Write Objects.LinkFileList
[61/101] Archiving lib_InterceptionUtils.a
[63/105] Compiling Interception InterceptionResult.swift
[64/105] Compiling Interception Exports.swift
[65/105] Emitting module Interception
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:8:13: warning: let 'interceptedKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// Whether the runtime subclass has already been prepared for method
7 | /// interception.
8 | private let interceptedKey = AssociationKey(default: false)
| `- warning: let 'interceptedKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
9 |
10 | /// Holds the method signature cache of the runtime subclass.
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module '_InterceptionUtils'
1 | #if canImport(Combine)
2 | import Foundation
3 | import _InterceptionUtils
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module '_InterceptionUtils'
4 | import _InterceptionCustomSelectors
5 |
6 | /// Whether the runtime subclass has already been prepared for method
7 | /// interception.
8 | private let interceptedKey = AssociationKey(default: false)
| |- note: annotate 'interceptedKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 |
10 | /// Holds the method signature cache of the runtime subclass.
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:11:13: warning: let 'signatureCacheKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<SignatureCache>' may have shared mutable state; this is an error in the Swift 6 language mode
9 |
10 | /// Holds the method signature cache of the runtime subclass.
11 | private let signatureCacheKey = AssociationKey<SignatureCache>()
| |- warning: let 'signatureCacheKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<SignatureCache>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'signatureCacheKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | /// Holds the method selector cache of the runtime subclass.
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:14:13: warning: let 'selectorCacheKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<SelectorCache>' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | /// Holds the method selector cache of the runtime subclass.
14 | private let selectorCacheKey = AssociationKey<SelectorCache>()
| |- warning: let 'selectorCacheKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<SelectorCache>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'selectorCacheKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | internal let noImplementation: IMP = unsafeBitCast(Int(0), to: IMP.self)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:16:14: warning: let 'noImplementation' is not concurrency-safe because non-'Sendable' type 'IMP' (aka 'OpaquePointer') may have shared mutable state; this is an error in the Swift 6 language mode
14 | private let selectorCacheKey = AssociationKey<SelectorCache>()
15 |
16 | internal let noImplementation: IMP = unsafeBitCast(Int(0), to: IMP.self)
| |- warning: let 'noImplementation' is not concurrency-safe because non-'Sendable' type 'IMP' (aka 'OpaquePointer') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noImplementation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | extension NSObject {
Swift.OpaquePointer:1:23: note: struct 'OpaquePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct OpaquePointer {
| `- note: struct 'OpaquePointer' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:330:20: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SwiftInterceptionDefaultInterceptionHandlerKey' may have shared mutable state; this is an error in the Swift 6 language mode
327 |
328 | @_spi(Internals)
329 | public struct SwiftInterceptionDefaultInterceptionHandlerKey: Hashable {
| `- note: consider making struct 'SwiftInterceptionDefaultInterceptionHandlerKey' conform to the 'Sendable' protocol
330 | public static let shared: Self = .init()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SwiftInterceptionDefaultInterceptionHandlerKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
331 |
332 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:5:20: warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
3 | // Unavailable selectors in Swift.
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
| |- warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'forwardInvocation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:12:20: warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
10 | // Method encoding of the unavailable selectors.
11 | public enum ObjCMethodEncoding {
12 | public static let forwardInvocation = extract("v@:@")
| |- warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'forwardInvocation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let methodSignatureForSelector = extract("v@::")
14 | public static let getClass = extract("#@:")
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:6:20: warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
| |- warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'methodSignatureForSelector' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | public static let getClass = Selector((("class")))
8 | }
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:13:20: warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
11 | public enum ObjCMethodEncoding {
12 | public static let forwardInvocation = extract("v@:@")
13 | public static let methodSignatureForSelector = extract("v@::")
| |- warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'methodSignatureForSelector' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let getClass = extract("#@:")
15 |
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
[66/105] Compiling Interception NSObject+Interception.swift
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:8:13: warning: let 'interceptedKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
6 | /// Whether the runtime subclass has already been prepared for method
7 | /// interception.
8 | private let interceptedKey = AssociationKey(default: false)
| `- warning: let 'interceptedKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
9 |
10 | /// Holds the method signature cache of the runtime subclass.
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module '_InterceptionUtils'
1 | #if canImport(Combine)
2 | import Foundation
3 | import _InterceptionUtils
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module '_InterceptionUtils'
4 | import _InterceptionCustomSelectors
5 |
6 | /// Whether the runtime subclass has already been prepared for method
7 | /// interception.
8 | private let interceptedKey = AssociationKey(default: false)
| |- note: annotate 'interceptedKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 |
10 | /// Holds the method signature cache of the runtime subclass.
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:11:13: warning: let 'signatureCacheKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<SignatureCache>' may have shared mutable state; this is an error in the Swift 6 language mode
9 |
10 | /// Holds the method signature cache of the runtime subclass.
11 | private let signatureCacheKey = AssociationKey<SignatureCache>()
| |- warning: let 'signatureCacheKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<SignatureCache>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'signatureCacheKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | /// Holds the method selector cache of the runtime subclass.
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:14:13: warning: let 'selectorCacheKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<SelectorCache>' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | /// Holds the method selector cache of the runtime subclass.
14 | private let selectorCacheKey = AssociationKey<SelectorCache>()
| |- warning: let 'selectorCacheKey' is not concurrency-safe because non-'Sendable' type 'AssociationKey<SelectorCache>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'selectorCacheKey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 | internal let noImplementation: IMP = unsafeBitCast(Int(0), to: IMP.self)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/NSObject+Association.swift:4:15: note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
2 | import _InterceptionUtilsObjc
3 |
4 | public struct AssociationKey<Value> {
| `- note: generic struct 'AssociationKey' does not conform to the 'Sendable' protocol
5 | fileprivate let address: UnsafeRawPointer
6 | fileprivate let `default`: Value!
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:16:14: warning: let 'noImplementation' is not concurrency-safe because non-'Sendable' type 'IMP' (aka 'OpaquePointer') may have shared mutable state; this is an error in the Swift 6 language mode
14 | private let selectorCacheKey = AssociationKey<SelectorCache>()
15 |
16 | internal let noImplementation: IMP = unsafeBitCast(Int(0), to: IMP.self)
| |- warning: let 'noImplementation' is not concurrency-safe because non-'Sendable' type 'IMP' (aka 'OpaquePointer') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noImplementation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 | extension NSObject {
Swift.OpaquePointer:1:23: note: struct 'OpaquePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct OpaquePointer {
| `- note: struct 'OpaquePointer' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/Interception/NSObject+Interception.swift:330:20: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SwiftInterceptionDefaultInterceptionHandlerKey' may have shared mutable state; this is an error in the Swift 6 language mode
327 |
328 | @_spi(Internals)
329 | public struct SwiftInterceptionDefaultInterceptionHandlerKey: Hashable {
| `- note: consider making struct 'SwiftInterceptionDefaultInterceptionHandlerKey' conform to the 'Sendable' protocol
330 | public static let shared: Self = .init()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SwiftInterceptionDefaultInterceptionHandlerKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
331 |
332 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:5:20: warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
3 | // Unavailable selectors in Swift.
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
| |- warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'forwardInvocation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
7 | public static let getClass = Selector((("class")))
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:12:20: warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
10 | // Method encoding of the unavailable selectors.
11 | public enum ObjCMethodEncoding {
12 | public static let forwardInvocation = extract("v@:@")
| |- warning: static property 'forwardInvocation' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'forwardInvocation' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let methodSignatureForSelector = extract("v@::")
14 | public static let getClass = extract("#@:")
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:6:20: warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
4 | public enum ObjCSelector {
5 | public static let forwardInvocation = Selector((("forwardInvocation:")))
6 | public static let methodSignatureForSelector = Selector((("methodSignatureForSelector:")))
| |- warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'Selector' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'methodSignatureForSelector' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | public static let getClass = Selector((("class")))
8 | }
ObjectiveC.Selector:1:23: note: struct 'Selector' does not conform to the 'Sendable' protocol
1 | @frozen public struct Selector : ExpressibleByStringLiteral {
| `- note: struct 'Selector' does not conform to the 'Sendable' protocol
2 | public init(_ str: String)
3 | public init(stringLiteral value: String)
/Users/admin/builder/spi-builder-workspace/Sources/_InterceptionUtils/ObjC+Constants.swift:13:20: warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
11 | public enum ObjCMethodEncoding {
12 | public static let forwardInvocation = extract("v@:@")
13 | public static let methodSignatureForSelector = extract("v@::")
| |- warning: static property 'methodSignatureForSelector' is not concurrency-safe because non-'Sendable' type 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'methodSignatureForSelector' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let getClass = extract("#@:")
15 |
Swift.UnsafePointer:1:23: note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct UnsafePointer<Pointee> : Copyable where Pointee : ~Copyable {
| `- note: generic struct 'UnsafePointer' does not conform to the 'Sendable' protocol
2 | public let _rawValue: Builtin.RawPointer
3 | public init(_ _rawValue: Builtin.RawPointer)
[66/105] Write Objects.LinkFileList
/Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'Exports.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/_InterceptionUtils.build/Exports.swift.o(Exports.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Interception.build/Exports.swift.o(Exports.swift.o)'
[67/105] Archiving libInterception.a
[69/105] Emitting module SwiftSyntax
[70/105] Compiling SwiftSyntax Utils.swift
[71/105] Compiling SwiftSyntax ChildNameForKeyPath.swift
[72/105] Compiling SwiftSyntax Keyword.swift
[73/105] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[74/105] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[75/105] Compiling SwiftSyntax Tokens.swift
[76/105] Compiling SwiftSyntax TriviaPieces.swift
[77/105] Compiling SwiftSyntax RawSyntaxNodes.swift
[78/105] Compiling SwiftSyntax RawSyntaxValidation.swift
[79/105] Compiling SwiftSyntax SyntaxDeclNodes.swift
[80/105] Compiling SwiftSyntax SyntaxExprNodes.swift
[81/105] Compiling SwiftSyntax SyntaxNodes.swift
[82/105] Compiling SwiftSyntax SyntaxPatternNodes.swift
[83/105] Compiling SwiftSyntax SyntaxStmtNodes.swift
[84/105] Compiling SwiftSyntax SyntaxTypeNodes.swift
[85/105] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[86/105] Compiling SwiftSyntax SyntaxBaseNodes.swift
[87/105] Compiling SwiftSyntax SyntaxCollections.swift
[88/105] Compiling SwiftSyntax SyntaxEnum.swift
[89/105] Compiling SwiftSyntax SyntaxKind.swift
[90/105] Compiling SwiftSyntax SyntaxRewriter.swift
[91/105] Compiling SwiftSyntax SyntaxTraits.swift
[92/105] Compiling SwiftSyntax SyntaxTransform.swift
[93/105] Compiling SwiftSyntax SyntaxVisitor.swift
[94/105] Compiling SwiftSyntax TokenKind.swift
[95/105] Compiling SwiftSyntax RawSyntaxTokenView.swift
[96/105] Compiling SwiftSyntax SourceLength.swift
[97/105] Compiling SwiftSyntax SourceLocation.swift
[98/105] Compiling SwiftSyntax SourcePresence.swift
[99/105] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[100/157] Compiling SwiftDiagnostics Note.swift
[101/157] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[102/157] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[103/157] Compiling SwiftBasicFormat Syntax+Extensions.swift
[104/157] Compiling SwiftDiagnostics Convenience.swift
[105/157] Compiling SwiftDiagnostics FixIt.swift
[106/157] Emitting module SwiftDiagnostics
[107/157] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[108/157] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[109/157] Compiling SwiftDiagnostics Message.swift
[110/157] Compiling SwiftDiagnostics Diagnostic.swift
[111/157] Emitting module SwiftBasicFormat
[112/157] Compiling SwiftBasicFormat BasicFormat.swift
[113/157] Compiling SwiftParser Names.swift
[114/157] Compiling SwiftParser Nominals.swift
[115/157] Compiling SwiftParser Parameters.swift
[116/157] Compiling SwiftParser ParseSourceFile.swift
[117/161] Compiling SwiftParser Lexeme.swift
[118/161] Compiling SwiftParser LexemeSequence.swift
[119/161] Compiling SwiftParser Lexer.swift
[120/161] Compiling SwiftParser RegexLiteralLexer.swift
[121/161] Compiling SwiftParser UnicodeScalarExtensions.swift
[122/161] Compiling SwiftParser Lookahead.swift
[123/161] Compiling SwiftParser LoopProgressCondition.swift
[124/161] Compiling SwiftParser Modifiers.swift
[125/161] Compiling SwiftParser Statements.swift
[126/161] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[127/161] Compiling SwiftParser StringLiterals.swift
[128/161] Compiling SwiftParser SwiftParserCompatibility.swift
[129/161] Compiling SwiftParser Parser.swift
[130/161] Compiling SwiftParser Patterns.swift
[131/161] Compiling SwiftParser Recovery.swift
[132/161] Compiling SwiftParser Specifiers.swift
[133/161] Compiling SwiftParser TokenSpecSet.swift
[134/161] Compiling SwiftParser TopLevel.swift
[135/161] Compiling SwiftParser TriviaParser.swift
[136/161] Compiling SwiftParser Types.swift
[137/161] Compiling SwiftParser SyntaxUtils.swift
[138/161] Compiling SwiftParser TokenConsumer.swift
[139/161] Compiling SwiftParser TokenPrecedence.swift
[140/161] Compiling SwiftParser TokenSpec.swift
[141/161] Compiling SwiftParser IsLexerClassified.swift
[142/161] Compiling SwiftParser LayoutNodes+Parsable.swift
[143/161] Compiling SwiftParser Parser+TokenSpecSet.swift
[144/161] Compiling SwiftParser TokenSpecStaticMembers.swift
[145/161] Compiling SwiftParser Attributes.swift
[146/161] Compiling SwiftParser Availability.swift
[147/161] Compiling SwiftParser CharacterInfo.swift
[148/161] Compiling SwiftParser CollectionNodes+Parsable.swift
[149/161] Compiling SwiftParser Declarations.swift
[150/161] Emitting module SwiftParser
[151/161] Compiling SwiftParser Directives.swift
[152/161] Compiling SwiftParser ExperimentalFeatures.swift
[153/161] Compiling SwiftParser Expressions.swift
[154/161] Compiling SwiftParser IncrementalParseTransition.swift
[155/161] Compiling SwiftParser Cursor.swift
[156/184] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[157/185] Compiling SwiftOperators PrecedenceGroup.swift
[158/186] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[159/186] Compiling SwiftOperators OperatorTable.swift
[160/186] Compiling SwiftOperators PrecedenceGraph.swift
[161/186] Compiling SwiftOperators SyntaxSynthesis.swift
[162/186] Compiling SwiftOperators OperatorTable+Semantics.swift
[163/186] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[164/186] Compiling SwiftParserDiagnostics PresenceUtils.swift
[165/186] Compiling SwiftOperators Operator.swift
[166/186] Compiling SwiftOperators OperatorError.swift
[167/186] Compiling SwiftOperators OperatorTable+Defaults.swift
[168/186] Compiling SwiftOperators OperatorTable+Folding.swift
[169/186] Compiling SwiftOperators OperatorError+Diagnostics.swift
[170/186] Emitting module SwiftOperators
[171/186] Compiling SwiftParserDiagnostics Utils.swift
[172/186] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[173/186] Emitting module SwiftParserDiagnostics
[174/186] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[175/186] Compiling SwiftParserDiagnostics MissingNodesError.swift
[176/186] Compiling SwiftParserDiagnostics MissingTokenError.swift
[177/186] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[178/186] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[179/186] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[180/186] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[181/200] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[182/200] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[183/200] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[184/201] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[185/201] Compiling SwiftSyntaxBuilder Indenter.swift
[186/201] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[187/201] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[188/201] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[189/201] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[190/201] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[191/201] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[192/201] Emitting module SwiftSyntaxBuilder
[193/201] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[194/201] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[195/201] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[196/215] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[197/215] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[198/215] Compiling SwiftSyntaxMacros Macro.swift
[199/215] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[200/215] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[201/215] Compiling SwiftSyntaxMacros Macro+Format.swift
[202/215] Compiling SwiftSyntaxMacros MemberMacro.swift
[203/216] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[204/216] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[205/216] Compiling SwiftSyntaxMacros PeerMacro.swift
[206/216] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[207/216] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[208/216] Emitting module SwiftSyntaxMacros
[209/216] Compiling SwiftSyntaxMacros AccessorMacro.swift
[210/216] Compiling SwiftSyntaxMacros AttachedMacro.swift
[211/224] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[212/224] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[213/224] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[214/224] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[215/224] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[216/224] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[217/224] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[218/224] Emitting module SwiftSyntaxMacroExpansion
[219/231] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[220/231] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[221/231] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[222/231] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[223/231] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[224/231] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[225/231] Emitting module SwiftCompilerPluginMessageHandling
[226/233] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[227/233] Emitting module SwiftCompilerPlugin
[228/276] Compiling MacroToolkit ArrayType.swift
[229/276] Compiling MacroToolkit Attribute.swift
[230/276] Compiling MacroToolkit AttributeListElement.swift
[231/276] Compiling MacroToolkit BooleanLiteral.swift
[232/276] Compiling MacroToolkit ClassRestrictionType.swift
[233/280] Compiling MacroToolkit MacroAttribute.swift
[234/280] Compiling MacroToolkit MemberType.swift
[235/280] Compiling MacroToolkit MetatypeType.swift
[236/280] Compiling MacroToolkit MissingType.swift
[237/280] Compiling MacroToolkit NilLiteral.swift
[238/280] Compiling MacroToolkit SimpleType.swift
[239/280] Compiling MacroToolkit SomeOrAnyType.swift
[240/280] Compiling MacroToolkit String+Extensions.swift
[241/280] Compiling MacroToolkit StringLiteral.swift
[242/280] Emitting module MacroToolkit
[243/280] Compiling MacroToolkit FunctionParameter.swift
[244/280] Compiling MacroToolkit FunctionType.swift
[245/280] Compiling MacroToolkit ImplicitlyUnwrappedOptionalType.swift
[246/280] Compiling MacroToolkit IntegerLiteral.swift
[247/280] Compiling MacroToolkit LiteralProtocol.swift
[248/280] Compiling MacroToolkit OptionalType.swift
[249/280] Compiling MacroToolkit PackExpansionType.swift
[250/280] Compiling MacroToolkit PackReferenceType.swift
[251/280] Compiling MacroToolkit RegexLiteral.swift
[252/280] Compiling MacroToolkit EnumCaseValue.swift
[253/280] Compiling MacroToolkit Expr.swift
[254/280] Compiling MacroToolkit ExprProtocol.swift
[255/280] Compiling MacroToolkit FloatLiteral.swift
[256/280] Compiling MacroToolkit Function.swift
[257/280] Compiling MacroToolkit Diagnostics.swift
[258/280] Compiling MacroToolkit DictionaryType.swift
[259/280] Compiling MacroToolkit Enum.swift
[260/280] Compiling MacroToolkit EnumCase.swift
[261/280] Compiling MacroToolkit EnumCaseAssociatedValueParameter.swift
[262/280] Compiling MacroToolkit Struct.swift
[263/280] Compiling MacroToolkit SuppressedType.swift
[264/280] Compiling MacroToolkit SwiftSyntax+Extensions.swift
[265/280] Compiling MacroToolkit TupleType.swift
[266/280] Compiling MacroToolkit CompositionType.swift
[267/280] Compiling MacroToolkit ConditionalCompilationBlock.swift
[268/280] Compiling MacroToolkit Decl.swift
[269/280] Compiling MacroToolkit DeclGroup.swift
[270/280] Compiling MacroToolkit Destructuring.swift
[271/280] Compiling MacroToolkit Type.swift
[272/280] Compiling MacroToolkit TypeProtocol.swift
[273/280] Compiling MacroToolkit Variable.swift
[274/280] Compiling MacroToolkit VariableBinding.swift
[275/284] Compiling InterceptionMacrosPlugin Plugin.swift
[276/284] Compiling InterceptionMacrosPlugin PropertySelectorMacro.swift
[277/284] Emitting module InterceptionMacrosPlugin
[278/284] Compiling InterceptionMacrosPlugin MethodSelectorMacro.swift
[278/284] Write Objects.LinkFileList
[279/284] Linking InterceptionMacrosPlugin
[281/286] Emitting module _InterceptionMacros
[282/286] Compiling _InterceptionMacros Macros.swift
[282/286] Write Objects.LinkFileList
[283/286] Archiving lib_InterceptionMacros.a
[285/288] Compiling InterceptionMacros Exports.swift
[286/288] Emitting module InterceptionMacros
[286/288] Write Objects.LinkFileList
/Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'Exports.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Interception.build/Exports.swift.o(Exports.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/InterceptionMacros.build/Exports.swift.o(Exports.swift.o)'
/Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: warning duplicate member name 'Exports.swift.o' from '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/InterceptionMacros.build/Exports.swift.o(Exports.swift.o)' and '/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/_InterceptionUtils.build/Exports.swift.o(Exports.swift.o)'
[287/288] Archiving libInterceptionMacros.a
Build complete! (71.62s)
Fetching https://github.com/pointfreeco/swift-macro-testing.git
Fetching https://github.com/stackotter/swift-macro-toolkit.git
Fetching https://github.com/apple/swift-syntax.git
Fetching https://github.com/pointfreeco/swift-snapshot-testing
[1/417] Fetching swift-macro-testing
[106/1198] Fetching swift-macro-testing, swift-macro-toolkit
[856/12447] Fetching swift-macro-testing, swift-macro-toolkit, swift-snapshot-testing
[1762/73333] Fetching swift-macro-testing, swift-macro-toolkit, swift-snapshot-testing, swift-syntax
Fetched https://github.com/pointfreeco/swift-macro-testing.git from cache (3.38s)
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (3.38s)
Fetched https://github.com/stackotter/swift-macro-toolkit.git from cache (3.38s)
Fetched https://github.com/apple/swift-syntax.git from cache (3.38s)
Computing version for https://github.com/pointfreeco/swift-macro-testing.git
Computed https://github.com/pointfreeco/swift-macro-testing.git at 0.2.2 (0.53s)
Computing version for https://github.com/stackotter/swift-macro-toolkit.git
Computed https://github.com/stackotter/swift-macro-toolkit.git at 0.3.1 (0.54s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.15.2 (0.99s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 509.0.0 (0.82s)
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 509.0.0
Creating working copy for https://github.com/pointfreeco/swift-macro-testing.git
Working copy of https://github.com/pointfreeco/swift-macro-testing.git resolved at 0.2.2
Creating working copy for https://github.com/stackotter/swift-macro-toolkit.git
Working copy of https://github.com/stackotter/swift-macro-toolkit.git resolved at 0.3.1
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.15.2
Build complete.
{
"dependencies" : [
{
"identity" : "swift-macro-toolkit",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.0",
"upper_bound" : "0.4.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/stackotter/swift-macro-toolkit.git"
},
{
"identity" : "swift-macro-testing",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.2",
"upper_bound" : "0.3.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-macro-testing.git"
}
],
"manifest_display_name" : "swift-interception",
"name" : "swift-interception",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "_InterceptionCustomSelectors",
"targets" : [
"_InterceptionCustomSelectors"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "_InterceptionMacros",
"targets" : [
"_InterceptionMacros"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "_InterceptionUtils",
"targets" : [
"_InterceptionUtils"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "Interception",
"targets" : [
"Interception"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "InterceptionMacros",
"targets" : [
"InterceptionMacros"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "InterceptionMacrosPlugin",
"targets" : [
"InterceptionMacrosPlugin"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "_InterceptionUtilsObjc",
"module_type" : "ClangTarget",
"name" : "_InterceptionUtilsObjc",
"path" : "Sources/_InterceptionUtilsObjc",
"product_memberships" : [
"_InterceptionUtils",
"Interception",
"InterceptionMacros"
],
"sources" : [
"ObjcRuntimeAliases.m"
],
"type" : "library"
},
{
"c99name" : "_InterceptionUtils",
"module_type" : "SwiftTarget",
"name" : "_InterceptionUtils",
"path" : "Sources/_InterceptionUtils",
"product_memberships" : [
"_InterceptionUtils",
"Interception",
"InterceptionMacros"
],
"sources" : [
"Exports.swift",
"NSObject+Association.swift",
"NSObject+ObjCRuntime.swift",
"ObjC+Constants.swift",
"ObjC+Messages.swift",
"ObjC+Runtime.swift",
"ObjC+RuntimeSubclassing.swift",
"ObjC+Selector.swift",
"Synchronizing.swift"
],
"target_dependencies" : [
"_InterceptionUtilsObjc"
],
"type" : "library"
},
{
"c99name" : "_InterceptionMacros",
"module_type" : "SwiftTarget",
"name" : "_InterceptionMacros",
"path" : "Sources/_InterceptionMacros",
"product_memberships" : [
"_InterceptionMacros",
"InterceptionMacros"
],
"sources" : [
"Macros.swift"
],
"target_dependencies" : [
"InterceptionMacrosPlugin",
"_InterceptionCustomSelectors"
],
"type" : "library"
},
{
"c99name" : "_InterceptionCustomSelectors",
"module_type" : "SwiftTarget",
"name" : "_InterceptionCustomSelectors",
"path" : "Sources/_InterceptionCustomSelectors",
"product_memberships" : [
"_InterceptionCustomSelectors",
"_InterceptionMacros",
"Interception",
"InterceptionMacros"
],
"sources" : [
"KeyPath+.swift",
"_MethodSelector.swift",
"_MutablePropertySelector.swift",
"_PropertySelector.swift"
],
"type" : "library"
},
{
"c99name" : "InterceptionTests",
"module_type" : "SwiftTarget",
"name" : "InterceptionTests",
"path" : "Tests/InterceptionTests",
"sources" : [
"InterceptionTests.swift"
],
"target_dependencies" : [
"Interception"
],
"type" : "test"
},
{
"c99name" : "InterceptionMacrosTests",
"module_type" : "SwiftTarget",
"name" : "InterceptionMacrosTests",
"path" : "Tests/InterceptionMacrosTests",
"sources" : [
"InterceptionMacrosTests.swift"
],
"target_dependencies" : [
"InterceptionMacros"
],
"type" : "test"
},
{
"c99name" : "InterceptionMacrosPluginTests",
"module_type" : "SwiftTarget",
"name" : "InterceptionMacrosPluginTests",
"path" : "Tests/InterceptionMacrosPluginTests",
"product_dependencies" : [
"MacroTesting"
],
"sources" : [
"MethodSelectorTests.swift",
"PropertySelectorTests.swift"
],
"target_dependencies" : [
"InterceptionMacrosPlugin"
],
"type" : "test"
},
{
"c99name" : "InterceptionMacrosPlugin",
"module_type" : "SwiftTarget",
"name" : "InterceptionMacrosPlugin",
"path" : "Sources/InterceptionMacrosPlugin",
"product_dependencies" : [
"MacroToolkit"
],
"product_memberships" : [
"_InterceptionMacros",
"InterceptionMacros",
"InterceptionMacrosPlugin"
],
"sources" : [
"Macros/MethodSelectorMacro.swift",
"Macros/PropertySelectorMacro.swift",
"Plugin.swift"
],
"type" : "macro"
},
{
"c99name" : "InterceptionMacros",
"module_type" : "SwiftTarget",
"name" : "InterceptionMacros",
"path" : "Sources/InterceptionMacros",
"product_memberships" : [
"InterceptionMacros"
],
"sources" : [
"Exports.swift"
],
"target_dependencies" : [
"_InterceptionMacros",
"Interception"
],
"type" : "library"
},
{
"c99name" : "Interception",
"module_type" : "SwiftTarget",
"name" : "Interception",
"path" : "Sources/Interception",
"product_memberships" : [
"Interception",
"InterceptionMacros"
],
"sources" : [
"Exports.swift",
"InterceptionResult.swift",
"NSObject+Interception.swift"
],
"target_dependencies" : [
"_InterceptionCustomSelectors",
"_InterceptionUtils"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.