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

Swift 6 data race errors: 3

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/0xLeif/AppDependency.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/0xLeif/AppDependency
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d973ca2 Change logger for linux and windows to var (#7)
Cloned https://github.com/0xLeif/AppDependency.git
Revision (git rev-parse @):
d973ca2e26a7f4aaa205c41a2551c51f492fec50
SUCCESS checkout https://github.com/0xLeif/AppDependency.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/0xLeif/AppDependency.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/28] Emitting module Cache
[5/30] Compiling Cache OptionallyCached.swift
[6/30] Compiling Cache Resolved.swift
[7/30] Compiling Cache AnyCacheable.swift
[8/30] Compiling Cache Cache+subscript.swift
[9/30] Compiling Cache Cache.swift
[10/30] Compiling Cache Cached.swift
[11/30] Compiling Cache Logging.swift
[12/30] Compiling Cache Global+loggers.swift
[13/30] Compiling Cache Global.swift
[14/30] Compiling Cache RequiredKeysCache.swift
[15/30] Compiling Cache CacheInitializable.swift
[16/30] Compiling Cache Cacheable.swift
[17/30] Compiling Cache LRUCache.swift
[18/30] Compiling Cache PersistableCache.swift
[19/30] Compiling Cache RequiredKeysCache+subscript.swift
[20/30] Compiling Cache Dictionary+Cacheable.swift
[21/30] Compiling Cache InvalidTypeError.swift
[22/30] Compiling Cache MissingRequiredKeysError.swift
[23/30] Compiling Cache JSON+subscript.swift
[24/30] Compiling Cache JSON.swift
[25/30] Compiling Cache ComposableCache.swift
[26/30] Compiling Cache ExpiringCache+subscript.swift
[27/30] Compiling Cache ExpiringCache.swift
[28/30] Compiling Cache Global+cache.swift
[29/30] Compiling Cache Global+dependencies.swift
[30/30] Compiling Cache Global+images.swift
[31/42] Compiling AppDependency DependencyConstant.swift
[32/43] Compiling AppDependency ObservedDependency.swift
[33/43] Compiling AppDependency Application+Scope.swift
[34/43] Compiling AppDependency Application+ApplicationPreview.swift
[35/43] Compiling AppDependency Application+DependencySlice.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | open class Application: NSObject {
11 |     /// Singleton shared instance of `Application`
12 |     static var shared: Application = Application()
   |                |- warning: static property 'shared' 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 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     #if !os(Linux) && !os(Windows)
[36/43] Compiling AppDependency AppDependency.swift
[37/43] Compiling AppDependency Application+Dependency.swift
[38/43] Compiling AppDependency DependencySlice.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | open class Application: NSObject {
11 |     /// Singleton shared instance of `Application`
12 |     static var shared: Application = Application()
   |                |- warning: static property 'shared' 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 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     #if !os(Linux) && !os(Windows)
[39/43] Compiling AppDependency Application.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | open class Application: NSObject {
11 |     /// Singleton shared instance of `Application`
12 |     static var shared: Application = Application()
   |                |- warning: static property 'shared' 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 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     #if !os(Linux) && !os(Windows)
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:16:23: warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       `- warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
17 |     #else
18 |     /// Logger specifically for AppDependency
os.Logger:2:15: note: struct 'Logger' does not conform to the 'Sendable' protocol
 1 | @available(macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0, *)
 2 | public struct Logger {
   |               `- note: struct 'Logger' does not conform to the 'Sendable' protocol
 3 |     public init(subsystem: String, category: String)
 4 |     public init()
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 2 | #if !os(Linux) && !os(Windows)
 3 | import Combine
 4 | import OSLog
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 5 | #else
 6 | import Foundation
   :
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       |- note: annotate 'logger' 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
17 |     #else
18 |     /// Logger specifically for AppDependency
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:22:16: warning: static property 'isLoggingEnabled' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     #endif
21 |
22 |     static var isLoggingEnabled: Bool = false
   |                |- warning: static property 'isLoggingEnabled' 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 'isLoggingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'isLoggingEnabled' 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
23 |
24 |     let lock: NSRecursiveLock
[40/43] Compiling AppDependency ApplicationLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | open class Application: NSObject {
11 |     /// Singleton shared instance of `Application`
12 |     static var shared: Application = Application()
   |                |- warning: static property 'shared' 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 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     #if !os(Linux) && !os(Windows)
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:16:23: warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       `- warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
17 |     #else
18 |     /// Logger specifically for AppDependency
os.Logger:2:15: note: struct 'Logger' does not conform to the 'Sendable' protocol
 1 | @available(macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0, *)
 2 | public struct Logger {
   |               `- note: struct 'Logger' does not conform to the 'Sendable' protocol
 3 |     public init(subsystem: String, category: String)
 4 |     public init()
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 2 | #if !os(Linux) && !os(Windows)
 3 | import Combine
 4 | import OSLog
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 5 | #else
 6 | import Foundation
   :
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       |- note: annotate 'logger' 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
17 |     #else
18 |     /// Logger specifically for AppDependency
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:22:16: warning: static property 'isLoggingEnabled' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     #endif
21 |
22 |     static var isLoggingEnabled: Bool = false
   |                |- warning: static property 'isLoggingEnabled' 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 'isLoggingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'isLoggingEnabled' 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
23 |
24 |     let lock: NSRecursiveLock
[41/43] Compiling AppDependency Application+internal.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | open class Application: NSObject {
11 |     /// Singleton shared instance of `Application`
12 |     static var shared: Application = Application()
   |                |- warning: static property 'shared' 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 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     #if !os(Linux) && !os(Windows)
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:22:16: warning: static property 'isLoggingEnabled' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     #endif
21 |
22 |     static var isLoggingEnabled: Bool = false
   |                |- warning: static property 'isLoggingEnabled' 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 'isLoggingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'isLoggingEnabled' 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
23 |
24 |     let lock: NSRecursiveLock
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:16:23: warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       `- warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
17 |     #else
18 |     /// Logger specifically for AppDependency
os.Logger:2:15: note: struct 'Logger' does not conform to the 'Sendable' protocol
 1 | @available(macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0, *)
 2 | public struct Logger {
   |               `- note: struct 'Logger' does not conform to the 'Sendable' protocol
 3 |     public init(subsystem: String, category: String)
 4 |     public init()
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 2 | #if !os(Linux) && !os(Windows)
 3 | import Combine
 4 | import OSLog
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 5 | #else
 6 | import Foundation
   :
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       |- note: annotate 'logger' 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
17 |     #else
18 |     /// Logger specifically for AppDependency
[42/43] Compiling AppDependency Application+public.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | open class Application: NSObject {
11 |     /// Singleton shared instance of `Application`
12 |     static var shared: Application = Application()
   |                |- warning: static property 'shared' 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 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     #if !os(Linux) && !os(Windows)
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:22:16: warning: static property 'isLoggingEnabled' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     #endif
21 |
22 |     static var isLoggingEnabled: Bool = false
   |                |- warning: static property 'isLoggingEnabled' 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 'isLoggingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'isLoggingEnabled' 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
23 |
24 |     let lock: NSRecursiveLock
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:16:23: warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       `- warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
17 |     #else
18 |     /// Logger specifically for AppDependency
os.Logger:2:15: note: struct 'Logger' does not conform to the 'Sendable' protocol
 1 | @available(macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0, *)
 2 | public struct Logger {
   |               `- note: struct 'Logger' does not conform to the 'Sendable' protocol
 3 |     public init(subsystem: String, category: String)
 4 |     public init()
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 2 | #if !os(Linux) && !os(Windows)
 3 | import Combine
 4 | import OSLog
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 5 | #else
 6 | import Foundation
   :
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       |- note: annotate 'logger' 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
17 |     #else
18 |     /// Logger specifically for AppDependency
[43/43] Emitting module AppDependency
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:12:16: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 | open class Application: NSObject {
11 |     /// Singleton shared instance of `Application`
12 |     static var shared: Application = Application()
   |                |- warning: static property 'shared' 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 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |
14 |     #if !os(Linux) && !os(Windows)
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:16:23: warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       `- warning: static property 'logger' is not concurrency-safe because non-'Sendable' type 'Logger' may have shared mutable state; this is an error in the Swift 6 language mode
17 |     #else
18 |     /// Logger specifically for AppDependency
os.Logger:2:15: note: struct 'Logger' does not conform to the 'Sendable' protocol
 1 | @available(macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0, *)
 2 | public struct Logger {
   |               `- note: struct 'Logger' does not conform to the 'Sendable' protocol
 3 |     public init(subsystem: String, category: String)
 4 |     public init()
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 2 | #if !os(Linux) && !os(Windows)
 3 | import Combine
 4 | import OSLog
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 5 | #else
 6 | import Foundation
   :
14 |     #if !os(Linux) && !os(Windows)
15 |     /// Logger specifically for AppDependency
16 |     public static let logger: Logger = Logger(subsystem: "AppDependency", category: "Application")
   |                       |- note: annotate 'logger' 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
17 |     #else
18 |     /// Logger specifically for AppDependency
/Users/admin/builder/spi-builder-workspace/Sources/AppDependency/Application/Application.swift:22:16: warning: static property 'isLoggingEnabled' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     #endif
21 |
22 |     static var isLoggingEnabled: Bool = false
   |                |- warning: static property 'isLoggingEnabled' 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 'isLoggingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'isLoggingEnabled' 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
23 |
24 |     let lock: NSRecursiveLock
Build complete! (42.30s)
Fetching https://github.com/0xLeif/Cache
[1/389] Fetching cache
Fetched https://github.com/0xLeif/Cache from cache (0.83s)
Computing version for https://github.com/0xLeif/Cache
Computed https://github.com/0xLeif/Cache at 2.1.0 (0.94s)
Creating working copy for https://github.com/0xLeif/Cache
Working copy of https://github.com/0xLeif/Cache resolved at 2.1.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "cache",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/0xLeif/Cache"
    }
  ],
  "manifest_display_name" : "AppDependency",
  "name" : "AppDependency",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "AppDependency",
      "targets" : [
        "AppDependency"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AppDependencyTests",
      "module_type" : "SwiftTarget",
      "name" : "AppDependencyTests",
      "path" : "Tests/AppDependencyTests",
      "sources" : [
        "AppDependencyTests.swift",
        "DependencySliceTests.swift",
        "ObservedDependencyTests.swift"
      ],
      "target_dependencies" : [
        "AppDependency"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AppDependency",
      "module_type" : "SwiftTarget",
      "name" : "AppDependency",
      "path" : "Sources/AppDependency",
      "product_dependencies" : [
        "Cache"
      ],
      "product_memberships" : [
        "AppDependency"
      ],
      "sources" : [
        "Application/Application+internal.swift",
        "Application/Application+public.swift",
        "Application/Application.swift",
        "Application/Helper/ApplicationLogger.swift",
        "Application/Types/Dependency/Application+Dependency.swift",
        "Application/Types/Dependency/Slice/Application+DependencySlice.swift",
        "Application/Types/Helper/Application+ApplicationPreview.swift",
        "Application/Types/Helper/Application+Scope.swift",
        "PropertyWrappers/AppDependency.swift",
        "PropertyWrappers/ObservedDependency.swift",
        "PropertyWrappers/Slice/DependencyConstant.swift",
        "PropertyWrappers/Slice/DependencySlice.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.