The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Store, reference master (fb5175), with Swift 6.2 for macOS (SPM) on 19 Jun 2025 05:05:59 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/alexdrone/Store.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/alexdrone/Store
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at fb51754 Port diffing in preparation of CodableStore.
Cloned https://github.com/alexdrone/Store.git
Revision (git rev-parse @):
fb51754e8f88a0ab99c7994d0d26d3374155f1fc
SUCCESS checkout https://github.com/alexdrone/Store.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/alexdrone/Store.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[3/5] Write swift-version-1EA4D86E10B52AF.txt
[4/10] Compiling _AtomicsShims.c
[6/22] Compiling Atomics AtomicValue.swift
[7/23] Compiling Atomics AtomicOptional.swift
[8/23] Compiling Atomics AtomicRawRepresentable.swift
[9/23] Compiling Atomics AtomicStrongReference.swift
[10/23] Compiling Atomics PointerConformances.swift
[11/23] Compiling Atomics AtomicInteger.swift
[12/23] Compiling Atomics AtomicMemoryOrderings.swift
[13/23] Emitting module Atomics
[14/23] Compiling Logging Locks.swift
[15/23] Compiling Logging LogHandler.swift
[16/23] Compiling Logging MetadataProvider.swift
[17/23] Emitting module Logging
[18/23] Compiling Logging Logging.swift
[19/23] Compiling Atomics AtomicBool.swift
[20/23] Compiling Atomics AtomicLazyReference.swift
[21/23] Compiling Atomics HighLevelTypes.swift
[22/23] Compiling Atomics DoubleWord.swift
[23/23] Compiling Atomics IntegerConformances.swift
[24/39] Compiling Store Partial.swift
[25/40] Compiling Store ReadOnly+Forwarding.swift
[26/40] Compiling Store DictionaryCodable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Store/Serialization/DictionaryCodable.swift:34:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 32 |
 33 | extension DictionaryEncoder {
 34 |   open func encode<T: Encodable>(_ value: T) throws -> [String: Any] {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |     do {
 36 |       return try castOrThrow([String: Any].self, try box(value))
/Users/admin/builder/spi-builder-workspace/Sources/Store/Serialization/DictionaryCodable.swift:484:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
482 |
483 | extension DictionaryDecoder {
484 |   open func decode<T: Decodable>(_ type: T.Type, from container: Any) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
485 |     storage.push(container: container)
486 |     return try unbox(container, as: T.self)
[27/40] Compiling Store Diffing.swift
/Users/admin/builder/spi-builder-workspace/Sources/Store/Serialization/DictionaryCodable.swift:34:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 32 |
 33 | extension DictionaryEncoder {
 34 |   open func encode<T: Encodable>(_ value: T) throws -> [String: Any] {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |     do {
 36 |       return try castOrThrow([String: Any].self, try box(value))
/Users/admin/builder/spi-builder-workspace/Sources/Store/Serialization/DictionaryCodable.swift:484:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
482 |
483 | extension DictionaryDecoder {
484 |   open func decode<T: Decodable>(_ type: T.Type, from container: Any) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
485 |     storage.push(container: container)
486 |     return try unbox(container, as: T.self)
[28/40] Compiling Store PropertyObservable.swift
[29/40] Compiling Store ReadOnly.swift
[30/40] Compiling Store StoreOptions.swift
[31/40] Compiling Store Assign.swift
[32/40] Compiling Store KeyPath+ReadableFormat.swift
[33/40] Compiling Store PushID.swift
[34/40] Compiling Store PropertyWrappers.swift
[35/40] Compiling Store Binding.swift
[36/40] Compiling Store Atomics.swift
/Users/admin/builder/spi-builder-workspace/Sources/Store/Concurrency/Atomics.swift:4:1: warning: extension declares a conformance of imported type 'ManagedAtomic' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Atomics' introduce this conformance in the future
2 | import Foundation
3 |
4 | extension ManagedAtomic: @unchecked Sendable {}
  | |- warning: extension declares a conformance of imported type 'ManagedAtomic' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Atomics' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 |
[37/40] Compiling Store Locking.swift
/Users/admin/builder/spi-builder-workspace/Sources/Store/Concurrency/Atomics.swift:4:1: warning: extension declares a conformance of imported type 'ManagedAtomic' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Atomics' introduce this conformance in the future
2 | import Foundation
3 |
4 | extension ManagedAtomic: @unchecked Sendable {}
  | |- warning: extension declares a conformance of imported type 'ManagedAtomic' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Atomics' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 |
[38/40] Emitting module Store
/Users/admin/builder/spi-builder-workspace/Sources/Store/Concurrency/Atomics.swift:4:1: warning: extension declares a conformance of imported type 'ManagedAtomic' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Atomics' introduce this conformance in the future
2 | import Foundation
3 |
4 | extension ManagedAtomic: @unchecked Sendable {}
  | |- warning: extension declares a conformance of imported type 'ManagedAtomic' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Atomics' introduce this conformance in the future
  | `- note: add '@retroactive' to silence this warning
5 |
/Users/admin/builder/spi-builder-workspace/Sources/Store/Serialization/DictionaryCodable.swift:34:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 32 |
 33 | extension DictionaryEncoder {
 34 |   open func encode<T: Encodable>(_ value: T) throws -> [String: Any] {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
 35 |     do {
 36 |       return try castOrThrow([String: Any].self, try box(value))
/Users/admin/builder/spi-builder-workspace/Sources/Store/Serialization/DictionaryCodable.swift:484:3: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
482 |
483 | extension DictionaryDecoder {
484 |   open func decode<T: Decodable>(_ type: T.Type, from container: Any) throws -> T {
    |   `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
485 |     storage.push(container: container)
486 |     return try unbox(container, as: T.self)
[39/40] Compiling Store Store+Forwarding.swift
[40/40] Compiling Store Store.swift
Build complete! (12.16s)
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-log.git
[1/1797] Fetching swift-atomics
[73/5633] Fetching swift-atomics, swift-log
Fetched https://github.com/apple/swift-atomics.git from cache (1.02s)
Fetched https://github.com/apple/swift-log.git from cache (1.02s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 0.0.3 (1.56s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.41s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 0.0.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-atomics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.0.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-atomics.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "Store",
  "name" : "Store",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Store",
      "targets" : [
        "Store"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "StoreTests",
      "module_type" : "SwiftTarget",
      "name" : "StoreTests",
      "path" : "Tests/StoreTests",
      "sources" : [
        "StoreTests.swift",
        "SupportTypes.swift",
        "UtilitiesTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Store"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Store",
      "module_type" : "SwiftTarget",
      "name" : "Store",
      "path" : "Sources/Store",
      "product_dependencies" : [
        "Atomics",
        "Logging"
      ],
      "product_memberships" : [
        "Store"
      ],
      "sources" : [
        "Concurrency/Atomics.swift",
        "Concurrency/Locking.swift",
        "Concurrency/PropertyWrappers.swift",
        "Extensions/Binding.swift",
        "Extensions/KeyPath+ReadableFormat.swift",
        "PushID.swift",
        "Serialization/DictionaryCodable.swift",
        "Serialization/Diffing.swift",
        "Store/Store+Forwarding.swift",
        "Store/Store.swift",
        "Store/StoreOptions.swift",
        "Utilities/Assign.swift",
        "Utilities/Partial.swift",
        "Utilities/PropertyObservable.swift",
        "Utilities/ReadOnly+Forwarding.swift",
        "Utilities/ReadOnly.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.