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 ThirtyTo, reference main (9bbab8), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 15:48:46 UTC.

Swift 6 data race errors: 8

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.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brightdigit/ThirtyTo.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/brightdigit/ThirtyTo
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 9bbab80 Fix typo in README.md (#34)
Cloned https://github.com/brightdigit/ThirtyTo.git
Revision (git rev-parse @):
9bbab8048f7b22561a50be445a7767be316fa34c
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/brightdigit/ThirtyTo.git at main
========================================
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": "thirtyto",
      "name": "ThirtyTo",
      "url": "https://github.com/brightdigit/ThirtyTo.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ThirtyTo",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/brightdigit/ThirtyTo.git
[1/1792] Fetching thirtyto
Fetched https://github.com/brightdigit/ThirtyTo.git from cache (1.02s)
Creating working copy for https://github.com/brightdigit/ThirtyTo.git
Working copy of https://github.com/brightdigit/ThirtyTo.git resolved at main (9bbab80)
warning: '.resolve-product-dependencies': dependency 'thirtyto' 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/brightdigit/ThirtyTo.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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/25] Emitting module ThirtyTo
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingError.swift:24:14: warning: stored property 'details' of 'Sendable'-conforming struct 'Base32CrockfordDecodingError' has non-sendable type 'Base32CrockfordDecodingError.Details'; this is an error in the Swift 6 language mode
 4 | public struct Base32CrockfordDecodingError: Error {
 5 |   /// Type of error which occured
 6 |   public enum Details {
   |               `- note: consider making enum 'Details' conform to the 'Sendable' protocol
 7 |     /// Mismatch checksum.
 8 |     /// - Parameter checksum: Expected checksum value.
   :
22 |
23 |   /// The details of the type of error.
24 |   public let details: Details
   |              `- warning: stored property 'details' of 'Sendable'-conforming struct 'Base32CrockfordDecodingError' has non-sendable type 'Base32CrockfordDecodingError.Details'; this is an error in the Swift 6 language mode
25 |
26 |   private init(source: String, details: Base32CrockfordDecodingError.Details) {
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingOptions.swift:6:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options for decoding a Base32Crockford String.
 4 | public struct Base32CrockfordDecodingOptions {
   |               `- note: consider making struct 'Base32CrockfordDecodingOptions' conform to the 'Sendable' protocol
 5 |   /// Default options.
 6 |   public static let none = Base32CrockfordDecodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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 |   /// Whether to include a checksum character
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordEncoding.swift:6:21: warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncoding' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// Encoder and Decoder for Base32Crockford.
  4 | public struct Base32CrockfordEncoding {
    |               `- note: consider making struct 'Base32CrockfordEncoding' conform to the 'Sendable' protocol
  5 |   /// Shared encoding object.
  6 |   public static let encoding = Base32CrockfordEncoding()
    |                     |- warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncoding' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encoding' 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 |   private func validate(
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordEncodingOptions.swift:21:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options on encoding `Data` as String in Base32Crockford.
 4 | public struct Base32CrockfordEncodingOptions {
   |               `- note: consider making struct 'Base32CrockfordEncodingOptions' conform to the 'Sendable' protocol
 5 |   /// Options for grouping characters based on a group maximum length.
 6 |   public struct GroupingOptions {
   :
19 |
20 |   /// Default encoding options.
21 |   public static let none = Base32CrockfordEncodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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
22 |
23 |   /// Whether to include a checksum character.
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/Identifier.swift:27:21: warning: static property 'factory' is not concurrency-safe because non-'Sendable' type 'any IdentifierFactory' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |   /// Object for creating different types of identiifiers.
27 |   public static let factory: IdentifierFactory = ComposableIdentifierFactory()
   |                     |- warning: static property 'factory' is not concurrency-safe because non-'Sendable' type 'any IdentifierFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'factory' 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
28 |
29 |   /// Creates the default `RandomDataGenerator` based on the operating system.
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/IdentifierFactory.swift:2:17: note: protocol 'IdentifierFactory' does not conform to the 'Sendable' protocol
 1 | /// Factory object for creating identifiers.
 2 | public protocol IdentifierFactory {
   |                 `- note: protocol 'IdentifierFactory' does not conform to the 'Sendable' protocol
 3 |   /// Creates an identifier of a speciifc type based on the specifications.
 4 |   /// - Parameter specification: The specifications for the identifier.
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/Identifier.swift:32:21: warning: static property 'defaultRandomGenerator' is not concurrency-safe because non-'Sendable' type '() -> any RandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
30 |   /// - Returns: For Apple OSes, this uses `SecRandomCopyBytes`
31 |   ///    otherwise it uses `SystemRandomNumberGenerator`.
32 |   public static let defaultRandomGenerator = Data.defaultRandomGenerator
   |                     |- warning: static property 'defaultRandomGenerator' is not concurrency-safe because non-'Sendable' type '() -> any RandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'defaultRandomGenerator' 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
33 | }
34 |
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Identifiers/ULID.swift:26:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ULID.Specifications' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 |   /// Specifications for creating the ULID.
18 |   public enum Specifications {
   |               `- note: consider making enum 'Specifications' conform to the 'Sendable' protocol
19 |     /// Use the specific data.
20 |     case data(Data)
   :
24 |     /// The default specifications which use the current time
25 |     /// and the ``Identifier/defaultRandomGenerator``.
26 |     public static let `default`: Specifications = .parts(nil, .random(nil))
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ULID.Specifications' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' 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
27 |   }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Random/SecRandomDataGenerator.swift:9:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |   /// Uses `SecRandomCopyBytes` to generate a random `Data` object.
 6 |   public struct SecRandomDataGenerator: RandomDataGenerator {
   |                 `- note: consider making struct 'SecRandomDataGenerator' conform to the 'Sendable' protocol
 7 |     /// ``SecRandomDataGenerator`` does not need to be created.
 8 |     /// Just use this static instance.
 9 |     public static let shared = SecRandomDataGenerator()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
10 |
11 |     private init() {}
[4/27] Compiling ThirtyTo String.swift
[5/27] Compiling ThirtyTo UUID+Data.swift
[6/27] Compiling ThirtyTo AnyComposableIdentifier.swift
[7/27] Compiling ThirtyTo RandomDataGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Random/SecRandomDataGenerator.swift:9:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |   /// Uses `SecRandomCopyBytes` to generate a random `Data` object.
 6 |   public struct SecRandomDataGenerator: RandomDataGenerator {
   |                 `- note: consider making struct 'SecRandomDataGenerator' conform to the 'Sendable' protocol
 7 |     /// ``SecRandomDataGenerator`` does not need to be created.
 8 |     /// Just use this static instance.
 9 |     public static let shared = SecRandomDataGenerator()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
10 |
11 |     private init() {}
[8/27] Compiling ThirtyTo SecRandomDataGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Random/SecRandomDataGenerator.swift:9:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |   /// Uses `SecRandomCopyBytes` to generate a random `Data` object.
 6 |   public struct SecRandomDataGenerator: RandomDataGenerator {
   |                 `- note: consider making struct 'SecRandomDataGenerator' conform to the 'Sendable' protocol
 7 |     /// ``SecRandomDataGenerator`` does not need to be created.
 8 |     /// Just use this static instance.
 9 |     public static let shared = SecRandomDataGenerator()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
10 |
11 |     private init() {}
[9/27] Compiling ThirtyTo Base32CrockfordEncoding.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordEncoding.swift:6:21: warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncoding' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// Encoder and Decoder for Base32Crockford.
  4 | public struct Base32CrockfordEncoding {
    |               `- note: consider making struct 'Base32CrockfordEncoding' conform to the 'Sendable' protocol
  5 |   /// Shared encoding object.
  6 |   public static let encoding = Base32CrockfordEncoding()
    |                     |- warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncoding' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encoding' 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 |   private func validate(
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingOptions.swift:6:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options for decoding a Base32Crockford String.
 4 | public struct Base32CrockfordDecodingOptions {
   |               `- note: consider making struct 'Base32CrockfordDecodingOptions' conform to the 'Sendable' protocol
 5 |   /// Default options.
 6 |   public static let none = Base32CrockfordDecodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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 |   /// Whether to include a checksum character
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordEncodingOptions.swift:21:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options on encoding `Data` as String in Base32Crockford.
 4 | public struct Base32CrockfordEncodingOptions {
   |               `- note: consider making struct 'Base32CrockfordEncodingOptions' conform to the 'Sendable' protocol
 5 |   /// Options for grouping characters based on a group maximum length.
 6 |   public struct GroupingOptions {
   :
19 |
20 |   /// Default encoding options.
21 |   public static let none = Base32CrockfordEncodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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
22 |
23 |   /// Whether to include a checksum character.
[10/27] Compiling ThirtyTo Base32CrockfordEncodingOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordEncoding.swift:6:21: warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncoding' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// Encoder and Decoder for Base32Crockford.
  4 | public struct Base32CrockfordEncoding {
    |               `- note: consider making struct 'Base32CrockfordEncoding' conform to the 'Sendable' protocol
  5 |   /// Shared encoding object.
  6 |   public static let encoding = Base32CrockfordEncoding()
    |                     |- warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncoding' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encoding' 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 |   private func validate(
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingOptions.swift:6:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options for decoding a Base32Crockford String.
 4 | public struct Base32CrockfordDecodingOptions {
   |               `- note: consider making struct 'Base32CrockfordDecodingOptions' conform to the 'Sendable' protocol
 5 |   /// Default options.
 6 |   public static let none = Base32CrockfordDecodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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 |   /// Whether to include a checksum character
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordEncodingOptions.swift:21:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options on encoding `Data` as String in Base32Crockford.
 4 | public struct Base32CrockfordEncodingOptions {
   |               `- note: consider making struct 'Base32CrockfordEncodingOptions' conform to the 'Sendable' protocol
 5 |   /// Options for grouping characters based on a group maximum length.
 6 |   public struct GroupingOptions {
   :
19 |
20 |   /// Default encoding options.
21 |   public static let none = Base32CrockfordEncodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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
22 |
23 |   /// Whether to include a checksum character.
[11/27] Compiling ThirtyTo Binary.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordEncoding.swift:6:21: warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncoding' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// Encoder and Decoder for Base32Crockford.
  4 | public struct Base32CrockfordEncoding {
    |               `- note: consider making struct 'Base32CrockfordEncoding' conform to the 'Sendable' protocol
  5 |   /// Shared encoding object.
  6 |   public static let encoding = Base32CrockfordEncoding()
    |                     |- warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncoding' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encoding' 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 |   private func validate(
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingOptions.swift:6:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options for decoding a Base32Crockford String.
 4 | public struct Base32CrockfordDecodingOptions {
   |               `- note: consider making struct 'Base32CrockfordDecodingOptions' conform to the 'Sendable' protocol
 5 |   /// Default options.
 6 |   public static let none = Base32CrockfordDecodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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 |   /// Whether to include a checksum character
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordEncodingOptions.swift:21:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options on encoding `Data` as String in Base32Crockford.
 4 | public struct Base32CrockfordEncodingOptions {
   |               `- note: consider making struct 'Base32CrockfordEncodingOptions' conform to the 'Sendable' protocol
 5 |   /// Options for grouping characters based on a group maximum length.
 6 |   public struct GroupingOptions {
   :
19 |
20 |   /// Default encoding options.
21 |   public static let none = Base32CrockfordEncodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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
22 |
23 |   /// Whether to include a checksum character.
[12/27] Compiling ThirtyTo Base32CrockfordDecodingError.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingError.swift:24:14: warning: stored property 'details' of 'Sendable'-conforming struct 'Base32CrockfordDecodingError' has non-sendable type 'Base32CrockfordDecodingError.Details'; this is an error in the Swift 6 language mode
 4 | public struct Base32CrockfordDecodingError: Error {
 5 |   /// Type of error which occured
 6 |   public enum Details {
   |               `- note: consider making enum 'Details' conform to the 'Sendable' protocol
 7 |     /// Mismatch checksum.
 8 |     /// - Parameter checksum: Expected checksum value.
   :
22 |
23 |   /// The details of the type of error.
24 |   public let details: Details
   |              `- warning: stored property 'details' of 'Sendable'-conforming struct 'Base32CrockfordDecodingError' has non-sendable type 'Base32CrockfordDecodingError.Details'; this is an error in the Swift 6 language mode
25 |
26 |   private init(source: String, details: Base32CrockfordDecodingError.Details) {
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingOptions.swift:6:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options for decoding a Base32Crockford String.
 4 | public struct Base32CrockfordDecodingOptions {
   |               `- note: consider making struct 'Base32CrockfordDecodingOptions' conform to the 'Sendable' protocol
 5 |   /// Default options.
 6 |   public static let none = Base32CrockfordDecodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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 |   /// Whether to include a checksum character
[13/27] Compiling ThirtyTo Base32CrockfordDecodingOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingError.swift:24:14: warning: stored property 'details' of 'Sendable'-conforming struct 'Base32CrockfordDecodingError' has non-sendable type 'Base32CrockfordDecodingError.Details'; this is an error in the Swift 6 language mode
 4 | public struct Base32CrockfordDecodingError: Error {
 5 |   /// Type of error which occured
 6 |   public enum Details {
   |               `- note: consider making enum 'Details' conform to the 'Sendable' protocol
 7 |     /// Mismatch checksum.
 8 |     /// - Parameter checksum: Expected checksum value.
   :
22 |
23 |   /// The details of the type of error.
24 |   public let details: Details
   |              `- warning: stored property 'details' of 'Sendable'-conforming struct 'Base32CrockfordDecodingError' has non-sendable type 'Base32CrockfordDecodingError.Details'; this is an error in the Swift 6 language mode
25 |
26 |   private init(source: String, details: Base32CrockfordDecodingError.Details) {
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingOptions.swift:6:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options for decoding a Base32Crockford String.
 4 | public struct Base32CrockfordDecodingOptions {
   |               `- note: consider making struct 'Base32CrockfordDecodingOptions' conform to the 'Sendable' protocol
 5 |   /// Default options.
 6 |   public static let none = Base32CrockfordDecodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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 |   /// Whether to include a checksum character
[14/27] Compiling ThirtyTo Base32CrockfordEncoding+CharacterSets.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingError.swift:24:14: warning: stored property 'details' of 'Sendable'-conforming struct 'Base32CrockfordDecodingError' has non-sendable type 'Base32CrockfordDecodingError.Details'; this is an error in the Swift 6 language mode
 4 | public struct Base32CrockfordDecodingError: Error {
 5 |   /// Type of error which occured
 6 |   public enum Details {
   |               `- note: consider making enum 'Details' conform to the 'Sendable' protocol
 7 |     /// Mismatch checksum.
 8 |     /// - Parameter checksum: Expected checksum value.
   :
22 |
23 |   /// The details of the type of error.
24 |   public let details: Details
   |              `- warning: stored property 'details' of 'Sendable'-conforming struct 'Base32CrockfordDecodingError' has non-sendable type 'Base32CrockfordDecodingError.Details'; this is an error in the Swift 6 language mode
25 |
26 |   private init(source: String, details: Base32CrockfordDecodingError.Details) {
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Base32Crockford/Base32CrockfordDecodingOptions.swift:6:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Options for decoding a Base32Crockford String.
 4 | public struct Base32CrockfordDecodingOptions {
   |               `- note: consider making struct 'Base32CrockfordDecodingOptions' conform to the 'Sendable' protocol
 5 |   /// Default options.
 6 |   public static let none = Base32CrockfordDecodingOptions(withChecksum: false)
   |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'Base32CrockfordDecodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'none' 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 |   /// Whether to include a checksum character
[15/27] Compiling ThirtyTo Identifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/Identifier.swift:27:21: warning: static property 'factory' is not concurrency-safe because non-'Sendable' type 'any IdentifierFactory' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |   /// Object for creating different types of identiifiers.
27 |   public static let factory: IdentifierFactory = ComposableIdentifierFactory()
   |                     |- warning: static property 'factory' is not concurrency-safe because non-'Sendable' type 'any IdentifierFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'factory' 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
28 |
29 |   /// Creates the default `RandomDataGenerator` based on the operating system.
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/IdentifierFactory.swift:2:17: note: protocol 'IdentifierFactory' does not conform to the 'Sendable' protocol
 1 | /// Factory object for creating identifiers.
 2 | public protocol IdentifierFactory {
   |                 `- note: protocol 'IdentifierFactory' does not conform to the 'Sendable' protocol
 3 |   /// Creates an identifier of a speciifc type based on the specifications.
 4 |   /// - Parameter specification: The specifications for the identifier.
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/Identifier.swift:32:21: warning: static property 'defaultRandomGenerator' is not concurrency-safe because non-'Sendable' type '() -> any RandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
30 |   /// - Returns: For Apple OSes, this uses `SecRandomCopyBytes`
31 |   ///    otherwise it uses `SystemRandomNumberGenerator`.
32 |   public static let defaultRandomGenerator = Data.defaultRandomGenerator
   |                     |- warning: static property 'defaultRandomGenerator' is not concurrency-safe because non-'Sendable' type '() -> any RandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'defaultRandomGenerator' 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
33 | }
34 |
[16/27] Compiling ThirtyTo IdentifierFactory.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/Identifier.swift:27:21: warning: static property 'factory' is not concurrency-safe because non-'Sendable' type 'any IdentifierFactory' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |   /// Object for creating different types of identiifiers.
27 |   public static let factory: IdentifierFactory = ComposableIdentifierFactory()
   |                     |- warning: static property 'factory' is not concurrency-safe because non-'Sendable' type 'any IdentifierFactory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'factory' 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
28 |
29 |   /// Creates the default `RandomDataGenerator` based on the operating system.
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/IdentifierFactory.swift:2:17: note: protocol 'IdentifierFactory' does not conform to the 'Sendable' protocol
 1 | /// Factory object for creating identifiers.
 2 | public protocol IdentifierFactory {
   |                 `- note: protocol 'IdentifierFactory' does not conform to the 'Sendable' protocol
 3 |   /// Creates an identifier of a speciifc type based on the specifications.
 4 |   /// - Parameter specification: The specifications for the identifier.
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Factory/Identifier.swift:32:21: warning: static property 'defaultRandomGenerator' is not concurrency-safe because non-'Sendable' type '() -> any RandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
30 |   /// - Returns: For Apple OSes, this uses `SecRandomCopyBytes`
31 |   ///    otherwise it uses `SystemRandomNumberGenerator`.
32 |   public static let defaultRandomGenerator = Data.defaultRandomGenerator
   |                     |- warning: static property 'defaultRandomGenerator' is not concurrency-safe because non-'Sendable' type '() -> any RandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: annotate 'defaultRandomGenerator' 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
33 | }
34 |
[17/27] Compiling ThirtyTo Array.swift
[18/27] Compiling ThirtyTo Data.swift
[19/27] Compiling ThirtyTo Date.swift
[20/27] Compiling ThirtyTo AnyIdentifierSpecifications.swift
[21/27] Compiling ThirtyTo ComposableIdentifier.swift
[22/27] Compiling ThirtyTo ULID.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Identifiers/ULID.swift:26:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ULID.Specifications' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 |   /// Specifications for creating the ULID.
18 |   public enum Specifications {
   |               `- note: consider making enum 'Specifications' conform to the 'Sendable' protocol
19 |     /// Use the specific data.
20 |     case data(Data)
   :
24 |     /// The default specifications which use the current time
25 |     /// and the ``Identifier/defaultRandomGenerator``.
26 |     public static let `default`: Specifications = .parts(nil, .random(nil))
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ULID.Specifications' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' 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
27 |   }
28 |
[23/27] Compiling ThirtyTo UUID+ComposableIdentifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Identifiers/ULID.swift:26:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ULID.Specifications' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 |   /// Specifications for creating the ULID.
18 |   public enum Specifications {
   |               `- note: consider making enum 'Specifications' conform to the 'Sendable' protocol
19 |     /// Use the specific data.
20 |     case data(Data)
   :
24 |     /// The default specifications which use the current time
25 |     /// and the ``Identifier/defaultRandomGenerator``.
26 |     public static let `default`: Specifications = .parts(nil, .random(nil))
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ULID.Specifications' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' 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
27 |   }
28 |
[24/27] Compiling ThirtyTo Data+Random.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Random/SecRandomDataGenerator.swift:9:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |   /// Uses `SecRandomCopyBytes` to generate a random `Data` object.
 6 |   public struct SecRandomDataGenerator: RandomDataGenerator {
   |                 `- note: consider making struct 'SecRandomDataGenerator' conform to the 'Sendable' protocol
 7 |     /// ``SecRandomDataGenerator`` does not need to be created.
 8 |     /// Just use this static instance.
 9 |     public static let shared = SecRandomDataGenerator()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
10 |
11 |     private init() {}
[25/27] Compiling ThirtyTo NumberedDataGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ThirtyTo/Random/SecRandomDataGenerator.swift:9:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 |   /// Uses `SecRandomCopyBytes` to generate a random `Data` object.
 6 |   public struct SecRandomDataGenerator: RandomDataGenerator {
   |                 `- note: consider making struct 'SecRandomDataGenerator' conform to the 'Sendable' protocol
 7 |     /// ``SecRandomDataGenerator`` does not need to be created.
 8 |     /// Just use this static instance.
 9 |     public static let shared = SecRandomDataGenerator()
   |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SecRandomDataGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- 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
10 |
11 |     private init() {}
[26/27] Compiling ThirtyTo SizeSpecification.swift
[27/27] Compiling ThirtyTo UDID.swift
Build complete! (18.40s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ThirtyTo",
  "name" : "ThirtyTo",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ThirtyTo",
      "targets" : [
        "ThirtyTo"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ThirtyToTests",
      "module_type" : "SwiftTarget",
      "name" : "ThirtyToTests",
      "path" : "Tests/ThirtyToTests",
      "sources" : [
        "AnyComposableIdentifierTests.swift",
        "Base32CrockfordTests.swift",
        "BinaryTests.swift",
        "Extensions/Data.swift",
        "Extensions/MockNumberGenerator.swift",
        "Extensions/MockRandomGenerator.swift",
        "Extensions/String.swift",
        "Extensions/UInt128+Data.swift",
        "Extensions/UInt128.swift",
        "IdentifierTests.swift",
        "RandomDataTests.swift",
        "SizeSpecificationTests.swift",
        "TimestampDataTests.swift",
        "ULIDTests.swift"
      ],
      "target_dependencies" : [
        "ThirtyTo"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ThirtyTo",
      "module_type" : "SwiftTarget",
      "name" : "ThirtyTo",
      "path" : "Sources/ThirtyTo",
      "product_memberships" : [
        "ThirtyTo"
      ],
      "sources" : [
        "Base32Crockford/Base32CrockfordDecodingError.swift",
        "Base32Crockford/Base32CrockfordDecodingOptions.swift",
        "Base32Crockford/Base32CrockfordEncoding+CharacterSets.swift",
        "Base32Crockford/Base32CrockfordEncoding.swift",
        "Base32Crockford/Base32CrockfordEncodingOptions.swift",
        "Base32Crockford/Binary.swift",
        "Extensions/Array.swift",
        "Extensions/Data.swift",
        "Extensions/Date.swift",
        "Extensions/String.swift",
        "Extensions/UUID+Data.swift",
        "Factory/AnyComposableIdentifier.swift",
        "Factory/AnyIdentifierSpecifications.swift",
        "Factory/ComposableIdentifier.swift",
        "Factory/Identifier.swift",
        "Factory/IdentifierFactory.swift",
        "Factory/SizeSpecification.swift",
        "Identifiers/UDID.swift",
        "Identifiers/ULID.swift",
        "Identifiers/UUID+ComposableIdentifier.swift",
        "Random/Data+Random.swift",
        "Random/NumberedDataGenerator.swift",
        "Random/RandomDataGenerator.swift",
        "Random/SecRandomDataGenerator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/brightdigit/thirtyto/main
Repository:               brightdigit/ThirtyTo
Swift version used:       6.0
Target:                   ThirtyTo
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'ThirtyTo'...
Finished extracting symbol information for 'ThirtyTo'. (3.23s)
Building documentation for 'ThirtyTo'...
warning: Parameter 'specification' not found in instance method declaration
  --> ../Factory/IdentifierFactory.swift:12:21-12:34
10 |   #if swift(>=5.7)
11 |     /// Creates an identifier of a speciifc type based on the specifications.
12 +     /// - Parameter specification: The specifications for the identifier.
   |                     ╰─suggestion: Replace 'specification' with 'specifications'
13 |     /// - Returns: A new identifier.
14 |     func anyIdentifierWith(
warning: Parameter 'specifications' is missing documentation
  --> ../Factory/IdentifierFactory.swift:12:74-12:74
10 |   #if swift(>=5.7)
11 |     /// Creates an identifier of a speciifc type based on the specifications.
12 +     /// - Parameter specification: The specifications for the identifier.
   |                                                                          ╰─suggestion: Document 'specifications' parameter
13 |     /// - Returns: A new identifier.
14 |     func anyIdentifierWith(Finished building documentation for 'ThirtyTo' (0.20s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/brightdigit/thirtyto/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.35s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.65s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.23s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.68s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[2/8] Write sources
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Mixin+Equals.swift
[8/57] Compiling SymbolKit Mixin+Hash.swift
[9/57] Compiling SymbolKit Mixin.swift
[10/57] Compiling SymbolKit LineList.swift
[11/57] Compiling SymbolKit Position.swift
[12/57] Compiling SymbolKit GenericConstraint.swift
[13/57] Compiling SymbolKit GenericParameter.swift
[14/57] Compiling SymbolKit Generics.swift
[15/57] Compiling SymbolKit Namespace.swift
[16/57] Compiling SymbolKit DeclarationFragments.swift
[17/57] Compiling SymbolKit Fragment.swift
[18/57] Compiling SymbolKit FragmentKind.swift
[19/57] Compiling SymbolKit FunctionParameter.swift
[20/57] Compiling SymbolKit FunctionSignature.swift
[21/57] Compiling SymbolKit Relationship.swift
[22/57] Compiling SymbolKit RelationshipKind.swift
[23/57] Compiling SymbolKit SourceOrigin.swift
[24/57] Compiling SymbolKit GenericConstraints.swift
[25/57] Compiling SymbolKit Swift.swift
[26/57] Compiling SymbolKit SourceRange.swift
[27/57] Compiling SymbolKit Metadata.swift
[28/57] Compiling SymbolKit Module.swift
[29/57] Compiling SymbolKit OperatingSystem.swift
[30/57] Compiling SymbolKit Platform.swift
[31/57] Compiling SymbolKit Names.swift
[32/57] Compiling SymbolKit SPI.swift
[33/57] Compiling SymbolKit Snippet.swift
[34/57] Compiling SymbolKit Extension.swift
[35/57] Compiling SymbolKit Identifier.swift
[36/57] Compiling SymbolKit KindIdentifier.swift
[37/57] Compiling SymbolKit Location.swift
[38/57] Compiling SymbolKit Mutability.swift
[39/57] Compiling SymbolKit SemanticVersion.swift
[40/57] Compiling SymbolKit AccessControl.swift
[41/57] Compiling SymbolKit Availability.swift
[42/57] Compiling SymbolKit AvailabilityItem.swift
[43/57] Compiling SymbolKit Domain.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets Snippet.swift
[53/57] Compiling Snippets SnippetParser.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.64s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/24] Emitting module ThirtyTo
[3/26] Compiling ThirtyTo SizeSpecification.swift
[4/26] Compiling ThirtyTo UDID.swift
[5/26] Compiling ThirtyTo Data+Random.swift
[6/26] Compiling ThirtyTo NumberedDataGenerator.swift
[7/26] Compiling ThirtyTo Array.swift
[8/26] Compiling ThirtyTo Data.swift
[9/26] Compiling ThirtyTo Date.swift
[10/26] Compiling ThirtyTo Base32CrockfordDecodingError.swift
[11/26] Compiling ThirtyTo Base32CrockfordDecodingOptions.swift
[12/26] Compiling ThirtyTo Base32CrockfordEncoding+CharacterSets.swift
[13/26] Compiling ThirtyTo AnyIdentifierSpecifications.swift
[14/26] Compiling ThirtyTo ComposableIdentifier.swift
[15/26] Compiling ThirtyTo Identifier.swift
[16/26] Compiling ThirtyTo IdentifierFactory.swift
[17/26] Compiling ThirtyTo String.swift
[18/26] Compiling ThirtyTo UUID+Data.swift
[19/26] Compiling ThirtyTo AnyComposableIdentifier.swift
[20/26] Compiling ThirtyTo ULID.swift
[21/26] Compiling ThirtyTo UUID+ComposableIdentifier.swift
[22/26] Compiling ThirtyTo Base32CrockfordEncoding.swift
[23/26] Compiling ThirtyTo Base32CrockfordEncodingOptions.swift
[24/26] Compiling ThirtyTo Binary.swift
[25/26] Compiling ThirtyTo RandomDataGenerator.swift
[26/26] Compiling ThirtyTo SecRandomDataGenerator.swift
Build of target: 'ThirtyTo' complete! (1.04s)
     234
3	/Users/admin/builder/spi-builder-workspace/.docs/brightdigit/thirtyto/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/brightdigit/thirtyto/main
File count: 234
Doc size:   3.0MB
Preparing doc bundle ...
Uploading prod-brightdigit-thirtyto-main-0550df0f.zip to s3://spi-docs-inbox/prod-brightdigit-thirtyto-main-0550df0f.zip
Copying... [12%]
Copying... [24%]
Copying... [36%]
Copying... [48%]
Copying... [60%]
Copying... [72%]
Copying... [84%]
Copying... [96%]
Copying... [100%]
Done.