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 Genything, reference main (ebc202), with Swift 6.0 for macOS (SPM) on 2 Nov 2024 22:23:04 UTC.

Swift 6 data race errors: 7

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/justeattakeaway/Genything.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/justeattakeaway/Genything
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at ebc2021 Swift 5.7 light touch adoption of some new features (#59)
Cloned https://github.com/justeattakeaway/Genything.git
Revision (git rev-parse @):
ebc20216ba67aeb955a9d3b82873e7fc15b70ae6
SUCCESS checkout https://github.com/justeattakeaway/Genything.git at main
Fetching https://github.com/apple/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.30s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.0.0 (0.68s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.0.0
========================================
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": "genything",
      "name": "Genything",
      "url": "https://github.com/justeattakeaway/Genything.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Genything",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/justeattakeaway/Genything.git
[1/8903] Fetching genything
Fetched https://github.com/justeattakeaway/Genything.git from cache (1.67s)
Creating working copy for https://github.com/justeattakeaway/Genything.git
Working copy of https://github.com/justeattakeaway/Genything.git resolved at main (ebc2021)
warning: '.resolve-product-dependencies': dependency 'genything' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/justeattakeaway/Genything.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
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/13] Write sources
[5/13] Copying CountryData.json
[6/13] Copying PersonNamesData.json
[7/13] Copying BusinessNamesData.json
[8/13] Copying CityData.json
[8/13] Copying LoremData.json
[8/13] Copying StateData.json
[9/13] Copying StreetData.json
[12/13] Write swift-version--7754E27361AE5C74.txt
[14/68] Emitting module Genything
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       |- warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'arbitrary' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'arbitrary' 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
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Operators/Effect/Generator+debug.swift:29:13: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | }
28 |
29 | private var dateFormatter: DateFormatter = {
   |             |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateFormatter' 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
30 |     let df = DateFormatter()
31 |     df.dateFormat = "HH:mm:ss.SSS"
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:44:23: warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |     /// Returns: The system’s default source of random data which is neither independent nor deterministic.
44 |     public static var system: RandomSource = .init(using: SystemRandomNumberGenerator(), originalSeed: nil)
   |                       |- warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'system' 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
45 |
46 |     /// Returns: An new, independent `RandomSource` initialized by default with a common seed for all Genything users
[15/73] Compiling Genything Generators+join.swift
[16/73] Compiling Genything Generators+merge.swift
[17/73] Compiling Genything Generators+oneOf.swift
[18/73] Compiling Genything Generators+reduce.swift
[19/73] Compiling Genything Generators+replacing.swift
[20/73] Compiling Genything Generators+switchOnNil.swift
[21/73] Compiling Genything Generators+weighted.swift
[22/73] Compiling Genything Generators+constant.swift
[23/73] Compiling Genything Generators+iterate.swift
[24/73] Compiling Genything Generators+loop.swift
[25/73] Compiling Genything Generators+shuffleLoop.swift
[26/73] Compiling Genything Generators+shuffled.swift
[27/73] Compiling Genything Generator+distinct.swift
[28/73] Compiling Genything Generator+drop.swift
[29/73] Compiling Genything Generator+expand.swift
[30/73] Compiling Genything Generator+filter.swift
[31/73] Compiling Genything Generator+flatMap.swift
[32/73] Compiling Genything Generator+flatten.swift
[33/73] Compiling Genything Generator+regenerate.swift
[34/73] Compiling Genything Generator+replace.swift
[35/73] Compiling Genything Generator+replacingOccurences.swift
[36/73] Compiling Genything Generator+scan.swift
[37/73] Compiling Genything Generator+zip.swift
[38/73] Compiling Genything Generator+sequence.swift
[39/73] Compiling Genything AnyGenerator.swift
[40/73] Compiling Genything CaseIterable+arbitrary.swift
[41/73] Compiling Genything Collection+arbitrary.swift
[42/73] Compiling Genything RandomInRangeable.swift
[43/73] Compiling Genything Range+arbitrary.swift
[44/73] Compiling Genything Arbitrary.swift
[45/73] Compiling Genything Generators+void.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Operators/Effect/Generator+debug.swift:29:13: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | }
28 |
29 | private var dateFormatter: DateFormatter = {
   |             |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateFormatter' 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
30 |     let df = DateFormatter()
31 |     df.dateFormat = "HH:mm:ss.SSS"
[46/73] Compiling Genything Generators.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Operators/Effect/Generator+debug.swift:29:13: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | }
28 |
29 | private var dateFormatter: DateFormatter = {
   |             |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateFormatter' 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
30 |     let df = DateFormatter()
31 |     df.dateFormat = "HH:mm:ss.SSS"
[47/73] Compiling Genything String+replacingOccurences.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Operators/Effect/Generator+debug.swift:29:13: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | }
28 |
29 | private var dateFormatter: DateFormatter = {
   |             |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateFormatter' 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
30 |     let df = DateFormatter()
31 |     df.dateFormat = "HH:mm:ss.SSS"
[48/73] Compiling Genything LazyGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Operators/Effect/Generator+debug.swift:29:13: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | }
28 |
29 | private var dateFormatter: DateFormatter = {
   |             |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateFormatter' 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
30 |     let df = DateFormatter()
31 |     df.dateFormat = "HH:mm:ss.SSS"
[49/73] Compiling Genything Generator+also.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Operators/Effect/Generator+debug.swift:29:13: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | }
28 |
29 | private var dateFormatter: DateFormatter = {
   |             |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateFormatter' 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
30 |     let df = DateFormatter()
31 |     df.dateFormat = "HH:mm:ss.SSS"
[50/73] Compiling Genything Generator+debug.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Operators/Effect/Generator+debug.swift:29:13: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 | }
28 |
29 | private var dateFormatter: DateFormatter = {
   |             |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'dateFormatter' 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
30 |     let df = DateFormatter()
31 |     df.dateFormat = "HH:mm:ss.SSS"
[51/73] Compiling Genything Generator+take.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:44:23: warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |     /// Returns: The system’s default source of random data which is neither independent nor deterministic.
44 |     public static var system: RandomSource = .init(using: SystemRandomNumberGenerator(), originalSeed: nil)
   |                       |- warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'system' 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
45 |
46 |     /// Returns: An new, independent `RandomSource` initialized by default with a common seed for all Genything users
[52/73] Compiling Genything RandomSource+drop.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:44:23: warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |     /// Returns: The system’s default source of random data which is neither independent nor deterministic.
44 |     public static var system: RandomSource = .init(using: SystemRandomNumberGenerator(), originalSeed: nil)
   |                       |- warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'system' 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
45 |
46 |     /// Returns: An new, independent `RandomSource` initialized by default with a common seed for all Genything users
[53/73] Compiling Genything RandomSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:44:23: warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |     /// Returns: The system’s default source of random data which is neither independent nor deterministic.
44 |     public static var system: RandomSource = .init(using: SystemRandomNumberGenerator(), originalSeed: nil)
   |                       |- warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'system' 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
45 |
46 |     /// Returns: An new, independent `RandomSource` initialized by default with a common seed for all Genything users
[54/73] Compiling Genything LinearCongruentialRandomNumberGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:44:23: warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |     /// Returns: The system’s default source of random data which is neither independent nor deterministic.
44 |     public static var system: RandomSource = .init(using: SystemRandomNumberGenerator(), originalSeed: nil)
   |                       |- warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'system' 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
45 |
46 |     /// Returns: An new, independent `RandomSource` initialized by default with a common seed for all Genything users
[55/73] Compiling Genything RandomizedGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:44:23: warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |     /// Returns: The system’s default source of random data which is neither independent nor deterministic.
44 |     public static var system: RandomSource = .init(using: SystemRandomNumberGenerator(), originalSeed: nil)
   |                       |- warning: static property 'system' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'system' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'system' 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
45 |
46 |     /// Returns: An new, independent `RandomSource` initialized by default with a common seed for all Genything users
[56/73] Compiling Genything Generator.swift
[57/73] Compiling Genything GeneratorProfiler.swift
[58/73] Compiling Genything GeneratorSequence.swift
[59/73] Compiling Genything Generators+collect.swift
[60/73] Compiling Genything Generators+compose.swift
[61/73] Compiling Genything Generators+either.swift
[62/73] Compiling Genything Generator+generate.swift
[63/73] Compiling Genything Generator+map.swift
[64/73] Compiling Genything Generator+or.swift
[65/73] Compiling Genything Generator+orNil.swift
[66/73] Compiling Genything Generator+prepend.swift
[67/73] Compiling Genything Generator+recompose.swift
[68/73] Compiling Genything CoreLocation+Arbitrary.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       |- warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'arbitrary' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'arbitrary' 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
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[69/73] Compiling Genything Foundation+Arbitrary.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       |- warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'arbitrary' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'arbitrary' 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
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[70/73] Compiling Genything Swift+Arbitrary.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       |- warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'arbitrary' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'arbitrary' 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
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[71/73] Compiling Genything UIKit+Arbitrary.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       |- warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'arbitrary' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'arbitrary' 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
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[72/73] Compiling Genything UUID+initRandomBits.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       |- warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'arbitrary' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'arbitrary' 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
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[73/73] Compiling Genything Composer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       |- warning: static property 'arbitrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'arbitrary' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'arbitrary' 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
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[74/102] Compiling GenythingTest fail.swift
[75/102] Compiling GenythingTest testAllSatisfy.swift
[76/102] Compiling GenythingTest TestConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/GenythingTest/Core/TestConfig.swift:41:24: warning: static property 'defaultFactory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 |
40 |     /// Storage for the factory capable of creating a `TestConfig` which will be used by default
41 |     private static var `defaultFactory`: () -> TestConfig = {
   |                        |- warning: static property 'defaultFactory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'defaultFactory' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'defaultFactory' 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
42 |         TestConfig(
43 |             maxIterations: 1000,
[77/102] Compiling GenythingTest TestReport.swift
/Users/admin/builder/spi-builder-workspace/Sources/GenythingTest/Core/TestReport.swift:31:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
23 |
24 | /// Information regarding a test's failure
25 | struct FailedTestReport<T>: Error, TestReport {
   |                         `- note: 'T' previously declared here
26 |     let iteration: Int
27 |     let seed: UInt64?
   :
29 |
30 |     /// A reason for the test's failure
31 |     enum Reason<T> {
   |                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
32 |         case predicate(value: T)
33 |     }
/Users/admin/builder/spi-builder-workspace/Sources/GenythingTest/Core/TestReport.swift:28:9: warning: stored property 'reason' of 'Sendable'-conforming generic struct 'FailedTestReport' has non-sendable type 'FailedTestReport<T>.Reason<T>'; this is an error in the Swift 6 language mode
26 |     let iteration: Int
27 |     let seed: UInt64?
28 |     let reason: FailedTestReport.Reason<T>
   |         `- warning: stored property 'reason' of 'Sendable'-conforming generic struct 'FailedTestReport' has non-sendable type 'FailedTestReport<T>.Reason<T>'; this is an error in the Swift 6 language mode
29 |
30 |     /// A reason for the test's failure
31 |     enum Reason<T> {
   |          `- note: consider making generic enum 'Reason' conform to the 'Sendable' protocol
32 |         case predicate(value: T)
33 |     }
[78/102] Compiling GenythingTest Assertion.swift
[79/102] Compiling GenythingTest Gen+test.swift
[80/102] Compiling GenythingTest testAll.swift
[81/102] Emitting module GenythingTest
/Users/admin/builder/spi-builder-workspace/Sources/GenythingTest/Core/TestConfig.swift:41:24: warning: static property 'defaultFactory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 |
40 |     /// Storage for the factory capable of creating a `TestConfig` which will be used by default
41 |     private static var `defaultFactory`: () -> TestConfig = {
   |                        |- warning: static property 'defaultFactory' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'defaultFactory' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'defaultFactory' 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
42 |         TestConfig(
43 |             maxIterations: 1000,
/Users/admin/builder/spi-builder-workspace/Sources/GenythingTest/Core/TestReport.swift:31:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
23 |
24 | /// Information regarding a test's failure
25 | struct FailedTestReport<T>: Error, TestReport {
   |                         `- note: 'T' previously declared here
26 |     let iteration: Int
27 |     let seed: UInt64?
   :
29 |
30 |     /// A reason for the test's failure
31 |     enum Reason<T> {
   |                 `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
32 |         case predicate(value: T)
33 |     }
/Users/admin/builder/spi-builder-workspace/Sources/GenythingTest/Core/TestReport.swift:28:9: warning: stored property 'reason' of 'Sendable'-conforming generic struct 'FailedTestReport' has non-sendable type 'FailedTestReport<T>.Reason<T>'; this is an error in the Swift 6 language mode
26 |     let iteration: Int
27 |     let seed: UInt64?
28 |     let reason: FailedTestReport.Reason<T>
   |         `- warning: stored property 'reason' of 'Sendable'-conforming generic struct 'FailedTestReport' has non-sendable type 'FailedTestReport<T>.Reason<T>'; this is an error in the Swift 6 language mode
29 |
30 |     /// A reason for the test's failure
31 |     enum Reason<T> {
   |          `- note: consider making generic enum 'Reason' conform to the 'Sendable' protocol
32 |         case predicate(value: T)
33 |     }
[82/102] Compiling Trickery LoremData.swift
[83/102] Compiling Trickery BusinessNamesData.swift
[84/104] Compiling Trickery Fake.swift
[85/104] Compiling Trickery CityData.swift
[86/104] Compiling Trickery Fake+Coin.swift
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+ID.swift:7:18: warning: reference to static property 'arbitrary' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 5 |     public enum ID {
 6 |         public static var uuid: AnyGenerator<UUID> {
 7 |             UUID.arbitrary
   |                  `- warning: reference to static property 'arbitrary' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 8 |         }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: note: static property declared here
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       `- note: static property declared here
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[87/104] Compiling Trickery Fake+Emails.swift
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+ID.swift:7:18: warning: reference to static property 'arbitrary' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 5 |     public enum ID {
 6 |         public static var uuid: AnyGenerator<UUID> {
 7 |             UUID.arbitrary
   |                  `- warning: reference to static property 'arbitrary' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 8 |         }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: note: static property declared here
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       `- note: static property declared here
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[88/104] Compiling Trickery Fake+ID.swift
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+ID.swift:7:18: warning: reference to static property 'arbitrary' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 5 |     public enum ID {
 6 |         public static var uuid: AnyGenerator<UUID> {
 7 |             UUID.arbitrary
   |                  `- warning: reference to static property 'arbitrary' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 8 |         }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/Genything/Arbitrary/Type/Foundation+Arbitrary.swift:33:23: note: static property declared here
31 | extension UUID: Arbitrary {
32 |     /// A generator of arbitrary `UUID`s
33 |     public static var arbitrary: AnyGenerator<UUID> = AnyGenerator {
   |                       `- note: static property declared here
34 |         UUID(bits: ($0.rng.next(), $0.rng.next()), version: 4)
35 |     }
[89/104] Compiling Trickery Fake+PhoneNumbers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+PhoneNumbers.swift:6:27: warning: static property 'formatted' is not concurrency-safe because non-'Sendable' type 'AnyGenerator<String>' may have shared mutable state; this is an error in the Swift 6 language mode
4 | extension Fake {
5 |     public enum PhoneNumbers {
6 |         public static let formatted: AnyGenerator<String> = Numerics.digits.replacingOccurrences(of: "#", in: "(###) ###-####")
  |                           `- warning: static property 'formatted' is not concurrency-safe because non-'Sendable' type 'AnyGenerator<String>' may have shared mutable state; this is an error in the Swift 6 language mode
7 |     }
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Genything/AnyGenerator.swift:2:15: note: generic struct 'AnyGenerator' does not conform to the 'Sendable' protocol
 1 | /// A type-erased `Generator`
 2 | public struct AnyGenerator<T>: Generator {
   |               `- note: generic struct 'AnyGenerator' does not conform to the 'Sendable' protocol
 3 |     /// Creates a type-erasing Generator to wrap the provided Generator
 4 |     ///
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+PhoneNumbers.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Genything'
1 | import Foundation
2 | import Genything
  | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Genything'
3 |
4 | extension Fake {
5 |     public enum PhoneNumbers {
6 |         public static let formatted: AnyGenerator<String> = Numerics.digits.replacingOccurrences(of: "#", in: "(###) ###-####")
  |                           |- note: annotate 'formatted' 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
7 |     }
8 | }
[90/104] Compiling Trickery Fake+Web.swift
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+PhoneNumbers.swift:6:27: warning: static property 'formatted' is not concurrency-safe because non-'Sendable' type 'AnyGenerator<String>' may have shared mutable state; this is an error in the Swift 6 language mode
4 | extension Fake {
5 |     public enum PhoneNumbers {
6 |         public static let formatted: AnyGenerator<String> = Numerics.digits.replacingOccurrences(of: "#", in: "(###) ###-####")
  |                           `- warning: static property 'formatted' is not concurrency-safe because non-'Sendable' type 'AnyGenerator<String>' may have shared mutable state; this is an error in the Swift 6 language mode
7 |     }
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Genything/AnyGenerator.swift:2:15: note: generic struct 'AnyGenerator' does not conform to the 'Sendable' protocol
 1 | /// A type-erased `Generator`
 2 | public struct AnyGenerator<T>: Generator {
   |               `- note: generic struct 'AnyGenerator' does not conform to the 'Sendable' protocol
 3 |     /// Creates a type-erasing Generator to wrap the provided Generator
 4 |     ///
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+PhoneNumbers.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Genything'
1 | import Foundation
2 | import Genything
  | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Genything'
3 |
4 | extension Fake {
5 |     public enum PhoneNumbers {
6 |         public static let formatted: AnyGenerator<String> = Numerics.digits.replacingOccurrences(of: "#", in: "(###) ###-####")
  |                           |- note: annotate 'formatted' 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
7 |     }
8 | }
[91/104] Compiling Trickery Fake+Location.swift
[92/104] Compiling Trickery Fake+Lorem.swift
[93/104] Compiling Trickery CountryData.swift
[94/104] Compiling Trickery StateData.swift
[95/104] Compiling Trickery Fake+Numerics.swift
[96/104] Compiling Trickery Fake+PersonNames.swift
[97/104] Compiling Trickery StreetData.swift
[98/104] Compiling Trickery DataResourceCodable.swift
[99/104] Emitting module Trickery
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+PhoneNumbers.swift:6:27: warning: static property 'formatted' is not concurrency-safe because non-'Sendable' type 'AnyGenerator<String>' may have shared mutable state; this is an error in the Swift 6 language mode
4 | extension Fake {
5 |     public enum PhoneNumbers {
6 |         public static let formatted: AnyGenerator<String> = Numerics.digits.replacingOccurrences(of: "#", in: "(###) ###-####")
  |                           `- warning: static property 'formatted' is not concurrency-safe because non-'Sendable' type 'AnyGenerator<String>' may have shared mutable state; this is an error in the Swift 6 language mode
7 |     }
8 | }
/Users/admin/builder/spi-builder-workspace/Sources/Genything/AnyGenerator.swift:2:15: note: generic struct 'AnyGenerator' does not conform to the 'Sendable' protocol
 1 | /// A type-erased `Generator`
 2 | public struct AnyGenerator<T>: Generator {
   |               `- note: generic struct 'AnyGenerator' does not conform to the 'Sendable' protocol
 3 |     /// Creates a type-erasing Generator to wrap the provided Generator
 4 |     ///
/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Fake+PhoneNumbers.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Genything'
1 | import Foundation
2 | import Genything
  | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Genything'
3 |
4 | extension Fake {
5 |     public enum PhoneNumbers {
6 |         public static let formatted: AnyGenerator<String> = Numerics.digits.replacingOccurrences(of: "#", in: "(###) ###-####")
  |                           |- note: annotate 'formatted' 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
7 |     }
8 | }
[100/104] Compiling Trickery Fake+Addresses.swift
[101/104] Compiling Trickery Fake+BusinessNames.swift
[102/104] Compiling Trickery Fake+Characters.swift
[103/104] Compiling Trickery PersonNamesData.swift
[104/104] Compiling Trickery resource_bundle_accessor.swift
Build complete! (25.22s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "Genything",
  "name" : "Genything",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "5.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    }
  ],
  "products" : [
    {
      "name" : "Genything",
      "targets" : [
        "Genything",
        "GenythingTest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Trickery",
      "targets" : [
        "Trickery"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TrickeryTests",
      "module_type" : "SwiftTarget",
      "name" : "TrickeryTests",
      "path" : "Tests/TrickeryTests",
      "sources" : [
        "FakeAddressesTests.swift",
        "FakeBusinessNames.swift",
        "FakeCharactersTests.swift",
        "FakeEmailsTests.swift",
        "FakeIDTests.swift",
        "FakeLocationTests.swift",
        "FakeLoremTests.swift",
        "FakeNumericsTests.swift",
        "FakePersonNamesTest.swift",
        "FakePhoneNumberTests.swift",
        "FakeWebTests.swift"
      ],
      "target_dependencies" : [
        "Genything",
        "Trickery",
        "GenythingTest"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Trickery",
      "module_type" : "SwiftTarget",
      "name" : "Trickery",
      "path" : "Sources/Trickery",
      "product_memberships" : [
        "Trickery"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Resources/Addresses/CityData.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Resources/Addresses/CountryData.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Resources/Addresses/StateData.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Resources/Addresses/StreetData.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Resources/Lorem/LoremData.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Resources/Names/BusinessNamesData.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/Trickery/Resources/Names/PersonNamesData.json",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Fake+Addresses.swift",
        "Fake+BusinessNames.swift",
        "Fake+Characters.swift",
        "Fake+Coin.swift",
        "Fake+Emails.swift",
        "Fake+ID.swift",
        "Fake+Location.swift",
        "Fake+Lorem.swift",
        "Fake+Numerics.swift",
        "Fake+PersonNames.swift",
        "Fake+PhoneNumbers.swift",
        "Fake+Web.swift",
        "Fake.swift",
        "ResourceHelper/Addresses/CityData.swift",
        "ResourceHelper/Addresses/CountryData.swift",
        "ResourceHelper/Addresses/StateData.swift",
        "ResourceHelper/Addresses/StreetData.swift",
        "ResourceHelper/DataResourceCodable.swift",
        "ResourceHelper/Lorem/LoremData.swift",
        "ResourceHelper/Names/BusinessNamesData.swift",
        "ResourceHelper/Names/PersonNamesData.swift"
      ],
      "target_dependencies" : [
        "Genything"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GenythingTests",
      "module_type" : "SwiftTarget",
      "name" : "GenythingTests",
      "path" : "Tests/GenythingTests",
      "sources" : [
        "Arbitrary/Instance/ArbitraryCollectionElementTests.swift",
        "Arbitrary/Instance/ArbitraryRangeTests.swift",
        "Arbitrary/Type/FoundationArbitraryTests.swift",
        "Arbitrary/Type/PizzaArbitraryTests.swift",
        "Arbitrary/Type/SwiftArbitraryTests.swift",
        "GeneratorProfiler.swift",
        "Generator_MonadLaws.swift",
        "Generators/Combinations/Generators_OneOfTests.swift",
        "Generators/Combinations/Generators_WeightedTests.swift",
        "Generators/Generators_CollectTests.swift",
        "Generators/Generators_IterateTests.swift",
        "Generators/Generators_LazyTests.swift",
        "Generators/Generators_LoopTests.swift",
        "Generators/Generators_MergeTests.swift",
        "Generators/Generators_RandomizedGeneratorTests.swift",
        "Generators/Generators_ShuffleLoop.swift",
        "Generators/Generators_ShuffledTests.swift",
        "Helpers/Array+countDistinct.swift",
        "Models/Pizza+Arbitrary.swift",
        "Models/Pizza.swift",
        "Operators/Generator_AlsoTests.swift",
        "Operators/Generator_DebugTests.swift",
        "Operators/Generator_DistinctTests.swift",
        "Operators/Generator_DropTests.swift",
        "Operators/Generator_ExpandTests.swift",
        "Operators/Generator_FilterTests.swift",
        "Operators/Generator_FlatMapTests.swift",
        "Operators/Generator_FlattenTests.swift",
        "Operators/Generator_MapTests.swift",
        "Operators/Generator_OrTests.swift",
        "Operators/Generator_PrependTests.swift",
        "Operators/Generator_RecomposeTests.swift",
        "Operators/Generator_RegenerateTests.swift",
        "Operators/Generator_ReplaceNilTests.swift",
        "Operators/Generator_ReplacingOccurencesTests.swift",
        "Operators/Generator_ScanTests.swift",
        "Operators/Generator_ZipTests.swift",
        "Producers/Generator_SequenceTests.swift",
        "Producers/Generator_TakeTests.swift",
        "Random/RandomSourceTests.swift",
        "examples/DiceRoller.swift"
      ],
      "target_dependencies" : [
        "Genything",
        "GenythingTest"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GenythingTestTests",
      "module_type" : "SwiftTarget",
      "name" : "GenythingTestTests",
      "path" : "Tests/GenythingTestTests",
      "sources" : [
        "TestAllSatisfyTests.swift",
        "TestAllTests.swift"
      ],
      "target_dependencies" : [
        "Genything",
        "GenythingTest"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GenythingTest",
      "module_type" : "SwiftTarget",
      "name" : "GenythingTest",
      "path" : "Sources/GenythingTest",
      "product_memberships" : [
        "Genything"
      ],
      "sources" : [
        "Core/Gen+test.swift",
        "Core/TestConfig.swift",
        "Core/TestReport.swift",
        "XCTest/Assertion.swift",
        "XCTest/fail.swift",
        "XCTest/testAll.swift",
        "XCTest/testAllSatisfy.swift"
      ],
      "target_dependencies" : [
        "Genything"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Genything",
      "module_type" : "SwiftTarget",
      "name" : "Genything",
      "path" : "Sources/Genything",
      "product_memberships" : [
        "Genything",
        "Trickery"
      ],
      "sources" : [
        "AnyGenerator.swift",
        "Arbitrary/Instance/CaseIterable+arbitrary.swift",
        "Arbitrary/Instance/Collection+arbitrary.swift",
        "Arbitrary/Instance/RandomInRangeable.swift",
        "Arbitrary/Instance/Range+arbitrary.swift",
        "Arbitrary/Type/Arbitrary.swift",
        "Arbitrary/Type/CoreLocation+Arbitrary.swift",
        "Arbitrary/Type/Foundation+Arbitrary.swift",
        "Arbitrary/Type/Swift+Arbitrary.swift",
        "Arbitrary/Type/UIKit+Arbitrary.swift",
        "Arbitrary/Type/helper/UUID+initRandomBits.swift",
        "Composer.swift",
        "Generator.swift",
        "GeneratorProfiler.swift",
        "GeneratorSequence.swift",
        "Generators/Compositional/Generators+collect.swift",
        "Generators/Compositional/Generators+compose.swift",
        "Generators/Compositional/Generators+either.swift",
        "Generators/Compositional/Generators+join.swift",
        "Generators/Compositional/Generators+merge.swift",
        "Generators/Compositional/Generators+oneOf.swift",
        "Generators/Compositional/Generators+reduce.swift",
        "Generators/Compositional/Generators+replacing.swift",
        "Generators/Compositional/Generators+switchOnNil.swift",
        "Generators/Compositional/Generators+weighted.swift",
        "Generators/Data/Generators+constant.swift",
        "Generators/Data/Generators+iterate.swift",
        "Generators/Data/Generators+loop.swift",
        "Generators/Data/Generators+shuffleLoop.swift",
        "Generators/Data/Generators+shuffled.swift",
        "Generators/Data/Generators+void.swift",
        "Generators/Generators.swift",
        "Helpers/String+replacingOccurences.swift",
        "LazyGenerator.swift",
        "Operators/Effect/Generator+also.swift",
        "Operators/Effect/Generator+debug.swift",
        "Operators/Generator+distinct.swift",
        "Operators/Generator+drop.swift",
        "Operators/Generator+expand.swift",
        "Operators/Generator+filter.swift",
        "Operators/Generator+flatMap.swift",
        "Operators/Generator+flatten.swift",
        "Operators/Generator+generate.swift",
        "Operators/Generator+map.swift",
        "Operators/Generator+or.swift",
        "Operators/Generator+orNil.swift",
        "Operators/Generator+prepend.swift",
        "Operators/Generator+recompose.swift",
        "Operators/Generator+regenerate.swift",
        "Operators/Generator+replace.swift",
        "Operators/Generator+replacingOccurences.swift",
        "Operators/Generator+scan.swift",
        "Operators/Generator+zip.swift",
        "Operators/Produce/Generator+sequence.swift",
        "Operators/Produce/Generator+take.swift",
        "Random/RandomSource+drop.swift",
        "Random/RandomSource.swift",
        "Random/rng/LinearCongruentialRandomNumberGenerator.swift",
        "RandomizedGenerator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.