The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of CryptorRSA, reference 1.0.203 (f40325), with Swift 6.0 for macOS (SPM) on 3 Apr 2025 08:33:07 UTC.

Swift 6 data race errors: 4

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.60.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Kitura/BlueRSA.git
Reference: 1.0.203
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Kitura/BlueRSA
 * tag               1.0.203    -> FETCH_HEAD
HEAD is now at f403255 Updating version to 1.0.203 (#87)
Cloned https://github.com/Kitura/BlueRSA.git
Revision (git rev-parse @):
f40325520344a966523b214394aa350132a6af68
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Kitura/BlueRSA.git at 1.0.203
========================================
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": "bluersa",
      "name": "CryptorRSA",
      "url": "https://github.com/Kitura/BlueRSA.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/BlueRSA",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/Kitura/BlueRSA.git
[1/2018] Fetching bluersa
Fetched https://github.com/Kitura/BlueRSA.git from cache (1.19s)
Creating working copy for https://github.com/Kitura/BlueRSA.git
Working copy of https://github.com/Kitura/BlueRSA.git resolved at 1.0.203 (f403255)
warning: '.resolve-product-dependencies': dependency 'bluersa' 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/Kitura/BlueRSA.git
https://github.com/Kitura/BlueRSA.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CryptorRSA",
  "name" : "CryptorRSA",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CryptorRSA",
      "targets" : [
        "CryptorRSA"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CryptorRSATests",
      "module_type" : "SwiftTarget",
      "name" : "CryptorRSATests",
      "path" : "Tests/CryptorRSATests",
      "sources" : [
        "CryptorRSATests.swift"
      ],
      "target_dependencies" : [
        "CryptorRSA"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CryptorRSA",
      "module_type" : "SwiftTarget",
      "name" : "CryptorRSA",
      "path" : "Sources/CryptorRSA",
      "product_memberships" : [
        "CryptorRSA"
      ],
      "sources" : [
        "CryptorRSA.swift",
        "CryptorRSAConstants.swift",
        "CryptorRSADigest.swift",
        "CryptorRSAErrors.swift",
        "CryptorRSAKey.swift",
        "CryptorRSAUtilities.swift",
        "Data+Extensions.swift",
        "SSLPointerTricks.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-5BDAB9E9C0126B9D.txt
[3/11] Compiling CryptorRSA Data+Extensions.swift
[4/11] Compiling CryptorRSA SSLPointerTricks.swift
[5/11] Compiling CryptorRSA CryptorRSAUtilities.swift
[6/11] Compiling CryptorRSA CryptorRSA.swift
[7/11] Compiling CryptorRSA CryptorRSADigest.swift
[8/11] Compiling CryptorRSA CryptorRSAConstants.swift
[9/11] Compiling CryptorRSA CryptorRSAKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:614:22: warning: static property 'bits1024' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | 		/// Denotes the size of the RSA key.
611 | 		public struct KeySize {
    |                 `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | 			let bits: Int
613 | 			/// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
614 | 			public static let bits1024 = KeySize(bits: 1024)
    |                      |- warning: static property 'bits1024' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'bits1024' 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
615 | 			/// A 2048 bit RSA key. Recommended if security will not be required beyond 2030.
616 | 			public static let bits2048 = KeySize(bits: 2048)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:616:22: warning: static property 'bits2048' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | 		/// Denotes the size of the RSA key.
611 | 		public struct KeySize {
    |                 `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | 			let bits: Int
613 | 			/// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
614 | 			public static let bits1024 = KeySize(bits: 1024)
615 | 			/// A 2048 bit RSA key. Recommended if security will not be required beyond 2030.
616 | 			public static let bits2048 = KeySize(bits: 2048)
    |                      |- warning: static property 'bits2048' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'bits2048' 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
617 | 			/// A 3072 bit RSA key. Recommended if security is required beyond 2030.
618 | 			public static let bits3072 = KeySize(bits: 3072)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:618:22: warning: static property 'bits3072' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | 		/// Denotes the size of the RSA key.
611 | 		public struct KeySize {
    |                 `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | 			let bits: Int
613 | 			/// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
    :
616 | 			public static let bits2048 = KeySize(bits: 2048)
617 | 			/// A 3072 bit RSA key. Recommended if security is required beyond 2030.
618 | 			public static let bits3072 = KeySize(bits: 3072)
    |                      |- warning: static property 'bits3072' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'bits3072' 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
619 | 			/// A 4096 bit RSA key.
620 | 			public static let bits4096 = KeySize(bits: 4096)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:620:22: warning: static property 'bits4096' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | 		/// Denotes the size of the RSA key.
611 | 		public struct KeySize {
    |                 `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | 			let bits: Int
613 | 			/// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
    :
618 | 			public static let bits3072 = KeySize(bits: 3072)
619 | 			/// A 4096 bit RSA key.
620 | 			public static let bits4096 = KeySize(bits: 4096)
    |                      |- warning: static property 'bits4096' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'bits4096' 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
621 | 		}
622 |
[10/11] Emitting module CryptorRSA
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:614:22: warning: static property 'bits1024' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | 		/// Denotes the size of the RSA key.
611 | 		public struct KeySize {
    |                 `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | 			let bits: Int
613 | 			/// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
614 | 			public static let bits1024 = KeySize(bits: 1024)
    |                      |- warning: static property 'bits1024' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'bits1024' 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
615 | 			/// A 2048 bit RSA key. Recommended if security will not be required beyond 2030.
616 | 			public static let bits2048 = KeySize(bits: 2048)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:616:22: warning: static property 'bits2048' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | 		/// Denotes the size of the RSA key.
611 | 		public struct KeySize {
    |                 `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | 			let bits: Int
613 | 			/// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
614 | 			public static let bits1024 = KeySize(bits: 1024)
615 | 			/// A 2048 bit RSA key. Recommended if security will not be required beyond 2030.
616 | 			public static let bits2048 = KeySize(bits: 2048)
    |                      |- warning: static property 'bits2048' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'bits2048' 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
617 | 			/// A 3072 bit RSA key. Recommended if security is required beyond 2030.
618 | 			public static let bits3072 = KeySize(bits: 3072)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:618:22: warning: static property 'bits3072' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | 		/// Denotes the size of the RSA key.
611 | 		public struct KeySize {
    |                 `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | 			let bits: Int
613 | 			/// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
    :
616 | 			public static let bits2048 = KeySize(bits: 2048)
617 | 			/// A 3072 bit RSA key. Recommended if security is required beyond 2030.
618 | 			public static let bits3072 = KeySize(bits: 3072)
    |                      |- warning: static property 'bits3072' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'bits3072' 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
619 | 			/// A 4096 bit RSA key.
620 | 			public static let bits4096 = KeySize(bits: 4096)
/Users/admin/builder/spi-builder-workspace/Sources/CryptorRSA/CryptorRSAKey.swift:620:22: warning: static property 'bits4096' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
609 |
610 | 		/// Denotes the size of the RSA key.
611 | 		public struct KeySize {
    |                 `- note: consider making struct 'KeySize' conform to the 'Sendable' protocol
612 | 			let bits: Int
613 | 			/// A 1024 bit RSA key. Not recommended since this may become breakable in the near future.
    :
618 | 			public static let bits3072 = KeySize(bits: 3072)
619 | 			/// A 4096 bit RSA key.
620 | 			public static let bits4096 = KeySize(bits: 4096)
    |                      |- warning: static property 'bits4096' is not concurrency-safe because non-'Sendable' type 'CryptorRSA.RSAKey.KeySize' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'bits4096' 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
621 | 		}
622 |
[11/11] Compiling CryptorRSA CryptorRSAErrors.swift
Build complete! (10.13s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CryptorRSA",
  "name" : "CryptorRSA",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CryptorRSA",
      "targets" : [
        "CryptorRSA"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CryptorRSATests",
      "module_type" : "SwiftTarget",
      "name" : "CryptorRSATests",
      "path" : "Tests/CryptorRSATests",
      "sources" : [
        "CryptorRSATests.swift"
      ],
      "target_dependencies" : [
        "CryptorRSA"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CryptorRSA",
      "module_type" : "SwiftTarget",
      "name" : "CryptorRSA",
      "path" : "Sources/CryptorRSA",
      "product_memberships" : [
        "CryptorRSA"
      ],
      "sources" : [
        "CryptorRSA.swift",
        "CryptorRSAConstants.swift",
        "CryptorRSADigest.swift",
        "CryptorRSAErrors.swift",
        "CryptorRSAKey.swift",
        "CryptorRSAUtilities.swift",
        "Data+Extensions.swift",
        "SSLPointerTricks.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/kitura/bluersa/1.0.203
Repository:               Kitura/BlueRSA
Swift version used:       6.0
Target:                   CryptorRSA
Extracting symbol information for 'CryptorRSA'...
Finished extracting symbol information for 'CryptorRSA'. (2.88s)
Building documentation for 'CryptorRSA'...
warning: Return value documented for initializer returning void
    --> Sources/CryptorRSA/CryptorRSA.swift:1065:6-1065:53
1063 | 		///		- data:				`Data` containing the data.
1064 | 		///
1065 + 		/// - Returns:				Newly initialized EncryptedData`.
     |      ╰─suggestion: Remove return value documentation
1066 | 		///
1067 | 		public init(with data: Data) {
warning: Return value documented for initializer returning void
    --> Sources/CryptorRSA/CryptorRSA.swift:1078:6-1078:48
1076 | 		///		- base64String: 	Base64-encoded data of an encrypted message
1077 | 		///
1078 + 		/// - Returns:				Newly initialized `RSAData`.
     |      ╰─suggestion: Remove return value documentation
1079 | 		///
1080 | 		public override init(withBase64 base64String: String) throws {
warning: Return value documented for initializer returning void
    --> Sources/CryptorRSA/CryptorRSA.swift:1101:6-1101:51
1099 | 		///		- data:				`Data` containing the data.
1100 | 		///
1101 + 		/// - Returns:				Newly initialized `SignedData`.
     |      ╰─suggestion: Remove return value documentation
1102 | 		///
1103 | 		public init(with data: Data) {
warning: Return value documented for initializer returning void
   --> Sources/CryptorRSA/CryptorRSAErrors.swift:99:6-99:31
97  | 		/// 	- reason:	Optional Error Reason
98  | 		///
99  + 		/// - Returns: Error instance
    |      ╰─suggestion: Remove return value documentation
100 | 		///
101 | 		public init(code: Int, reason: String?) {
warning: Return value documented for initializer returning void
   --> Sources/CryptorRSA/CryptorRSAKey.swift:877:6-877:45
875 | 		///		- data: 			Key data
876 | 		///
877 + 		/// - Returns:				New `PublicKey` instance.
    |      ╰─suggestion: Remove return value documentation
878 | 		///
879 | 		public init(with data: Data) throws {
warning: Return value documented for initializer returning void
   --> Sources/CryptorRSA/CryptorRSAKey.swift:889:6-889:45
887 | 		///		- nativeKey:		Native key representation.
888 | 		///
889 + 		/// - Returns:				New `PublicKey` instance.
    |      ╰─suggestion: Remove return value documentation
890 | 		///
891 | 		public init(with nativeKey: NativeKey) {
warning: Return value documented for initializer returning void
   --> Sources/CryptorRSA/CryptorRSAKey.swift:929:6-929:46
927 | 		///		- data: 			Key data
928 | 		///
929 + 		/// - Returns:				New `PrivateKey` instance.
    |      ╰─suggestion: Remove return value documentation
930 | 		///
931 | 		public init(with data: Data) throws {
warning: Return value documented for initializer returning void
   --> Sources/CryptorRSA/CryptorRSAKey.swift:941:6-941:46
939 | 		///		- nativeKey:		Native key representation.
940 | 		///
941 + 		/// - Returns:				New `PrivateKey` instance.
    |      ╰─suggestion: Remove return value documentation
942 | 		///
943 | 		public init(with nativeKey: NativeKey) {
warning: Parameter 'type' is missing documentation
   --> Sources/CryptorRSA/CryptorRSAUtilities.swift:219:5-219:5
217 | 	/// - Parameters:
218 | 	///		- keyData:				`Data` containing the public key with or without the x509 header.
219 + 	///
    |     ╰─suggestion: Document 'type' parameter
220 | 	/// - Returns:					`Data` containing the public with header (if present) removed.
221 | 	///Finished building documentation for 'CryptorRSA' (0.39s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/kitura/bluersa/1.0.203
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2050] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.11s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.52s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3363] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.13s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.55s)
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
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
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-5BDAB9E9C0126B9D.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit SourceRange.swift
[11/57] Compiling SymbolKit Metadata.swift
[12/57] Compiling SymbolKit Module.swift
[13/57] Compiling SymbolKit OperatingSystem.swift
[14/57] Compiling SymbolKit Platform.swift
[15/57] Compiling SymbolKit Mixin+Equals.swift
[16/57] Compiling SymbolKit Mixin+Hash.swift
[17/57] Compiling SymbolKit Mixin.swift
[18/57] Compiling SymbolKit LineList.swift
[19/57] Compiling SymbolKit Position.swift
[20/57] Emitting module SymbolKit
[21/57] Compiling SymbolKit SemanticVersion.swift
[22/57] Compiling SymbolKit AccessControl.swift
[23/57] Compiling SymbolKit Availability.swift
[24/57] Compiling SymbolKit AvailabilityItem.swift
[25/57] Compiling SymbolKit Domain.swift
[26/57] Compiling SymbolKit DeclarationFragments.swift
[27/57] Compiling SymbolKit Fragment.swift
[28/57] Compiling SymbolKit FragmentKind.swift
[29/57] Compiling SymbolKit FunctionParameter.swift
[30/57] Compiling SymbolKit FunctionSignature.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 Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.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! (4.73s)
Building for debugging...
[0/1] Write swift-version-5BDAB9E9C0126B9D.txt
[2/10] Compiling CryptorRSA SSLPointerTricks.swift
[3/10] Compiling CryptorRSA Data+Extensions.swift
[4/10] Compiling CryptorRSA CryptorRSAErrors.swift
[5/10] Compiling CryptorRSA CryptorRSADigest.swift
[6/10] Compiling CryptorRSA CryptorRSAConstants.swift
[7/10] Emitting module CryptorRSA
[8/10] Compiling CryptorRSA CryptorRSA.swift
[9/10] Compiling CryptorRSA CryptorRSAUtilities.swift
[10/10] Compiling CryptorRSA CryptorRSAKey.swift
Build of target: 'CryptorRSA' complete! (1.00s)
     308
3	/Users/admin/builder/spi-builder-workspace/.docs/kitura/bluersa/1.0.203
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/kitura/bluersa/1.0.203
File count: 308
Doc size:   3.0MB
Preparing doc bundle ...
Uploading prod-kitura-bluersa-1.0.203-5ec77f1a.zip to s3://spi-docs-inbox/prod-kitura-bluersa-1.0.203-5ec77f1a.zip
Copying... [10%]
Copying... [21%]
Copying... [31%]
Copying... [41%]
Copying... [51%]
Copying... [62%]
Copying... [72%]
Copying... [82%]
Copying... [92%]
Copying... [100%]
Done.