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 K1, reference 0.3.9 (7defdc), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 08:11:36 UTC.

Swift 6 data race errors: 2

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Sajjon/K1.git
Reference: 0.3.9
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Sajjon/K1
 * tag               0.3.9      -> FETCH_HEAD
HEAD is now at 7defdc4 Update libsecp256k1 commit 0fa84f869d51e1b71113d81fcd518ebcee08709a (version 0.3.2) (#38)
Submodule path 'Sources/secp256k1/libsecp256k1': checked out '0fa84f869d51e1b71113d81fcd518ebcee08709a'
Submodule 'Sources/secp256k1/libsecp256k1' (https://github.com/bitcoin-core/secp256k1.git) registered for path 'Sources/secp256k1/libsecp256k1'
Cloning into '/Users/admin/builder/spi-builder-workspace/Sources/secp256k1/libsecp256k1'...
Cloned https://github.com/Sajjon/K1.git
Revision (git rev-parse @):
7defdc448b10a21c1de3f32686c36483750c71c9
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Sajjon/K1.git at 0.3.9
========================================
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": "k1",
      "name": "K1",
      "url": "https://github.com/Sajjon/K1.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/K1",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/Sajjon/K1.git
[1/3569] Fetching k1
Fetched https://github.com/Sajjon/K1.git from cache (1.27s)
Creating working copy for https://github.com/Sajjon/K1.git
Working copy of https://github.com/Sajjon/K1.git resolved at 0.3.9 (7defdc4)
warning: '.resolve-product-dependencies': dependency 'k1' 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/Sajjon/K1.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/8] Write sources
[1/8] Write swift-version--7754E27361AE5C74.txt
[2/8] Compiling lax_der_privatekey_parsing.c
[3/8] Compiling lax_der_parsing.c
[4/8] Compiling ecdh_variants.c
[5/8] Compiling secp256k1.c
[6/8] Compiling precomputed_ecmult_gen.c
[7/8] Compiling precomputed_ecmult.c
[9/58] Emitting module K1
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSASignatureRecoverable.swift:135:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' may have shared mutable state; this is an error in the Swift 6 language mode
127 | 	/// Controls the order of the three components `R`, `S` and `V` (`RecoveryID`), specifyin
128 | 	/// either `R || S || V` called `.rsv` or `V || R || S` called `vrs`.
129 | 	public enum SerializationFormat {
    |              `- note: consider making enum 'SerializationFormat' conform to the 'Sendable' protocol
130 | 		/// `R || S || V` - the format `libsecp256k1` v0.3.0 uses as internal representation
131 | 		/// This is the default value of this library.
    :
133 |
134 | 		/// We use `R || S || V` as default values since `libsecp256k1` v0.3.0 uses it as its internal representation.
135 | 		public static let `default`: Self = .rsv
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' 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
136 |
137 | 		/// `V || R || S`.
[10/63] Compiling K1 ECDSA+Recovery+Wrapped.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
[11/63] Compiling K1 FFI+ECDSA+Recovery.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
[12/63] Compiling K1 PrivateKey+Wrapped.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
[13/63] Compiling K1 FFI+PublicKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
[14/63] Compiling K1 PublicKey+Wrapped.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
[15/63] Compiling K1 FFI+Schnorr.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
[16/63] Compiling K1 ASN1Error.swift
[17/63] Compiling K1 BytesUtil.swift
[18/63] Compiling K1 RNG_boring.swift
[19/63] Compiling K1 SafeCompare_boring.swift
[20/63] Compiling K1 SecureBytes.swift
[21/63] Compiling K1 ASN1OctetString.swift
[22/63] Compiling K1 ASN1Strings.swift
[23/63] Compiling K1 ArraySliceBigint.swift
[24/63] Compiling K1 GeneralizedTime.swift
[25/63] Compiling K1 ObjectIdentifier.swift
[26/63] Compiling K1 ECDSASignature.swift
[27/63] Compiling K1 PEMDocument.swift
[28/63] Compiling K1 PKCS8PrivateKey.swift
[29/63] Compiling K1 SEC1PrivateKey.swift
[30/63] Compiling K1 SubjectPublicKeyInfo.swift
[31/63] Compiling K1 Schnorr+Wrapped.swift
[32/63] Compiling K1 FFI+Call.swift
[33/63] Compiling K1 FFI+Context.swift
[34/63] Compiling K1 FFI+Format.swift
[35/63] Compiling K1 FFI+Raw.swift
[36/63] Compiling K1 Validation.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[37/63] Compiling K1 Data+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[38/63] Compiling K1 FFI+ECDH.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[39/63] Compiling K1 FFI+ECDSA.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[40/63] Compiling K1 ECDSA+NonRecovery+Wrapped.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[41/63] Compiling K1 FFI+ECDSA+NonRecovery.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[42/63] Compiling K1 Curve.swift
[43/63] Compiling K1 K1+Error.swift
[44/63] Compiling K1 SharedSecret.swift
[45/63] Compiling K1 ASN1.swift
[46/63] Compiling K1 ASN1Any.swift
[47/63] Compiling K1 ASN1BitString.swift
[48/63] Compiling K1 ASN1Boolean.swift
[49/63] Compiling K1 ASN1Identifier.swift
[50/63] Compiling K1 ASN1Integer.swift
[51/63] Compiling K1 ASN1Null.swift
[52/63] Compiling K1 K1.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSASignatureRecoverable.swift:135:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' may have shared mutable state; this is an error in the Swift 6 language mode
127 | 	/// Controls the order of the three components `R`, `S` and `V` (`RecoveryID`), specifyin
128 | 	/// either `R || S || V` called `.rsv` or `V || R || S` called `vrs`.
129 | 	public enum SerializationFormat {
    |              `- note: consider making enum 'SerializationFormat' conform to the 'Sendable' protocol
130 | 		/// `R || S || V` - the format `libsecp256k1` v0.3.0 uses as internal representation
131 | 		/// This is the default value of this library.
    :
133 |
134 | 		/// We use `R || S || V` as default values since `libsecp256k1` v0.3.0 uses it as its internal representation.
135 | 		public static let `default`: Self = .rsv
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' 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
136 |
137 | 		/// `V || R || S`.
[53/63] Compiling K1 KeyAgreement.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSASignatureRecoverable.swift:135:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' may have shared mutable state; this is an error in the Swift 6 language mode
127 | 	/// Controls the order of the three components `R`, `S` and `V` (`RecoveryID`), specifyin
128 | 	/// either `R || S || V` called `.rsv` or `V || R || S` called `vrs`.
129 | 	public enum SerializationFormat {
    |              `- note: consider making enum 'SerializationFormat' conform to the 'Sendable' protocol
130 | 		/// `R || S || V` - the format `libsecp256k1` v0.3.0 uses as internal representation
131 | 		/// This is the default value of this library.
    :
133 |
134 | 		/// We use `R || S || V` as default values since `libsecp256k1` v0.3.0 uses it as its internal representation.
135 | 		public static let `default`: Self = .rsv
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' 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
136 |
137 | 		/// `V || R || S`.
[54/63] Compiling K1 ECDSA.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSASignatureRecoverable.swift:135:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' may have shared mutable state; this is an error in the Swift 6 language mode
127 | 	/// Controls the order of the three components `R`, `S` and `V` (`RecoveryID`), specifyin
128 | 	/// either `R || S || V` called `.rsv` or `V || R || S` called `vrs`.
129 | 	public enum SerializationFormat {
    |              `- note: consider making enum 'SerializationFormat' conform to the 'Sendable' protocol
130 | 		/// `R || S || V` - the format `libsecp256k1` v0.3.0 uses as internal representation
131 | 		/// This is the default value of this library.
    :
133 |
134 | 		/// We use `R || S || V` as default values since `libsecp256k1` v0.3.0 uses it as its internal representation.
135 | 		public static let `default`: Self = .rsv
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' 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
136 |
137 | 		/// `V || R || S`.
[55/63] Compiling K1 ECDSASignatureNonRecoverable.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSASignatureRecoverable.swift:135:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' may have shared mutable state; this is an error in the Swift 6 language mode
127 | 	/// Controls the order of the three components `R`, `S` and `V` (`RecoveryID`), specifyin
128 | 	/// either `R || S || V` called `.rsv` or `V || R || S` called `vrs`.
129 | 	public enum SerializationFormat {
    |              `- note: consider making enum 'SerializationFormat' conform to the 'Sendable' protocol
130 | 		/// `R || S || V` - the format `libsecp256k1` v0.3.0 uses as internal representation
131 | 		/// This is the default value of this library.
    :
133 |
134 | 		/// We use `R || S || V` as default values since `libsecp256k1` v0.3.0 uses it as its internal representation.
135 | 		public static let `default`: Self = .rsv
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' 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
136 |
137 | 		/// `V || R || S`.
[56/63] Compiling K1 ECDSASignatureRecoverable.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSASignatureRecoverable.swift:135:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' may have shared mutable state; this is an error in the Swift 6 language mode
127 | 	/// Controls the order of the three components `R`, `S` and `V` (`RecoveryID`), specifyin
128 | 	/// either `R || S || V` called `.rsv` or `V || R || S` called `vrs`.
129 | 	public enum SerializationFormat {
    |              `- note: consider making enum 'SerializationFormat' conform to the 'Sendable' protocol
130 | 		/// `R || S || V` - the format `libsecp256k1` v0.3.0 uses as internal representation
131 | 		/// This is the default value of this library.
    :
133 |
134 | 		/// We use `R || S || V` as default values since `libsecp256k1` v0.3.0 uses it as its internal representation.
135 | 		public static let `default`: Self = .rsv
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' 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
136 |
137 | 		/// `V || R || S`.
[57/63] Compiling K1 RecoveryID.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSA.swift:22:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | extension K1.ECDSA {
 9 | 	/// Additional parameters used during validation of ECDSA signatures.
10 | 	public struct ValidationOptions {
   |                `- note: consider making struct 'ValidationOptions' conform to the 'Sendable' protocol
11 | 		/// Whether or not to consider malleable signatures valid.
12 | 		public let malleabilityStrictness: MalleabilityStrictness
   :
20 | extension K1.ECDSA.ValidationOptions {
21 | 	/// The default behavior of ECDSA signature validation.
22 | 	public static let `default`: Self = .init(
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSA.ValidationOptions' 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
23 | 		malleabilityStrictness: .rejected
24 | 	)
/Users/admin/builder/spi-builder-workspace/Sources/K1/K1/ECDSA/ECDSASignatureRecoverable.swift:135:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' may have shared mutable state; this is an error in the Swift 6 language mode
127 | 	/// Controls the order of the three components `R`, `S` and `V` (`RecoveryID`), specifyin
128 | 	/// either `R || S || V` called `.rsv` or `V || R || S` called `vrs`.
129 | 	public enum SerializationFormat {
    |              `- note: consider making enum 'SerializationFormat' conform to the 'Sendable' protocol
130 | 		/// `R || S || V` - the format `libsecp256k1` v0.3.0 uses as internal representation
131 | 		/// This is the default value of this library.
    :
133 |
134 | 		/// We use `R || S || V` as default values since `libsecp256k1` v0.3.0 uses it as its internal representation.
135 | 		public static let `default`: Self = .rsv
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'K1.ECDSAWithKeyRecovery.Signature.Compact.SerializationFormat' 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
136 |
137 | 		/// `V || R || S`.
[58/63] Compiling K1 Keys.generated.swift
[59/63] Compiling K1 PrivateKeyImplementation.swift
[60/63] Compiling K1 PublicKeyImplementation.swift
[61/63] Compiling K1 Schnorr+Signature.swift
[62/63] Compiling K1 Schnorr.swift
[63/63] Compiling K1 Signing.generated.swift
Build complete! (23.94s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "K1",
  "name" : "K1",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "K1",
      "targets" : [
        "K1"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "secp256k1",
      "module_type" : "ClangTarget",
      "name" : "secp256k1",
      "path" : "Sources/secp256k1",
      "product_memberships" : [
        "K1"
      ],
      "sources" : [
        "libsecp256k1/contrib/lax_der_parsing.c",
        "libsecp256k1/contrib/lax_der_privatekey_parsing.c",
        "libsecp256k1/src/precomputed_ecmult.c",
        "libsecp256k1/src/precomputed_ecmult_gen.c",
        "libsecp256k1/src/secp256k1.c",
        "src/ecdh_variants.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "K1Tests",
      "module_type" : "SwiftTarget",
      "name" : "K1Tests",
      "path" : "Tests/K1Tests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/K1Tests/TestVectors/bip340_schnorr_sign.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/K1Tests/TestVectors/bip340_schnorr_verify.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/K1Tests/TestVectors/cyon_ecdh_two_variants_with_kdf.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/K1Tests/TestVectors/trezor_ecdsa_sign_rfc6979.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/K1Tests/TestVectors/warta_cyon_publickey_recovery.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/K1Tests/TestVectors/wycheproof_ecdh_ASN1x963.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/K1Tests/TestVectors/wycheproof_ecdsa_verify_der.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/K1Tests/TestVectors/wycheproof_ecdsa_verify_p1363.json",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "TestCases/APITest.swift",
        "TestCases/ECDH/ECDHTests.swift",
        "TestCases/ECDH/ECDHWycheproofTests.swift",
        "TestCases/ECDH/TwoVariantsOfECDHWithKDFTests.swift",
        "TestCases/ECDSA/ECDSARecoverableSignatureRoundtripTests.swift",
        "TestCases/ECDSA/ECDSASignatureTests.swift",
        "TestCases/ECDSA/ECDSASignatureTrezorTests.swift",
        "TestCases/ECDSA/ECDSAWycheproofASNDEREncodedSignaturesTests.swift",
        "TestCases/ECDSA/ECDSAWycheproofIEEEP1364RSEncodedSignaturesTests.swift",
        "TestCases/Keys/PrivateKey/PrivateKeyEncodingTests.swift",
        "TestCases/Keys/PrivateKey/PrivateKeyGenerationTests.swift",
        "TestCases/Keys/PrivateKey/PrivateKeyImportTests.swift",
        "TestCases/Keys/PublicKey/PublicKeyEncodingTests.generated.swift",
        "TestCases/Keys/PublicKey/PublicKeyImportTests.swift",
        "TestCases/Performance/PerformanceTests.swift",
        "TestCases/PublicKeyRecovery/ECDASignaturePublicKeyRecoveryTests.swift",
        "TestCases/Schnorr/SchnorrSignatureBitcoinCoreTests.swift",
        "TestCases/Schnorr/SchnorrSignatureTests.swift",
        "TestCases/SecureBytes/SecureBytesTests.swift",
        "Util/ECSignature.swift",
        "Util/Wycheproof.swift",
        "Util/XCTestUtils.swift"
      ],
      "target_dependencies" : [
        "K1"
      ],
      "type" : "test"
    },
    {
      "c99name" : "K1",
      "module_type" : "SwiftTarget",
      "name" : "K1",
      "path" : "Sources/K1",
      "product_memberships" : [
        "K1"
      ],
      "sources" : [
        "K1.swift",
        "K1/ECDH/KeyAgreement.swift",
        "K1/ECDSA/ECDSA.swift",
        "K1/ECDSA/ECDSASignatureNonRecoverable.swift",
        "K1/ECDSA/ECDSASignatureRecoverable.swift",
        "K1/ECDSA/RecoveryID.swift",
        "K1/Keys/Keys.generated.swift",
        "K1/Keys/PrivateKeyImplementation.swift",
        "K1/Keys/PublicKeyImplementation.swift",
        "K1/Schnorr/Schnorr+Signature.swift",
        "K1/Schnorr/Schnorr.swift",
        "K1/Signing/Signing.generated.swift",
        "K1/Validation/Validation.generated.swift",
        "Support/Extensions/Data+Extensions.swift",
        "Support/FFI/API/ECDH/FFI+ECDH.swift",
        "Support/FFI/API/ECDSA/FFI+ECDSA.swift",
        "Support/FFI/API/ECDSA/NonRecovery/ECDSA+NonRecovery+Wrapped.swift",
        "Support/FFI/API/ECDSA/NonRecovery/FFI+ECDSA+NonRecovery.swift",
        "Support/FFI/API/ECDSA/Recovery/ECDSA+Recovery+Wrapped.swift",
        "Support/FFI/API/ECDSA/Recovery/FFI+ECDSA+Recovery.swift",
        "Support/FFI/API/Keys/PrivateKey/PrivateKey+Wrapped.swift",
        "Support/FFI/API/Keys/PublicKey/FFI+PublicKey.swift",
        "Support/FFI/API/Keys/PublicKey/PublicKey+Wrapped.swift",
        "Support/FFI/API/Schnorr/FFI+Schnorr.swift",
        "Support/FFI/API/Schnorr/Schnorr+Wrapped.swift",
        "Support/FFI/Internals/FFI+Call.swift",
        "Support/FFI/Internals/FFI+Context.swift",
        "Support/FFI/Internals/FFI+Format.swift",
        "Support/FFI/Internals/FFI+Raw.swift",
        "Support/Misc/Curve.swift",
        "Support/Misc/K1+Error.swift",
        "Support/Misc/SharedSecret.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/ASN1.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ASN1Any.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ASN1BitString.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ASN1Boolean.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ASN1Identifier.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ASN1Integer.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ASN1Null.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ASN1OctetString.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ASN1Strings.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ArraySliceBigint.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/GeneralizedTime.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/Basic ASN1 Types/ObjectIdentifier.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/ECDSASignature.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/PEMDocument.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/PKCS8PrivateKey.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/SEC1PrivateKey.swift",
        "Support/ThirdyParty/swift-crypto/ASN1/SubjectPublicKeyInfo.swift",
        "Support/ThirdyParty/swift-crypto/ASN1Error.swift",
        "Support/ThirdyParty/swift-crypto/BytesUtil.swift",
        "Support/ThirdyParty/swift-crypto/RNG_boring.swift",
        "Support/ThirdyParty/swift-crypto/SafeCompare_boring.swift",
        "Support/ThirdyParty/swift-crypto/SecureBytes.swift"
      ],
      "target_dependencies" : [
        "secp256k1"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/sajjon/k1/0.3.9
Repository:               Sajjon/K1
Swift version used:       6.0
Target:                   K1
Extracting symbol information for 'K1'...
Finished extracting symbol information for 'K1'. (3.59s)
Building documentation for 'K1'...
Finished building documentation for 'K1' (0.23s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/sajjon/k1/0.3.9
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.33s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.60s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3153] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.33s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.66s)
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
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling Snippets Snippet.swift
[7/53] Compiling Snippets SnippetParser.swift
[8/53] Emitting module Snippets
[9/53] Compiling SymbolKit Relationship.swift
[10/53] Compiling SymbolKit RelationshipKind.swift
[11/53] Compiling SymbolKit SourceOrigin.swift
[12/53] Compiling SymbolKit GenericConstraints.swift
[13/53] Compiling SymbolKit Swift.swift
[14/57] Compiling SymbolKit Names.swift
[15/57] Compiling SymbolKit SPI.swift
[16/57] Compiling SymbolKit Snippet.swift
[17/57] Compiling SymbolKit Extension.swift
[18/57] Compiling SymbolKit DeclarationFragments.swift
[19/57] Compiling SymbolKit Fragment.swift
[20/57] Compiling SymbolKit FragmentKind.swift
[21/57] Compiling SymbolKit FunctionParameter.swift
[22/57] Compiling SymbolKit FunctionSignature.swift
[23/57] Compiling SymbolKit Mixin+Equals.swift
[24/57] Compiling SymbolKit Mixin+Hash.swift
[25/57] Compiling SymbolKit Mixin.swift
[26/57] Compiling SymbolKit LineList.swift
[27/57] Compiling SymbolKit Position.swift
[28/57] Compiling SymbolKit GenericConstraint.swift
[29/57] Compiling SymbolKit GenericParameter.swift
[30/57] Compiling SymbolKit Generics.swift
[31/57] Compiling SymbolKit Namespace.swift
[32/57] Compiling SymbolKit SemanticVersion.swift
[33/57] Compiling SymbolKit AccessControl.swift
[34/57] Compiling SymbolKit Availability.swift
[35/57] Compiling SymbolKit AvailabilityItem.swift
[36/57] Compiling SymbolKit Domain.swift
[37/57] Compiling SymbolKit SourceRange.swift
[38/57] Compiling SymbolKit Metadata.swift
[39/57] Compiling SymbolKit Module.swift
[40/57] Compiling SymbolKit OperatingSystem.swift
[41/57] Compiling SymbolKit Platform.swift
[42/57] Compiling SymbolKit Identifier.swift
[43/57] Compiling SymbolKit KindIdentifier.swift
[44/57] Compiling SymbolKit Location.swift
[45/57] Compiling SymbolKit Mutability.swift
[46/57] Emitting module SymbolKit
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.85s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/51] Compiling K1 K1.swift
[3/51] Compiling K1 KeyAgreement.swift
[4/51] Compiling K1 ECDSA.swift
[5/51] Compiling K1 ECDSASignatureNonRecoverable.swift
[6/51] Compiling K1 ECDSASignatureRecoverable.swift
[7/51] Compiling K1 RecoveryID.swift
[8/56] Compiling K1 Validation.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[9/56] Compiling K1 Data+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[10/56] Compiling K1 FFI+ECDH.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[11/56] Compiling K1 FFI+ECDSA.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[12/56] Compiling K1 ECDSA+NonRecovery+Wrapped.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[13/56] Compiling K1 FFI+ECDSA+NonRecovery.swift
/Users/admin/builder/spi-builder-workspace/Sources/K1/Support/FFI/API/ECDH/FFI+ECDH.swift:79:5: warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
77 | 				privateKey.secureBytes.backing.bytes, // seckey
78 | 				hashFp.hashfp(), // hashfp
79 | 				&arbitraryData // arbitrary data pointer that is passed through to hashfp
   |     `- warning: forming 'UnsafeMutableRawPointer' to a variable of type 'Optional<Array<UInt8>>'; this is likely incorrect because 'Optional<Array<UInt8>>' may contain an object reference.
80 | 			)
81 | 		}
[14/56] Compiling K1 ECDSASignature.swift
[15/56] Compiling K1 PEMDocument.swift
[16/56] Compiling K1 PKCS8PrivateKey.swift
[17/56] Compiling K1 SEC1PrivateKey.swift
[18/56] Compiling K1 SubjectPublicKeyInfo.swift
[19/56] Compiling K1 ECDSA+Recovery+Wrapped.swift
[20/56] Compiling K1 FFI+ECDSA+Recovery.swift
[21/56] Compiling K1 PrivateKey+Wrapped.swift
[22/56] Compiling K1 FFI+PublicKey.swift
[23/56] Compiling K1 PublicKey+Wrapped.swift
[24/56] Compiling K1 FFI+Schnorr.swift
[25/56] Emitting module K1
[26/56] Compiling K1 Keys.generated.swift
[27/56] Compiling K1 PrivateKeyImplementation.swift
[28/56] Compiling K1 PublicKeyImplementation.swift
[29/56] Compiling K1 Schnorr+Signature.swift
[30/56] Compiling K1 Schnorr.swift
[31/56] Compiling K1 Signing.generated.swift
[32/56] Compiling K1 Curve.swift
[33/56] Compiling K1 K1+Error.swift
[34/56] Compiling K1 SharedSecret.swift
[35/56] Compiling K1 ASN1.swift
[36/56] Compiling K1 ASN1Any.swift
[37/56] Compiling K1 ASN1BitString.swift
[38/56] Compiling K1 ASN1Boolean.swift
[39/56] Compiling K1 ASN1Identifier.swift
[40/56] Compiling K1 ASN1Integer.swift
[41/56] Compiling K1 ASN1Null.swift
[42/56] Compiling K1 Schnorr+Wrapped.swift
[43/56] Compiling K1 FFI+Call.swift
[44/56] Compiling K1 FFI+Context.swift
[45/56] Compiling K1 FFI+Format.swift
[46/56] Compiling K1 FFI+Raw.swift
[47/56] Compiling K1 ASN1OctetString.swift
[48/56] Compiling K1 ASN1Strings.swift
[49/56] Compiling K1 ArraySliceBigint.swift
[50/56] Compiling K1 GeneralizedTime.swift
[51/56] Compiling K1 ObjectIdentifier.swift
[52/56] Compiling K1 ASN1Error.swift
[53/56] Compiling K1 BytesUtil.swift
[54/56] Compiling K1 RNG_boring.swift
[55/56] Compiling K1 SafeCompare_boring.swift
[56/56] Compiling K1 SecureBytes.swift
Build of target: 'K1' complete! (1.43s)
     576
5	/Users/admin/builder/spi-builder-workspace/.docs/sajjon/k1/0.3.9
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/sajjon/k1/0.3.9
File count: 576
Doc size:   5.0MB
Preparing doc bundle ...
Uploading prod-sajjon-k1-0.3.9-6d71e5dc.zip to s3://spi-docs-inbox/prod-sajjon-k1-0.3.9-6d71e5dc.zip
Copying... [13%]
Copying... [26%]
Copying... [32%]
Copying... [45%]
Copying... [52%]
Copying... [64%]
Copying... [71%]
Copying... [84%]
Copying... [90%]
Copying... [100%]
Done.