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

Swift 6 data race errors: 1

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/phimage/MomXML.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/phimage/MomXML
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at f0a38f0 Start implementation of composite attributes
Cloned https://github.com/phimage/MomXML.git
Revision (git rev-parse @):
f0a38f0745729d38416f6c5c46dbd39aa3f5868c
SUCCESS checkout https://github.com/phimage/MomXML.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/phimage/MomXML.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/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/7] Compiling SWXMLHash shim.swift
[5/7] Compiling SWXMLHash XMLIndexer+XMLIndexerDeserializable.swift
[6/7] Compiling SWXMLHash SWXMLHash.swift
[7/7] Emitting module SWXMLHash
[8/68] Compiling MomXML MomAttribute+XMLConvertible.swift
[9/68] Compiling MomXML MomConfiguration+XMLConvertible.swift
[10/68] Compiling MomXML MomElement+XMLConvertible.swift
[11/68] Compiling MomXML MomEntity+XMLConvertible.swift
[12/68] Compiling MomXML MomFetchIndex+XMLConvertible.swift
[13/68] Compiling MomXML MomFetchedProperty+XMLConvertible.swift
[14/74] Compiling MomXML MomModel+XMLConvertible.swift
[15/74] Compiling MomXML MomRelationship+XMLConvertible.swift
[16/74] Compiling MomXML MomUniquenessConstraints+XMLConvertible.swift
[17/74] Compiling MomXML MomUserInfo+XMLConvertible.swift
[18/74] Compiling MomXML MomXML+XMLConvertible.swift
[19/74] Compiling MomXML XMLConvertible.swift
[20/74] Compiling MomXML MomFetchedProperty+CoreData.swift
[21/74] Compiling MomXML MomModel+CoreData.swift
[22/74] Compiling MomXML MomRelationship+CoreData.swift
[23/74] Compiling MomXML MomUniquenessConstraints+CoreData.swift
[24/74] Compiling MomXML MomUserInfo+CoreData.swift
[25/74] Compiling MomXML MomXml+CoreData.swift
[26/74] Emitting module MomXML
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[27/74] Compiling MomXML MomAttribute+Equatable.swift
[28/74] Compiling MomXML MomCompositeAttribute+Equatable.swift
[29/74] Compiling MomXML MomConfiguration+Equatable.swift
[30/74] Compiling MomXML MomElement+Equatable.swift
[31/74] Compiling MomXML MomEntity+Equatable.swift
[32/74] Compiling MomXML MomFetchIndex+Equatable.swift
[33/74] Compiling MomXML MomFetchedProperty+Equatable.swift
[34/74] Compiling MomXML MomUserInfo.swift
[35/74] Compiling MomXML MomXML.swift
[36/74] Compiling MomXML MomAttribute+CoreData.swift
[37/74] Compiling MomXML MomCompositeAttribute+CoreData.swift
[38/74] Compiling MomXML MomEntity+CoreData.swift
[39/74] Compiling MomXML MomFetchIndex+CoreData.swift
[40/74] Compiling MomXML MomConfiguration+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[41/74] Compiling MomXML MomElement+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[42/74] Compiling MomXML MomEntity+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[43/74] Compiling MomXML MomFetchIndex+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[44/74] Compiling MomXML MomFetchedProperty+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[45/74] Compiling MomXML MomModel+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[46/74] Compiling MomXML MomRelationship+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[47/74] Compiling MomXML MomModel+Equatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromCoreData/NSCompositeAttributeDescription+MomXML.swift:17:54: warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
15 |     public var momComposite: MomCompositeAttribute {
16 |         var mom = MomCompositeAttribute(name: self.name)
17 |         mom.elements = self.elements.compactMap({ $0 as? NSAttributeDescription}).map({ $0.mom })
   |                                                      `- warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
18 |
19 |         // let momAttr = self.mom : TODO parse and set in mom composite?
[48/74] Compiling MomXML MomRelationship+Equatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromCoreData/NSCompositeAttributeDescription+MomXML.swift:17:54: warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
15 |     public var momComposite: MomCompositeAttribute {
16 |         var mom = MomCompositeAttribute(name: self.name)
17 |         mom.elements = self.elements.compactMap({ $0 as? NSAttributeDescription}).map({ $0.mom })
   |                                                      `- warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
18 |
19 |         // let momAttr = self.mom : TODO parse and set in mom composite?
[49/74] Compiling MomXML MomUniquenessConstraints+Equatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromCoreData/NSCompositeAttributeDescription+MomXML.swift:17:54: warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
15 |     public var momComposite: MomCompositeAttribute {
16 |         var mom = MomCompositeAttribute(name: self.name)
17 |         mom.elements = self.elements.compactMap({ $0 as? NSAttributeDescription}).map({ $0.mom })
   |                                                      `- warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
18 |
19 |         // let momAttr = self.mom : TODO parse and set in mom composite?
[50/74] Compiling MomXML MomUserInfo+Equatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromCoreData/NSCompositeAttributeDescription+MomXML.swift:17:54: warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
15 |     public var momComposite: MomCompositeAttribute {
16 |         var mom = MomCompositeAttribute(name: self.name)
17 |         mom.elements = self.elements.compactMap({ $0 as? NSAttributeDescription}).map({ $0.mom })
   |                                                      `- warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
18 |
19 |         // let momAttr = self.mom : TODO parse and set in mom composite?
[51/74] Compiling MomXML MomXML+Equatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromCoreData/NSCompositeAttributeDescription+MomXML.swift:17:54: warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
15 |     public var momComposite: MomCompositeAttribute {
16 |         var mom = MomCompositeAttribute(name: self.name)
17 |         mom.elements = self.elements.compactMap({ $0 as? NSAttributeDescription}).map({ $0.mom })
   |                                                      `- warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
18 |
19 |         // let momAttr = self.mom : TODO parse and set in mom composite?
[52/74] Compiling MomXML NSAttributeDescription+MomXML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromCoreData/NSCompositeAttributeDescription+MomXML.swift:17:54: warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
15 |     public var momComposite: MomCompositeAttribute {
16 |         var mom = MomCompositeAttribute(name: self.name)
17 |         mom.elements = self.elements.compactMap({ $0 as? NSAttributeDescription}).map({ $0.mom })
   |                                                      `- warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
18 |
19 |         // let momAttr = self.mom : TODO parse and set in mom composite?
[53/74] Compiling MomXML NSCompositeAttributeDescription+MomXML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromCoreData/NSCompositeAttributeDescription+MomXML.swift:17:54: warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
15 |     public var momComposite: MomCompositeAttribute {
16 |         var mom = MomCompositeAttribute(name: self.name)
17 |         mom.elements = self.elements.compactMap({ $0 as? NSAttributeDescription}).map({ $0.mom })
   |                                                      `- warning: conditional cast from 'NSAttributeDescription' to 'NSAttributeDescription' always succeeds
18 |
19 |         // let momAttr = self.mom : TODO parse and set in mom composite?
[54/74] Compiling MomXML MomElement.swift
[55/74] Compiling MomXML MomEntity.swift
[56/74] Compiling MomXML MomFetchIndex.swift
[57/74] Compiling MomXML MomFetchedProperty.swift
[58/74] Compiling MomXML MomModel.swift
[59/74] Compiling MomXML MomRelationship.swift
[60/74] Compiling MomXML MomUniquenessConstraints.swift
[61/74] Compiling MomXML MomUniquenessConstraints+XML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[62/74] Compiling MomXML MomUserInfo+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[63/74] Compiling MomXML MomXML+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[64/74] Compiling MomXML XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[65/74] Compiling MomXML MomAttribute.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[66/74] Compiling MomXML MomCompositeAttribute.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[67/74] Compiling MomXML MomConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[68/74] Compiling MomXML NSEntityDescription+MomXML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[69/74] Compiling MomXML NSFetchIndexPropertyDescription+MomXML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[70/74] Compiling MomXML NSFetchedPropertyDescription+MomXML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[71/74] Compiling MomXML NSManagedObjectModel+MomXML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[72/74] Compiling MomXML NSRelationshipDescription+MomXML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[73/74] Compiling MomXML MomAttribute+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
[74/74] Compiling MomXML MomCompositeAttribute+XMLObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FromXML/MomXML+XMLObject.swift:26:23: warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 | extension MomXML {
26 |     public static var orphanCallback: ((XML, Any) -> Void)?
   |                       |- warning: static property 'orphanCallback' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'orphanCallback' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'orphanCallback' 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
27 | }
28 |
Build complete! (24.61s)
Fetching https://github.com/drmohundro/SWXMLHash.git
[1/2770] Fetching swxmlhash
Fetched https://github.com/drmohundro/SWXMLHash.git from cache (1.14s)
Computing version for https://github.com/drmohundro/SWXMLHash.git
Computed https://github.com/drmohundro/SWXMLHash.git at 5.0.1 (2.66s)
Creating working copy for https://github.com/drmohundro/SWXMLHash.git
Working copy of https://github.com/drmohundro/SWXMLHash.git resolved at 5.0.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swxmlhash",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.0.1",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/drmohundro/SWXMLHash.git"
    }
  ],
  "manifest_display_name" : "MomXML",
  "name" : "MomXML",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "MomXML",
      "targets" : [
        "MomXML"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MomXMLTests",
      "module_type" : "SwiftTarget",
      "name" : "MomXMLTests",
      "path" : "Tests",
      "sources" : [
        "MomXMLTests.swift"
      ],
      "target_dependencies" : [
        "MomXML"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MomXML",
      "module_type" : "SwiftTarget",
      "name" : "MomXML",
      "path" : "Sources",
      "product_dependencies" : [
        "SWXMLHash"
      ],
      "product_memberships" : [
        "MomXML"
      ],
      "sources" : [
        "Equatable/MomAttribute+Equatable.swift",
        "Equatable/MomCompositeAttribute+Equatable.swift",
        "Equatable/MomConfiguration+Equatable.swift",
        "Equatable/MomElement+Equatable.swift",
        "Equatable/MomEntity+Equatable.swift",
        "Equatable/MomFetchIndex+Equatable.swift",
        "Equatable/MomFetchedProperty+Equatable.swift",
        "Equatable/MomModel+Equatable.swift",
        "Equatable/MomRelationship+Equatable.swift",
        "Equatable/MomUniquenessConstraints+Equatable.swift",
        "Equatable/MomUserInfo+Equatable.swift",
        "Equatable/MomXML+Equatable.swift",
        "FromCoreData/NSAttributeDescription+MomXML.swift",
        "FromCoreData/NSCompositeAttributeDescription+MomXML.swift",
        "FromCoreData/NSEntityDescription+MomXML.swift",
        "FromCoreData/NSFetchIndexPropertyDescription+MomXML.swift",
        "FromCoreData/NSFetchedPropertyDescription+MomXML.swift",
        "FromCoreData/NSManagedObjectModel+MomXML.swift",
        "FromCoreData/NSRelationshipDescription+MomXML.swift",
        "FromXML/MomAttribute+XMLObject.swift",
        "FromXML/MomCompositeAttribute+XMLObject.swift",
        "FromXML/MomConfiguration+XMLObject.swift",
        "FromXML/MomElement+XMLObject.swift",
        "FromXML/MomEntity+XMLObject.swift",
        "FromXML/MomFetchIndex+XMLObject.swift",
        "FromXML/MomFetchedProperty+XMLObject.swift",
        "FromXML/MomModel+XMLObject.swift",
        "FromXML/MomRelationship+XMLObject.swift",
        "FromXML/MomUniquenessConstraints+XML.swift",
        "FromXML/MomUserInfo+XMLObject.swift",
        "FromXML/MomXML+XMLObject.swift",
        "FromXML/XMLObject.swift",
        "Model/MomAttribute.swift",
        "Model/MomCompositeAttribute.swift",
        "Model/MomConfiguration.swift",
        "Model/MomElement.swift",
        "Model/MomEntity.swift",
        "Model/MomFetchIndex.swift",
        "Model/MomFetchedProperty.swift",
        "Model/MomModel.swift",
        "Model/MomRelationship.swift",
        "Model/MomUniquenessConstraints.swift",
        "Model/MomUserInfo.swift",
        "Model/MomXML.swift",
        "ToCoreData/MomAttribute+CoreData.swift",
        "ToCoreData/MomCompositeAttribute+CoreData.swift",
        "ToCoreData/MomEntity+CoreData.swift",
        "ToCoreData/MomFetchIndex+CoreData.swift",
        "ToCoreData/MomFetchedProperty+CoreData.swift",
        "ToCoreData/MomModel+CoreData.swift",
        "ToCoreData/MomRelationship+CoreData.swift",
        "ToCoreData/MomUniquenessConstraints+CoreData.swift",
        "ToCoreData/MomUserInfo+CoreData.swift",
        "ToCoreData/MomXml+CoreData.swift",
        "ToXML/MomAttribute+XMLConvertible.swift",
        "ToXML/MomConfiguration+XMLConvertible.swift",
        "ToXML/MomElement+XMLConvertible.swift",
        "ToXML/MomEntity+XMLConvertible.swift",
        "ToXML/MomFetchIndex+XMLConvertible.swift",
        "ToXML/MomFetchedProperty+XMLConvertible.swift",
        "ToXML/MomModel+XMLConvertible.swift",
        "ToXML/MomRelationship+XMLConvertible.swift",
        "ToXML/MomUniquenessConstraints+XMLConvertible.swift",
        "ToXML/MomUserInfo+XMLConvertible.swift",
        "ToXML/MomXML+XMLConvertible.swift",
        "ToXML/XMLConvertible.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.