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

Swift 6 data race errors: 6

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/Ryu0118/MagicIB.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Ryu0118/MagicIB
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d8933e1 clean: fixed file header and remove unnecessary import
Cloned https://github.com/Ryu0118/MagicIB.git
Revision (git rev-parse @):
d8933e1511cd47585243f08f2d89e93a5cacb95a
SUCCESS checkout https://github.com/Ryu0118/MagicIB.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/Ryu0118/MagicIB.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/9] Write sources
[3/9] Write MagicIBCLI-entitlement.plist
[5/9] Write swift-version-6F35C1178C84523A.txt
[7/108] Compiling ArgumentParserToolInfo ToolInfo.swift
[8/108] Emitting module ArgumentParserToolInfo
[9/145] Compiling ArgumentParser OptionGroup.swift
[10/145] Compiling ArgumentParser AsyncParsableCommand.swift
[11/145] Compiling ArgumentParser CommandConfiguration.swift
[12/145] Compiling ArgumentParser EnumerableFlag.swift
[13/148] Compiling ArgumentParser Argument.swift
[14/148] Compiling ArgumentParser ArgumentHelp.swift
[15/148] Compiling ArgumentParser ArgumentVisibility.swift
[16/148] Compiling ArgumentParser CompletionKind.swift
[17/148] Compiling ArgumentParser SequenceExtensions.swift
[18/148] Compiling ArgumentParser StringExtensions.swift
[19/148] Compiling ArgumentParser Tree.swift
[20/148] Compiling ArgumentParser Errors.swift
[21/148] Compiling ArgumentParser Flag.swift
[22/148] Compiling ArgumentParser NameSpecification.swift
[23/148] Compiling ArgumentParser Option.swift
[24/148] Compiling ArgumentParser BashCompletionsGenerator.swift
[25/148] Compiling ArgumentParser CompletionsGenerator.swift
[26/148] Compiling ArgumentParser FishCompletionsGenerator.swift
[27/148] Compiling ArgumentParser ZshCompletionsGenerator.swift
[28/148] Compiling ArgumentParser ExpressibleByArgument.swift
[29/148] Compiling ArgumentParser ParsableArguments.swift
[30/148] Compiling ArgumentParser ParsableArgumentsValidation.swift
[31/148] Compiling ArgumentParser ParsableCommand.swift
[32/148] Emitting module ArgumentParser
[33/148] Compiling ArgumentParser ArgumentDecoder.swift
[34/148] Compiling ArgumentParser ArgumentDefinition.swift
[35/148] Compiling ArgumentParser ArgumentSet.swift
[36/148] Compiling ArgumentParser CommandParser.swift
[37/148] Compiling ArgumentParser UsageGenerator.swift
[38/148] Compiling ArgumentParser CollectionExtensions.swift
[47/158] Compiling MagicIBCore IBCollectionVIew.swift
[48/158] Compiling MagicIBCore IBCollectionViewCell.swift
[49/158] Compiling MagicIBCore IBImageView.swift
[50/158] Compiling MagicIBCore IBLabel.swift
[51/158] Compiling MagicIBCore IBMapView.swift
[52/158] Compiling MagicIBCore IBPageControl.swift
[53/158] Compiling MagicIBCore IBPickerView.swift
[54/158] Compiling MagicIBCore IBProgressView.swift
[55/158] Compiling MagicIBCore IBScrollView.swift
[56/158] Compiling MagicIBCore IBSearchBar.swift
[57/158] Compiling MagicIBCore IBSegmentedControl.swift
[58/158] Compiling MagicIBCore IBSlider.swift
[59/158] Compiling MagicIBCore IBStackView.swift
[60/158] Compiling MagicIBCore IBStepper.swift
[61/158] Compiling MagicIBCore IBSwitch.swift
[62/158] Compiling MagicIBCore IBTableView.swift
[63/158] Compiling MagicIBCore IBTableViewCell.swift
[64/158] Compiling MagicIBCore IBTextField.swift
[65/158] Compiling MagicIBCore IBTextView.swift
[66/158] Compiling MagicIBCore IBView.swift
[67/158] Compiling MagicIBCore IBTextField+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[68/158] Compiling MagicIBCore IBTextView+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[69/158] Compiling MagicIBCore IBView+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[70/158] Compiling MagicIBCore IBVisualEffectView+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[71/158] Compiling MagicIBCore IBWebView+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[72/158] Compiling MagicIBCore IBWebViewConfiguration+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[73/158] Compiling MagicIBCore IBWebViewPreferences+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[74/158] Compiling MagicIBCore IBPropertyMapper+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[75/158] Compiling MagicIBCore Line.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[76/158] Compiling MagicIBCore LongCharactersContainable.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[77/158] Compiling MagicIBCore NonCustomizable.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[78/158] Compiling ArgumentParser ParserError.swift
[79/158] Compiling ArgumentParser SplitArguments.swift
[80/158] Compiling ArgumentParser DumpHelpGenerator.swift
[81/158] Compiling ArgumentParser HelpCommand.swift
[82/158] Compiling ArgumentParser HelpGenerator.swift
[83/158] Compiling ArgumentParser MessageInfo.swift
[86/158] Compiling ArgumentParser InputOrigin.swift
[87/158] Compiling ArgumentParser Name.swift
[88/158] Compiling ArgumentParser Parsed.swift
[89/158] Compiling ArgumentParser ParsedValues.swift
[90/158] Compiling MagicIBCore IBSize.swift
[91/158] Compiling MagicIBCore IBCompatibleObject.swift
[92/158] Compiling MagicIBCore IBCompatibleViewType.swift
[93/158] Compiling MagicIBCore IBGestureType.swift
[94/158] Compiling MagicIBCore IBView+mediator.swift
[95/158] Compiling MagicIBCore IBViewControllerDependencies.swift
[96/158] Compiling MagicIBCore IBViewDependencies.swift
[97/158] Compiling MagicIBCore IBBackgroundConfiguration.swift
[98/158] Compiling MagicIBCore IBBlurEffect.swift
[99/158] Compiling MagicIBCore IBButtonConfiguration.swift
[100/158] Compiling MagicIBCore IBCollectionViewFlowLayout.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
[108/158] Compiling MagicIBCore IBBackgroundConfiguration+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
[109/158] Compiling MagicIBCore IBBlurEffect+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
[110/158] Compiling MagicIBCore IBButtonConfiguration+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
[111/158] Compiling MagicIBCore IBCollectionViewFlowLayout+generator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
[112/158] Compiling MagicIBCore SwiftGeneratable.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[113/158] Compiling MagicIBCore SwiftGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[114/158] Compiling MagicIBCore ZeroDiscriminable.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[115/158] Compiling MagicIBCore IBAttributedString.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[116/158] Compiling MagicIBCore IBEdgeInsets.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[117/158] Compiling MagicIBCore IBGestureRecognizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[118/158] Compiling MagicIBCore IBLayoutConstraint.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[119/158] Compiling MagicIBCore IBLayoutGuide.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[120/158] Compiling MagicIBCore IBOptionSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[121/158] Compiling MagicIBCore IBParagraphStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[122/158] Compiling MagicIBCore IBRect.swift
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
[123/158] Emitting module MagicIBCore
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBEdgeInsets: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBEdgeInsets(attributes: ["minY": "0.0", "maxY": "0.0", "minX": "0.0", "maxX": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBEdgeInsets?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBEdgeInsets.swift:11:8: note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBEdgeInsets: IBCompatibleObject {
   |        `- note: consider making struct 'IBEdgeInsets' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBRect: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBRect(attributes: ["x" : "0.0", "y": "0.0", "width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBRect?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBRect.swift:11:8: note: consider making struct 'IBRect' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBRect: IBCompatibleObject {
   |        `- note: consider making struct 'IBRect' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] =
13 |     [
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift:12:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
10 | extension IBSize: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |
12 |     static let zero = IBSize(attributes: ["width": "0.0", "height": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBSize?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |
14 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/Foundation/IBSize.swift:11:8: note: consider making struct 'IBSize' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBSize: IBCompatibleObject {
   |        `- note: consider making struct 'IBSize' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "width", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:13:16: warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
 13 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
    |                |- warning: static property 'newLine' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'newLine' 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 |
 15 |     var variableName: String
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift:11:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | extension IBOffset: SwiftGeneratable, NonCustomizable, ZeroDiscriminable {
11 |     static let zero = IBOffset(attributes: ["horizontal": "0.0", "width": "0.0"])
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'IBOffset?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'zero' 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 |     var isZero: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/IBCompatibleObjects/UIKit/IBOffset.swift:11:8: note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
 9 |
10 | @dynamicMemberLookup
11 | struct IBOffset: IBCompatibleObject {
   |        `- note: consider making struct 'IBOffset' conform to the 'Sendable' protocol
12 |     let properties: [IBPropertyMapper] = [
13 |         .init(propertyName: "horizontal", type: .number),
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Extensions/String+MagicIB.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
12 |     func insert(first: String = "", last: String = "") -> String {
/Users/admin/builder/spi-builder-workspace/Sources/MagicIBCore/Generator/Line.swift:12:16: warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | class Line: NSObject {
    |       `- note: class 'Line' does not conform to the 'Sendable' protocol
 11 |
 12 |     static let end = Line(relatedVariableName: .end, custom: "}")
    |                |- warning: static property 'end' is not concurrency-safe because non-'Sendable' type 'Line' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'end' 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 |     static let newLine = Line(relatedVariableName: .newLine, custom: "")
 14 |
[146/158] Compiling MagicIBCore IBVisualEffectView.swift
[147/158] Compiling MagicIBCore IBWebView.swift
[148/158] Compiling MagicIBCore IBWebViewConfiguration.swift
[149/158] Compiling MagicIBCore IBWebViewPreferences.swift
[150/158] Compiling MagicIBCore IBEnumMapper.swift
[151/158] Compiling MagicIBCore IBFunctionMapper.swift
[152/158] Compiling MagicIBCore IBInspectableType.swift
[153/158] Compiling MagicIBCore IBParser.swift
[154/158] Compiling MagicIBCore IBPropertyMapper.swift
[155/158] Compiling MagicIBCore SFSymbols.swift
[156/161] Compiling MagicIBCLI IBFileSearcher.swift
[157/161] Emitting module MagicIBCLI
[158/161] Compiling MagicIBCLI MagicIB.swift
[158/161] Write Objects.LinkFileList
[159/161] Linking MagicIBCLI
[160/161] Applying MagicIBCLI
Build complete! (27.97s)
Fetching https://github.com/apple/swift-argument-parser
[1/11679] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.89s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.1.3 (0.72s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.1.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "MagicIB",
  "name" : "MagicIB",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "macos",
      "version" : "10.12"
    }
  ],
  "products" : [
    {
      "name" : "MagicIBCLI",
      "targets" : [
        "MagicIBCLI"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MagicIBTests",
      "module_type" : "SwiftTarget",
      "name" : "MagicIBTests",
      "path" : "Tests/MagicIBTests",
      "sources" : [
        "MagicIBTests.swift"
      ],
      "target_dependencies" : [
        "MagicIBCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MagicIBCore",
      "module_type" : "SwiftTarget",
      "name" : "MagicIBCore",
      "path" : "Sources/MagicIBCore",
      "product_memberships" : [
        "MagicIBCLI"
      ],
      "sources" : [
        "Extensions/Array+IBPropertyMapper.swift",
        "Extensions/Array+IBView.swift",
        "Extensions/Array+Line.swift",
        "Extensions/Array+String.swift",
        "Extensions/Array+safe.swift",
        "Extensions/String+Line.swift",
        "Extensions/String+MagicIB.swift",
        "Extensions/String+escapeSequence.swift",
        "Generator/ArrayBuilder.swift",
        "Generator/IBCompatibleObject+generator.swift",
        "Generator/IBCompatibleObjects+generator/Foundation/IBAttributedString+generator.swift",
        "Generator/IBCompatibleObjects+generator/Foundation/IBEdgeInsets+generator.swift",
        "Generator/IBCompatibleObjects+generator/Foundation/IBGestureRecognizer+generator.swift",
        "Generator/IBCompatibleObjects+generator/Foundation/IBLayoutConstraint+generator.swift",
        "Generator/IBCompatibleObjects+generator/Foundation/IBOptionSet+generator.swift",
        "Generator/IBCompatibleObjects+generator/Foundation/IBParagraphStyle+generator.swift",
        "Generator/IBCompatibleObjects+generator/Foundation/IBRect+generator.swift",
        "Generator/IBCompatibleObjects+generator/Foundation/IBSize+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBBackgroundConfiguration+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBBlurEffect+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBButtonConfiguration+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBCollectionViewFlowLayout+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBColor+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBFont+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBImage+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBImageSymbolConfiguration+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBOffset+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBVibrancyEffect+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBButton+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBCollectionView+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBLabel+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBSearchBar+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBTableView+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBTextField+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBTextView+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBView+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBVisualEffectView+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBViews/IBWebView+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBWebViewConfiguration+generator.swift",
        "Generator/IBCompatibleObjects+generator/UIKit/IBWebViewPreferences+generator.swift",
        "Generator/IBPropertyMapper+generator.swift",
        "Generator/Line.swift",
        "Generator/LongCharactersContainable.swift",
        "Generator/NonCustomizable.swift",
        "Generator/SwiftGeneratable.swift",
        "Generator/SwiftGenerator.swift",
        "Generator/ZeroDiscriminable.swift",
        "IBCompatibleObjects/Foundation/IBAttributedString.swift",
        "IBCompatibleObjects/Foundation/IBEdgeInsets.swift",
        "IBCompatibleObjects/Foundation/IBGestureRecognizer.swift",
        "IBCompatibleObjects/Foundation/IBLayoutConstraint.swift",
        "IBCompatibleObjects/Foundation/IBLayoutGuide.swift",
        "IBCompatibleObjects/Foundation/IBOptionSet.swift",
        "IBCompatibleObjects/Foundation/IBParagraphStyle.swift",
        "IBCompatibleObjects/Foundation/IBRect.swift",
        "IBCompatibleObjects/Foundation/IBSize.swift",
        "IBCompatibleObjects/IBCompatibleObject.swift",
        "IBCompatibleObjects/IBCompatibleViewType.swift",
        "IBCompatibleObjects/IBGestureType.swift",
        "IBCompatibleObjects/IBView+mediator.swift",
        "IBCompatibleObjects/IBViewControllerDependencies.swift",
        "IBCompatibleObjects/IBViewDependencies.swift",
        "IBCompatibleObjects/UIKit/IBBackgroundConfiguration.swift",
        "IBCompatibleObjects/UIKit/IBBlurEffect.swift",
        "IBCompatibleObjects/UIKit/IBButtonConfiguration.swift",
        "IBCompatibleObjects/UIKit/IBCollectionViewFlowLayout.swift",
        "IBCompatibleObjects/UIKit/IBColor.swift",
        "IBCompatibleObjects/UIKit/IBFont.swift",
        "IBCompatibleObjects/UIKit/IBImage.swift",
        "IBCompatibleObjects/UIKit/IBImageSymbolConfiguration.swift",
        "IBCompatibleObjects/UIKit/IBOffset.swift",
        "IBCompatibleObjects/UIKit/IBVibrancyEffect.swift",
        "IBCompatibleObjects/UIKit/IBViewControllers/IBCompatibleViewController.swift",
        "IBCompatibleObjects/UIKit/IBViewControllers/IBViewController.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBActivityIndicatorView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBButton.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBCollectionVIew.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBCollectionViewCell.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBImageView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBLabel.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBMapView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBPageControl.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBPickerView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBProgressView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBScrollView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBSearchBar.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBSegmentedControl.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBSlider.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBStackView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBStepper.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBSwitch.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBTableView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBTableViewCell.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBTextField.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBTextView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBVisualEffectView.swift",
        "IBCompatibleObjects/UIKit/IBViews/IBWebView.swift",
        "IBCompatibleObjects/UIKit/IBWebViewConfiguration.swift",
        "IBCompatibleObjects/UIKit/IBWebViewPreferences.swift",
        "IBEnumMapper.swift",
        "IBFunctionMapper.swift",
        "IBInspectableType.swift",
        "IBParser.swift",
        "IBPropertyMapper.swift",
        "Resources/SFSymbols.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MagicIBCLI",
      "module_type" : "SwiftTarget",
      "name" : "MagicIBCLI",
      "path" : "Sources/MagicIBCLI",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "MagicIBCLI"
      ],
      "sources" : [
        "IBFileSearcher.swift",
        "MagicIB.swift"
      ],
      "target_dependencies" : [
        "MagicIBCore"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.6"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.