The Swift Package Index logo.Swift Package Index

Build Information

Successful build of XMLParsing, reference master (8853c2), with Swift 6.3 for macOS (SPM) on 14 Apr 2026 02:55:40 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/MihaelIsaev/XMLParsing.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/MihaelIsaev/XMLParsing
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 8853c2c Update Package.swift
Cloned https://github.com/MihaelIsaev/XMLParsing.git
Revision (git rev-parse @):
8853c2c4b6332095d1f5b1db6a4a9b99431cc233
SUCCESS checkout https://github.com/MihaelIsaev/XMLParsing.git at master
========================================
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",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "xmlparsing",
      "name": "XMLParsing",
      "url": "https://github.com/MihaelIsaev/XMLParsing.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/XMLParsing",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/MihaelIsaev/XMLParsing.git
[1/340] Fetching xmlparsing
Fetched https://github.com/MihaelIsaev/XMLParsing.git from cache (0.69s)
Creating working copy for https://github.com/MihaelIsaev/XMLParsing.git
Working copy of https://github.com/MihaelIsaev/XMLParsing.git resolved at master (8853c2c)
warning: '.resolve-product-dependencies': dependency 'xmlparsing' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/MihaelIsaev/XMLParsing.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/14] Compiling XMLParsing ISO8601DateFormatter.swift
[4/15] Compiling XMLParsing XMLKey.swift
[5/15] Compiling XMLParsing XMLEncodingStorage.swift
[6/15] Compiling XMLParsing XMLReferencingEncoder.swift
[7/15] Compiling XMLParsing XMLUnkeyedDecodingContainer.swift
[8/15] Compiling XMLParsing EncodingErrorExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Encoder/EncodingErrorExtension.swift:21:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
19 |     /// - parameter path: The path of `CodingKey`s taken to encode this value.
20 |     /// - returns: An `EncodingError` with the appropriate path and debug description.
21 |     internal static func _invalidFloatingPointValue<T : FloatingPoint>(_ value: T, at codingPath: [CodingKey]) -> EncodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
22 |         let valueDescription: String
23 |         if value == T.infinity {
[9/15] Compiling XMLParsing XMLDecodingStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/XMLKeyedDecodingContainer.swift:39:36: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
 37 |
 38 |     public var allKeys: [Key] {
 39 |         return self.container.keys.flatMap { Key(stringValue: $0) }
    |                                    |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
    |                                    `- note: use 'compactMap(_:)' instead
 40 |     }
 41 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[10/15] Compiling XMLParsing XMLKeyedDecodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/XMLKeyedDecodingContainer.swift:39:36: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
 37 |
 38 |     public var allKeys: [Key] {
 39 |         return self.container.keys.flatMap { Key(stringValue: $0) }
    |                                    |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
    |                                    `- note: use 'compactMap(_:)' instead
 40 |     }
 41 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[11/15] Compiling XMLParsing DecodingErrorExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:22:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
20 |     /// - parameter reality: The value that was encountered instead of the expected type.
21 |     /// - returns: A `DecodingError` with the appropriate path and debug description.
22 |     internal static func _typeMismatch(at path: [CodingKey], expectation: Any.Type, reality: Any) -> DecodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
23 |         let description = "Expected to decode \(expectation) but found \(_typeDescription(of: reality)) instead."
24 |         return .typeMismatch(expectation, Context(codingPath: path, debugDescription: description))
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:32:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
30 |     /// - returns: A string describing `value`.
31 |     /// - precondition: `value` is one of the types below.
32 |     internal static func _typeDescription(of value: Any) -> String {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
33 |         if value is NSNull {
34 |             return "a null value"
[12/15] Compiling XMLParsing XMLDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:22:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
20 |     /// - parameter reality: The value that was encountered instead of the expected type.
21 |     /// - returns: A `DecodingError` with the appropriate path and debug description.
22 |     internal static func _typeMismatch(at path: [CodingKey], expectation: Any.Type, reality: Any) -> DecodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
23 |         let description = "Expected to decode \(expectation) but found \(_typeDescription(of: reality)) instead."
24 |         return .typeMismatch(expectation, Context(codingPath: path, debugDescription: description))
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:32:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
30 |     /// - returns: A string describing `value`.
31 |     /// - precondition: `value` is one of the types below.
32 |     internal static func _typeDescription(of value: Any) -> String {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
33 |         if value is NSNull {
34 |             return "a null value"
[13/15] Emitting module XMLParsing
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:22:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
20 |     /// - parameter reality: The value that was encountered instead of the expected type.
21 |     /// - returns: A `DecodingError` with the appropriate path and debug description.
22 |     internal static func _typeMismatch(at path: [CodingKey], expectation: Any.Type, reality: Any) -> DecodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
23 |         let description = "Expected to decode \(expectation) but found \(_typeDescription(of: reality)) instead."
24 |         return .typeMismatch(expectation, Context(codingPath: path, debugDescription: description))
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:32:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
30 |     /// - returns: A string describing `value`.
31 |     /// - precondition: `value` is one of the types below.
32 |     internal static func _typeDescription(of value: Any) -> String {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
33 |         if value is NSNull {
34 |             return "a null value"
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Encoder/EncodingErrorExtension.swift:21:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
19 |     /// - parameter path: The path of `CodingKey`s taken to encode this value.
20 |     /// - returns: An `EncodingError` with the appropriate path and debug description.
21 |     internal static func _invalidFloatingPointValue<T : FloatingPoint>(_ value: T, at codingPath: [CodingKey]) -> EncodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
22 |         let valueDescription: String
23 |         if value == T.infinity {
[14/15] Compiling XMLParsing XMLEncoder.swift
[15/15] Compiling XMLParsing XMLStackParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/XMLStackParser.swift:103:52: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
101 |         element.attributes = (object[_XMLElement.attributesKey] as? [String: Any])?.mapValues({ String(describing: $0) }) ?? [:]
102 |
103 |         let objects: [(String, NSObject)] = object.flatMap({
    |                                                    |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
    |                                                    `- note: use 'compactMap(_:)' instead
104 |             guard let key = $0 as? String, let value = $1 as? NSObject, key != _XMLElement.attributesKey else { return nil }
105 |
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/XMLStackParser.swift:129:30: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
127 |
128 |     fileprivate static func createElement(parentElement: _XMLElement, key: String, object: NSArray) {
129 |         let objects = object.flatMap({ $0 as? NSObject })
    |                              |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value [#DeprecatedDeclaration]
    |                              `- note: use 'compactMap(_:)' instead
130 |         objects.forEach({
131 |             if let dict = $0 as? NSDictionary {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (5.55s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "XMLParsing",
  "name" : "XMLParsing",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "XMLParsing",
      "targets" : [
        "XMLParsing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XMLParsingTests",
      "module_type" : "SwiftTarget",
      "name" : "XMLParsingTests",
      "path" : "Tests/XMLParsingTests",
      "sources" : [
        "XMLParsingTests.swift"
      ],
      "target_dependencies" : [
        "XMLParsing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XMLParsing",
      "module_type" : "SwiftTarget",
      "name" : "XMLParsing",
      "path" : "Sources/XMLParsing",
      "product_memberships" : [
        "XMLParsing"
      ],
      "sources" : [
        "Decoder/DecodingErrorExtension.swift",
        "Decoder/XMLDecoder.swift",
        "Decoder/XMLDecodingStorage.swift",
        "Decoder/XMLKeyedDecodingContainer.swift",
        "Decoder/XMLUnkeyedDecodingContainer.swift",
        "Encoder/EncodingErrorExtension.swift",
        "Encoder/XMLEncoder.swift",
        "Encoder/XMLEncodingStorage.swift",
        "Encoder/XMLReferencingEncoder.swift",
        "ISO8601DateFormatter.swift",
        "XMLKey.swift",
        "XMLStackParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
Done.