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 Fakery with Swift 6.0 for Linux.

Swift 6 data race errors: 3

Build Command

bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vadymmarkov/Fakery.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/vadymmarkov/Fakery
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at f68f2ce Merge pull request #154 from dimonker/master
Cloned https://github.com/vadymmarkov/Fakery.git
Revision (git rev-parse @):
f68f2ceaaf6782db234e4cbcd5f06dbeeb91af7e
SUCCESS checkout https://github.com/vadymmarkov/Fakery.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/vadymmarkov/Fakery.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Fetching https://github.com/Quick/Nimble.git
Fetching https://github.com/Quick/Quick.git
[1/14549] Fetching quick
[14550/33189] Fetching quick, nimble
Fetched https://github.com/Quick/Quick.git from cache (1.60s)
Fetched https://github.com/Quick/Nimble.git from cache (1.62s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 9.0.0 (0.53s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 3.1.2 (0.54s)
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 9.0.0
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 3.1.2
Building for debugging...
[0/29] Write sources
[0/29] Copying en-CA.json
[0/29] Copying de-CH.json
[0/29] Copying en-GB.json
[0/29] Copying en-AU.json
[0/29] Copying de-AT.json
[2/29] Copying de.json
[7/29] Copying en-US.json
[7/29] Copying zh-CN.json
[8/29] Copying en-TEST.json
[10/29] Copying en-IND.json
[11/29] Copying zh-TW.json
[12/29] Copying tr-TR.json
[12/29] Copying ru.json
[12/29] Copying sv.json
[12/29] Copying pt-BR.json
[13/29] Copying sk.json
[16/29] Copying nl.json
[16/29] Copying ko.json
[16/29] Copying pl.json
[16/29] Copying ja.json
[16/29] Copying uk.json
[17/29] Copying nb-NO.json
[23/29] Copying it.json
[23/29] Copying fa.json
[23/29] Copying fr.json
[23/29] Copying es.json
[27/29] Copying en.json
[28/29] Write swift-version-24593BA9C3E375BF.txt
[30/57] Emitting module Fakery
/host/spi-builder-workspace/Sources/Fakery/Config.swift:4:21: warning: static property 'dirPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
2 |   public static let defaultLocale: String = "en"
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
  |                     |- warning: static property 'dirPath' 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 'dirPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirPath' 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
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
/host/spi-builder-workspace/Sources/Fakery/Config.swift:5:21: warning: static property 'dirFrameworkPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
  |                     |- warning: static property 'dirFrameworkPath' 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 'dirFrameworkPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirFrameworkPath' 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
6 |   public static var dirResourcePath: String = ""
7 | }
/host/spi-builder-workspace/Sources/Fakery/Config.swift:6:21: warning: static property 'dirResourcePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
  |                     |- warning: static property 'dirResourcePath' 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 'dirResourcePath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirResourcePath' 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 |
[31/60] Compiling Fakery PhoneNumber.swift
[32/60] Compiling Fakery ProgrammingLanguage.swift
[33/60] Compiling Fakery Team.swift
[34/60] Compiling Fakery Vehicle.swift
[35/60] Compiling Fakery Zelda.swift
[36/60] Compiling Fakery resource_bundle_accessor.swift
[37/60] Compiling Fakery Bank.swift
[38/60] Compiling Fakery Business.swift
[39/60] Compiling Fakery Car.swift
[40/60] Compiling Fakery Cat.swift
[41/60] Compiling Fakery Generator.swift
[42/60] Compiling Fakery Ham.swift
[43/60] Compiling Fakery Hobbit.swift
[44/60] Compiling Fakery House.swift
[45/60] Compiling Fakery StringExtensions.swift
[46/60] Compiling Fakery Faker.swift
[47/60] Compiling Fakery Address.swift
[48/60] Compiling Fakery App.swift
[49/60] Compiling Fakery Internet.swift
[50/60] Compiling Fakery Lorem.swift
[51/60] Compiling Fakery Name.swift
[52/60] Compiling Fakery Number.swift
[53/60] Compiling Fakery Config.swift
/host/spi-builder-workspace/Sources/Fakery/Config.swift:4:21: warning: static property 'dirPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
2 |   public static let defaultLocale: String = "en"
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
  |                     |- warning: static property 'dirPath' 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 'dirPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirPath' 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
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
/host/spi-builder-workspace/Sources/Fakery/Config.swift:5:21: warning: static property 'dirFrameworkPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
  |                     |- warning: static property 'dirFrameworkPath' 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 'dirFrameworkPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirFrameworkPath' 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
6 |   public static var dirResourcePath: String = ""
7 | }
/host/spi-builder-workspace/Sources/Fakery/Config.swift:6:21: warning: static property 'dirResourcePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
  |                     |- warning: static property 'dirResourcePath' 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 'dirResourcePath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirResourcePath' 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 |
[54/60] Compiling Fakery Parser.swift
/host/spi-builder-workspace/Sources/Fakery/Config.swift:4:21: warning: static property 'dirPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
2 |   public static let defaultLocale: String = "en"
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
  |                     |- warning: static property 'dirPath' 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 'dirPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirPath' 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
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
/host/spi-builder-workspace/Sources/Fakery/Config.swift:5:21: warning: static property 'dirFrameworkPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
  |                     |- warning: static property 'dirFrameworkPath' 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 'dirFrameworkPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirFrameworkPath' 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
6 |   public static var dirResourcePath: String = ""
7 | }
/host/spi-builder-workspace/Sources/Fakery/Config.swift:6:21: warning: static property 'dirResourcePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
  |                     |- warning: static property 'dirResourcePath' 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 'dirResourcePath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirResourcePath' 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 |
[55/60] Compiling Fakery Provider.swift
/host/spi-builder-workspace/Sources/Fakery/Config.swift:4:21: warning: static property 'dirPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
2 |   public static let defaultLocale: String = "en"
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
  |                     |- warning: static property 'dirPath' 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 'dirPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirPath' 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
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
/host/spi-builder-workspace/Sources/Fakery/Config.swift:5:21: warning: static property 'dirFrameworkPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
  |                     |- warning: static property 'dirFrameworkPath' 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 'dirFrameworkPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirFrameworkPath' 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
6 |   public static var dirResourcePath: String = ""
7 | }
/host/spi-builder-workspace/Sources/Fakery/Config.swift:6:21: warning: static property 'dirResourcePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
  |                     |- warning: static property 'dirResourcePath' 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 'dirResourcePath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirResourcePath' 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 |
[56/60] Compiling Fakery ArrayExtension.swift
/host/spi-builder-workspace/Sources/Fakery/Config.swift:4:21: warning: static property 'dirPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
2 |   public static let defaultLocale: String = "en"
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
  |                     |- warning: static property 'dirPath' 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 'dirPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirPath' 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
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
/host/spi-builder-workspace/Sources/Fakery/Config.swift:5:21: warning: static property 'dirFrameworkPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
3 |   public static let pathExtension: String = "json"
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
  |                     |- warning: static property 'dirFrameworkPath' 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 'dirFrameworkPath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirFrameworkPath' 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
6 |   public static var dirResourcePath: String = ""
7 | }
/host/spi-builder-workspace/Sources/Fakery/Config.swift:6:21: warning: static property 'dirResourcePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
4 |   public static var dirPath: String = "Resources/Locales"
5 |   public static var dirFrameworkPath: String = ""
6 |   public static var dirResourcePath: String = ""
  |                     |- warning: static property 'dirResourcePath' 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 'dirResourcePath' to a 'let' constant to make 'Sendable' shared state immutable
  |                     |- note: annotate 'dirResourcePath' 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 |
[57/60] Compiling Fakery Commerce.swift
[58/60] Compiling Fakery Company.swift
[59/60] Compiling Fakery Date.swift
[60/60] Compiling Fakery Gender.swift
Build complete! (19.53s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "quick",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.1.2",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Quick.git"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.0.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    }
  ],
  "manifest_display_name" : "Fakery",
  "name" : "Fakery",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "Fakery",
      "targets" : [
        "Fakery"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FakeryTests",
      "module_type" : "SwiftTarget",
      "name" : "FakeryTests",
      "path" : "Tests/Fakery",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "sources" : [
        "ConfigSpec.swift",
        "Data/ParserSpec.swift",
        "Data/ProviderSpec.swift",
        "FakerSpec.swift",
        "Generators/AddressSpec.swift",
        "Generators/AppSpec.swift",
        "Generators/BankSpec.swift",
        "Generators/BusinessSpec.swift",
        "Generators/CarSpec.swift",
        "Generators/CatSpec.swift",
        "Generators/CommerceSpec.swift",
        "Generators/CompanySpec.swift",
        "Generators/DateSpec.swift",
        "Generators/GenderSpec.swift",
        "Generators/GeneratorSpec.swift",
        "Generators/HamSpec.swift",
        "Generators/HobbitSpec.swift",
        "Generators/HouseSpec.swift",
        "Generators/InternetSpec.swift",
        "Generators/LoremSpec.swift",
        "Generators/NameSpec.swift",
        "Generators/NumberSpec.swift",
        "Generators/PhoneNumberSpec.swift",
        "Generators/ProgrammingLanguageSpec.swift",
        "Generators/TeamSpec.swift",
        "Generators/VehicleSpec.swift",
        "Generators/ZeldaSpec.swift"
      ],
      "target_dependencies" : [
        "Fakery"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Fakery",
      "module_type" : "SwiftTarget",
      "name" : "Fakery",
      "path" : "Sources/Fakery",
      "product_memberships" : [
        "Fakery"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/de-CH.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/tr-TR.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/ja.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/de-AT.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/zh-CN.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/es.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/nb-NO.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/en-AU.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/ru.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/sv.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/en.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/en-GB.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/pt-BR.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/fr.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/zh-TW.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/it.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/uk.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/ko.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/sk.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/en-TEST.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/fa.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/en-CA.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/en-US.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/nl.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/en-IND.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/de.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Sources/Fakery/Resources/Locales/pl.json",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Config.swift",
        "Data/Parser.swift",
        "Data/Provider.swift",
        "Extensions/ArrayExtension.swift",
        "Extensions/StringExtensions.swift",
        "Faker.swift",
        "Generators/Address.swift",
        "Generators/App.swift",
        "Generators/Bank.swift",
        "Generators/Business.swift",
        "Generators/Car.swift",
        "Generators/Cat.swift",
        "Generators/Commerce.swift",
        "Generators/Company.swift",
        "Generators/Date.swift",
        "Generators/Gender.swift",
        "Generators/Generator.swift",
        "Generators/Ham.swift",
        "Generators/Hobbit.swift",
        "Generators/House.swift",
        "Generators/Internet.swift",
        "Generators/Lorem.swift",
        "Generators/Name.swift",
        "Generators/Number.swift",
        "Generators/PhoneNumber.swift",
        "Generators/ProgrammingLanguage.swift",
        "Generators/Team.swift",
        "Generators/Vehicle.swift",
        "Generators/Zelda.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.