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, reference master (f0a38f), with Swift 6.0 for macOS (SPM) on 31 Oct 2024 22:44:13 UTC.

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.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
Fetching https://github.com/drmohundro/SWXMLHash.git
[1/2820] Fetching swxmlhash
Fetched https://github.com/drmohundro/SWXMLHash.git from cache (1.07s)
Computing version for https://github.com/drmohundro/SWXMLHash.git
Computed https://github.com/drmohundro/SWXMLHash.git at 5.0.1 (2.61s)
Creating working copy for https://github.com/drmohundro/SWXMLHash.git
Working copy of https://github.com/drmohundro/SWXMLHash.git resolved at 5.0.1
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "momxml",
      "name": "MomXML",
      "url": "https://github.com/phimage/MomXML.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/MomXML",
      "dependencies": [
        {
          "identity": "swxmlhash",
          "name": "SWXMLHash",
          "url": "https://github.com/drmohundro/SWXMLHash.git",
          "version": "5.0.2",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SWXMLHash",
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/phimage/MomXML.git
[1/606] Fetching momxml
Fetched https://github.com/phimage/MomXML.git from cache (0.81s)
Fetching https://github.com/drmohundro/SWXMLHash.git from cache
Fetched https://github.com/drmohundro/SWXMLHash.git from cache (0.45s)
Computing version for https://github.com/drmohundro/SWXMLHash.git
Computed https://github.com/drmohundro/SWXMLHash.git at 5.0.2 (0.95s)
Creating working copy for https://github.com/drmohundro/SWXMLHash.git
Working copy of https://github.com/drmohundro/SWXMLHash.git resolved at 5.0.2
Creating working copy for https://github.com/phimage/MomXML.git
Working copy of https://github.com/phimage/MomXML.git resolved at master (f0a38f0)
warning: '.resolve-product-dependencies': dependency 'momxml' is not used by any target
Found 1 product dependencies
  - SWXMLHash
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/phimage/MomXML.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun 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--7754E27361AE5C74.txt
[4/7] Compiling SWXMLHash shim.swift
[5/7] Compiling SWXMLHash XMLIndexer+XMLIndexerDeserializable.swift
[6/7] Emitting module SWXMLHash
[7/7] Compiling SWXMLHash SWXMLHash.swift
[8/68] 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 nonisolated 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 nonisolated 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 |
[9/74] Compiling MomXML MomElement.swift
[10/74] Compiling MomXML MomEntity.swift
[11/74] Compiling MomXML MomFetchIndex.swift
[12/74] Compiling MomXML MomFetchedProperty.swift
[13/74] Compiling MomXML MomModel.swift
[14/74] Compiling MomXML MomRelationship.swift
[15/74] Compiling MomXML MomUniquenessConstraints.swift
[16/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 nonisolated 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 nonisolated 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 |
[17/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 nonisolated 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 nonisolated 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 |
[18/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 nonisolated 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 nonisolated 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 |
[19/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 nonisolated 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 nonisolated 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 |
[20/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 nonisolated 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 nonisolated 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 |
[21/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 nonisolated 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 nonisolated 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 |
[22/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 nonisolated 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 nonisolated 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 |
[23/74] Compiling MomXML MomAttribute+XMLConvertible.swift
[24/74] Compiling MomXML MomConfiguration+XMLConvertible.swift
[25/74] Compiling MomXML MomElement+XMLConvertible.swift
[26/74] Compiling MomXML MomEntity+XMLConvertible.swift
[27/74] Compiling MomXML MomFetchIndex+XMLConvertible.swift
[28/74] Compiling MomXML MomFetchedProperty+XMLConvertible.swift
[29/74] Compiling MomXML MomAttribute+Equatable.swift
[30/74] Compiling MomXML MomCompositeAttribute+Equatable.swift
[31/74] Compiling MomXML MomConfiguration+Equatable.swift
[32/74] Compiling MomXML MomElement+Equatable.swift
[33/74] Compiling MomXML MomEntity+Equatable.swift
[34/74] Compiling MomXML MomFetchIndex+Equatable.swift
[35/74] Compiling MomXML MomFetchedProperty+Equatable.swift
[36/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 nonisolated 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 nonisolated 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 |
[37/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 nonisolated 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 nonisolated 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 |
[38/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 nonisolated 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 nonisolated 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 |
[39/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 nonisolated 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 nonisolated 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 |
[40/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 nonisolated 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 nonisolated 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 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 nonisolated 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 nonisolated 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 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 nonisolated 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 nonisolated 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 MomModel+XMLConvertible.swift
[44/74] Compiling MomXML MomRelationship+XMLConvertible.swift
[45/74] Compiling MomXML MomUniquenessConstraints+XMLConvertible.swift
[46/74] Compiling MomXML MomUserInfo+XMLConvertible.swift
[47/74] Compiling MomXML MomXML+XMLConvertible.swift
[48/74] Compiling MomXML XMLConvertible.swift
[49/74] Compiling MomXML MomFetchedProperty+CoreData.swift
[50/74] Compiling MomXML MomModel+CoreData.swift
[51/74] Compiling MomXML MomRelationship+CoreData.swift
[52/74] Compiling MomXML MomUniquenessConstraints+CoreData.swift
[53/74] Compiling MomXML MomUserInfo+CoreData.swift
[54/74] Compiling MomXML MomXml+CoreData.swift
[55/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 nonisolated 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 nonisolated 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 |
[56/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 nonisolated 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 nonisolated 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 |
[57/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 nonisolated 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 nonisolated 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 |
[58/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 nonisolated 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 nonisolated 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 |
[59/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 nonisolated 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 nonisolated 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 |
[60/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 nonisolated 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 nonisolated 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 |
[61/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 nonisolated 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 nonisolated 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.swift
[63/74] Compiling MomXML MomXML.swift
[64/74] Compiling MomXML MomAttribute+CoreData.swift
[65/74] Compiling MomXML MomCompositeAttribute+CoreData.swift
[66/74] Compiling MomXML MomEntity+CoreData.swift
[67/74] Compiling MomXML MomFetchIndex+CoreData.swift
[68/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?
[69/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?
[70/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?
[71/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?
[72/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?
[73/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?
[74/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?
Build complete! (10.05s)
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.