Build Information
Failed to build IDKit, reference 4.0.7 (7e7434), with Swift 6.2 for Linux on 23 Apr 2026 17:07:28 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/worldcoin/idkit-swift.git
Reference: 4.0.7
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/worldcoin/idkit-swift
* tag 4.0.7 -> FETCH_HEAD
HEAD is now at 7e74347 Release 4.0.7
Cloned https://github.com/worldcoin/idkit-swift.git
Revision (git rev-parse @):
7e7434777e78656adb671d06a1b043f00cd1df71
SUCCESS checkout https://github.com/worldcoin/idkit-swift.git at 4.0.7
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/worldcoin/idkit-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:0ddb100795e64f71518020a73ad8441aeb43832ede7f1202ae7f8de93664f90d
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.2-latest
Downloading binary artifact https://github.com/worldcoin/idkit-swift/releases/download/4.0.7/IDKitFFI.xcframework.zip
[16375/108682473] Downloading https://github.com/worldcoin/idkit-swift/releases/download/4.0.7/IDKitFFI.xcframework.zip
Downloaded https://github.com/worldcoin/idkit-swift/releases/download/4.0.7/IDKitFFI.xcframework.zip (9.64s)
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/5] Emitting module IDKit
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:14:23: error: cannot find type 'RustBuffer' in scope
12 | #endif
13 |
14 | fileprivate extension RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
15 | // Allocate a new buffer, copying the contents of a `UInt8` array.
16 | init(bytes: [UInt8]) {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:38:23: error: cannot find type 'ForeignBytes' in scope
36 | }
37 |
38 | fileprivate extension ForeignBytes {
| `- error: cannot find type 'ForeignBytes' in scope
39 | init(bufferPointer: UnsafeBufferPointer<UInt8>) {
40 | self.init(len: Int32(bufferPointer.count), data: bufferPointer.baseAddress)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:52:22: error: cannot find type 'RustBuffer' in scope
50 |
51 | fileprivate extension Data {
52 | init(rustBuffer: RustBuffer) {
| `- error: cannot find type 'RustBuffer' in scope
53 | self.init(
54 | bytesNoCopy: rustBuffer.data!,
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:190:76: error: cannot find type 'RustBuffer' in scope
188 | // Types conforming to `FfiConverterRustBuffer` lift and lower into a `RustBuffer`.
189 | // Used for complex types where it's hard to write a custom lift/lower.
190 | fileprivate protocol FfiConverterRustBuffer: FfiConverter where FfiType == RustBuffer {}
| `- error: cannot find type 'RustBuffer' in scope
191 |
192 | extension FfiConverterRustBuffer {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:196:36: error: cannot find type 'RustBuffer' in scope
194 | @_documentation(visibility: private)
195 | #endif
196 | public static func lift(_ buf: RustBuffer) throws -> SwiftType {
| `- error: cannot find type 'RustBuffer' in scope
197 | var reader = createReader(data: Data(rustBuffer: buf))
198 | let value = try read(from: &reader)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:209:53: error: cannot find type 'RustBuffer' in scope
207 | @_documentation(visibility: private)
208 | #endif
209 | public static func lower(_ value: SwiftType) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
210 | var writer = createWriter()
211 | write(value, into: &writer)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:256:23: error: cannot find type 'RustCallStatus' in scope
254 | fileprivate let CALL_CANCELLED: Int8 = 3
255 |
256 | fileprivate extension RustCallStatus {
| `- error: cannot find type 'RustCallStatus' in scope
257 | init() {
258 | self.init(
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:269:60: error: cannot find type 'RustCallStatus' in scope
267 | }
268 |
269 | private func rustCall<T>(_ callback: (UnsafeMutablePointer<RustCallStatus>) -> T) throws -> T {
| `- error: cannot find type 'RustCallStatus' in scope
270 | let neverThrow: ((RustBuffer) throws -> Never)? = nil
271 | return try makeRustCall(callback, errorHandler: neverThrow)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:275:32: error: cannot find type 'RustBuffer' in scope
273 |
274 | private func rustCallWithError<T, E: Swift.Error>(
275 | _ errorHandler: @escaping (RustBuffer) throws -> E,
| `- error: cannot find type 'RustBuffer' in scope
276 | _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T) throws -> T {
277 | try makeRustCall(callback, errorHandler: errorHandler)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:276:39: error: cannot find type 'RustCallStatus' in scope
274 | private func rustCallWithError<T, E: Swift.Error>(
275 | _ errorHandler: @escaping (RustBuffer) throws -> E,
276 | _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T) throws -> T {
| `- error: cannot find type 'RustCallStatus' in scope
277 | try makeRustCall(callback, errorHandler: errorHandler)
278 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:281:39: error: cannot find type 'RustCallStatus' in scope
279 |
280 | private func makeRustCall<T, E: Swift.Error>(
281 | _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T,
| `- error: cannot find type 'RustCallStatus' in scope
282 | errorHandler: ((RustBuffer) throws -> E)?
283 | ) throws -> T {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:282:21: error: cannot find type 'RustBuffer' in scope
280 | private func makeRustCall<T, E: Swift.Error>(
281 | _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T,
282 | errorHandler: ((RustBuffer) throws -> E)?
| `- error: cannot find type 'RustBuffer' in scope
283 | ) throws -> T {
284 | uniffiEnsureIdkitInitialized()
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:292:17: error: cannot find type 'RustCallStatus' in scope
290 |
291 | private func uniffiCheckCallStatus<E: Swift.Error>(
292 | callStatus: RustCallStatus,
| `- error: cannot find type 'RustCallStatus' in scope
293 | errorHandler: ((RustBuffer) throws -> E)?
294 | ) throws {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:293:21: error: cannot find type 'RustBuffer' in scope
291 | private func uniffiCheckCallStatus<E: Swift.Error>(
292 | callStatus: RustCallStatus,
293 | errorHandler: ((RustBuffer) throws -> E)?
| `- error: cannot find type 'RustBuffer' in scope
294 | ) throws {
295 | switch callStatus.code {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:327:38: error: cannot find type 'RustCallStatus' in scope
325 |
326 | private func uniffiTraitInterfaceCall<T>(
327 | callStatus: UnsafeMutablePointer<RustCallStatus>,
| `- error: cannot find type 'RustCallStatus' in scope
328 | makeCall: () throws -> T,
329 | writeReturn: (T) -> ()
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:340:38: error: cannot find type 'RustCallStatus' in scope
338 |
339 | private func uniffiTraitInterfaceCallWithError<T, E>(
340 | callStatus: UnsafeMutablePointer<RustCallStatus>,
| `- error: cannot find type 'RustCallStatus' in scope
341 | makeCall: () throws -> T,
342 | writeReturn: (T) -> (),
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:343:24: error: cannot find type 'RustBuffer' in scope
341 | makeCall: () throws -> T,
342 | writeReturn: (T) -> (),
343 | lowerError: (E) -> RustBuffer
| `- error: cannot find type 'RustBuffer' in scope
344 | ) {
345 | do {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:464:25: error: cannot find type 'RustBuffer' in scope
462 | fileprivate struct FfiConverterString: FfiConverter {
463 | typealias SwiftType = String
464 | typealias FfiType = RustBuffer
| `- error: cannot find type 'RustBuffer' in scope
465 |
466 | public static func lift(_ value: RustBuffer) throws -> String {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:466:38: error: cannot find type 'RustBuffer' in scope
464 | typealias FfiType = RustBuffer
465 |
466 | public static func lift(_ value: RustBuffer) throws -> String {
| `- error: cannot find type 'RustBuffer' in scope
467 | defer {
468 | value.deallocate()
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:477:50: error: cannot find type 'RustBuffer' in scope
475 | }
476 |
477 | public static func lower(_ value: String) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
478 | return value.utf8CString.withUnsafeBufferPointer { ptr in
479 | // The swift string gives us int8_t, we want uint8_t.
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:462:20: error: type 'FfiConverterString' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
460 | @_documentation(visibility: private)
461 | #endif
462 | fileprivate struct FfiConverterString: FfiConverter {
| |- error: type 'FfiConverterString' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
463 | typealias SwiftType = String
464 | typealias FfiType = RustBuffer
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:503:20: error: type 'FfiConverterData' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
501 | @_documentation(visibility: private)
502 | #endif
503 | fileprivate struct FfiConverterData: FfiConverterRustBuffer {
| |- error: type 'FfiConverterData' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
504 | typealias SwiftType = Data
505 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1781:15: error: type 'FfiConverterTypeBridgeResponseV1' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
| `- note: protocol requires nested type 'SwiftType'
162 |
163 | static func lift(_ value: FfiType) throws -> SwiftType
:
1779 | @_documentation(visibility: private)
1780 | #endif
1781 | public struct FfiConverterTypeBridgeResponseV1: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeBridgeResponseV1' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
1782 | public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> BridgeResponseV1 {
1783 | return
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1804:58: error: cannot find type 'RustBuffer' in scope
1802 | @_documentation(visibility: private)
1803 | #endif
1804 | public func FfiConverterTypeBridgeResponseV1_lift(_ buf: RustBuffer) throws -> BridgeResponseV1 {
| `- error: cannot find type 'RustBuffer' in scope
1805 | return try FfiConverterTypeBridgeResponseV1.lift(buf)
1806 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1811:82: error: cannot find type 'RustBuffer' in scope
1809 | @_documentation(visibility: private)
1810 | #endif
1811 | public func FfiConverterTypeBridgeResponseV1_lower(_ value: BridgeResponseV1) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
1812 | return FfiConverterTypeBridgeResponseV1.lower(value)
1813 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1920:15: error: type 'FfiConverterTypeIDKitRequestConfig' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
| `- note: protocol requires nested type 'SwiftType'
162 |
163 | static func lift(_ value: FfiType) throws -> SwiftType
:
1918 | @_documentation(visibility: private)
1919 | #endif
1920 | public struct FfiConverterTypeIDKitRequestConfig: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeIDKitRequestConfig' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
1921 | public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> IdKitRequestConfig {
1922 | return
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1955:60: error: cannot find type 'RustBuffer' in scope
1953 | @_documentation(visibility: private)
1954 | #endif
1955 | public func FfiConverterTypeIDKitRequestConfig_lift(_ buf: RustBuffer) throws -> IdKitRequestConfig {
| `- error: cannot find type 'RustBuffer' in scope
1956 | return try FfiConverterTypeIDKitRequestConfig.lift(buf)
1957 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1962:86: error: cannot find type 'RustBuffer' in scope
1960 | @_documentation(visibility: private)
1961 | #endif
1962 | public func FfiConverterTypeIDKitRequestConfig_lower(_ value: IdKitRequestConfig) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
1963 | return FfiConverterTypeIDKitRequestConfig.lower(value)
1964 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2047:15: error: type 'FfiConverterTypeIDKitResult' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
| `- note: protocol requires nested type 'SwiftType'
162 |
163 | static func lift(_ value: FfiType) throws -> SwiftType
:
2045 | @_documentation(visibility: private)
2046 | #endif
2047 | public struct FfiConverterTypeIDKitResult: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeIDKitResult' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2048 | public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> IdKitResult {
2049 | return
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2076:53: error: cannot find type 'RustBuffer' in scope
2074 | @_documentation(visibility: private)
2075 | #endif
2076 | public func FfiConverterTypeIDKitResult_lift(_ buf: RustBuffer) throws -> IdKitResult {
| `- error: cannot find type 'RustBuffer' in scope
2077 | return try FfiConverterTypeIDKitResult.lift(buf)
2078 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2083:72: error: cannot find type 'RustBuffer' in scope
2081 | @_documentation(visibility: private)
2082 | #endif
2083 | public func FfiConverterTypeIDKitResult_lower(_ value: IdKitResult) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2084 | return FfiConverterTypeIDKitResult.lower(value)
2085 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2166:15: error: type 'FfiConverterTypeIDKitSessionConfig' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
| `- note: protocol requires nested type 'SwiftType'
162 |
163 | static func lift(_ value: FfiType) throws -> SwiftType
:
2164 | @_documentation(visibility: private)
2165 | #endif
2166 | public struct FfiConverterTypeIDKitSessionConfig: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeIDKitSessionConfig' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2167 | public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> IdKitSessionConfig {
2168 | return
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2195:60: error: cannot find type 'RustBuffer' in scope
2193 | @_documentation(visibility: private)
2194 | #endif
2195 | public func FfiConverterTypeIDKitSessionConfig_lift(_ buf: RustBuffer) throws -> IdKitSessionConfig {
| `- error: cannot find type 'RustBuffer' in scope
2196 | return try FfiConverterTypeIDKitSessionConfig.lift(buf)
2197 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2202:86: error: cannot find type 'RustBuffer' in scope
2200 | @_documentation(visibility: private)
2201 | #endif
2202 | public func FfiConverterTypeIDKitSessionConfig_lower(_ value: IdKitSessionConfig) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2203 | return FfiConverterTypeIDKitSessionConfig.lower(value)
2204 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2275:15: error: type 'FfiConverterTypeAppError' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2273 | @_documentation(visibility: private)
2274 | #endif
2275 | public struct FfiConverterTypeAppError: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeAppError' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2276 | typealias SwiftType = AppError
2277 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2369:50: error: cannot find type 'RustBuffer' in scope
2367 | @_documentation(visibility: private)
2368 | #endif
2369 | public func FfiConverterTypeAppError_lift(_ buf: RustBuffer) throws -> AppError {
| `- error: cannot find type 'RustBuffer' in scope
2370 | return try FfiConverterTypeAppError.lift(buf)
2371 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2376:66: error: cannot find type 'RustBuffer' in scope
2374 | @_documentation(visibility: private)
2375 | #endif
2376 | public func FfiConverterTypeAppError_lower(_ value: AppError) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2377 | return FfiConverterTypeAppError.lower(value)
2378 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2409:15: error: type 'FfiConverterTypeConnectUrlMode' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2407 | @_documentation(visibility: private)
2408 | #endif
2409 | public struct FfiConverterTypeConnectUrlMode: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeConnectUrlMode' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2410 | typealias SwiftType = ConnectUrlMode
2411 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2443:56: error: cannot find type 'RustBuffer' in scope
2441 | @_documentation(visibility: private)
2442 | #endif
2443 | public func FfiConverterTypeConnectUrlMode_lift(_ buf: RustBuffer) throws -> ConnectUrlMode {
| `- error: cannot find type 'RustBuffer' in scope
2444 | return try FfiConverterTypeConnectUrlMode.lift(buf)
2445 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2450:78: error: cannot find type 'RustBuffer' in scope
2448 | @_documentation(visibility: private)
2449 | #endif
2450 | public func FfiConverterTypeConnectUrlMode_lower(_ value: ConnectUrlMode) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2451 | return FfiConverterTypeConnectUrlMode.lower(value)
2452 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2491:15: error: type 'FfiConverterTypeCredentialType' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2489 | @_documentation(visibility: private)
2490 | #endif
2491 | public struct FfiConverterTypeCredentialType: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeCredentialType' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2492 | typealias SwiftType = CredentialType
2493 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2537:56: error: cannot find type 'RustBuffer' in scope
2535 | @_documentation(visibility: private)
2536 | #endif
2537 | public func FfiConverterTypeCredentialType_lift(_ buf: RustBuffer) throws -> CredentialType {
| `- error: cannot find type 'RustBuffer' in scope
2538 | return try FfiConverterTypeCredentialType.lift(buf)
2539 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2544:78: error: cannot find type 'RustBuffer' in scope
2542 | @_documentation(visibility: private)
2543 | #endif
2544 | public func FfiConverterTypeCredentialType_lower(_ value: CredentialType) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2545 | return FfiConverterTypeCredentialType.lower(value)
2546 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2571:15: error: type 'FfiConverterTypeEnvironment' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2569 | @_documentation(visibility: private)
2570 | #endif
2571 | public struct FfiConverterTypeEnvironment: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeEnvironment' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2572 | typealias SwiftType = Environment
2573 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2605:53: error: cannot find type 'RustBuffer' in scope
2603 | @_documentation(visibility: private)
2604 | #endif
2605 | public func FfiConverterTypeEnvironment_lift(_ buf: RustBuffer) throws -> Environment {
| `- error: cannot find type 'RustBuffer' in scope
2606 | return try FfiConverterTypeEnvironment.lift(buf)
2607 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2612:72: error: cannot find type 'RustBuffer' in scope
2610 | @_documentation(visibility: private)
2611 | #endif
2612 | public func FfiConverterTypeEnvironment_lower(_ value: Environment) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2613 | return FfiConverterTypeEnvironment.lower(value)
2614 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2691:15: error: type 'FfiConverterTypeIdkitError' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2689 | @_documentation(visibility: private)
2690 | #endif
2691 | public struct FfiConverterTypeIdkitError: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeIdkitError' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2692 | typealias SwiftType = IdkitError
2693 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2799:52: error: cannot find type 'RustBuffer' in scope
2797 | @_documentation(visibility: private)
2798 | #endif
2799 | public func FfiConverterTypeIdkitError_lift(_ buf: RustBuffer) throws -> IdkitError {
| `- error: cannot find type 'RustBuffer' in scope
2800 | return try FfiConverterTypeIdkitError.lift(buf)
2801 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2806:70: error: cannot find type 'RustBuffer' in scope
2804 | @_documentation(visibility: private)
2805 | #endif
2806 | public func FfiConverterTypeIdkitError_lower(_ value: IdkitError) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2807 | return FfiConverterTypeIdkitError.lower(value)
2808 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2906:15: error: type 'FfiConverterTypePreset' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2904 | @_documentation(visibility: private)
2905 | #endif
2906 | public struct FfiConverterTypePreset: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypePreset' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2907 | typealias SwiftType = Preset
2908 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2968:48: error: cannot find type 'RustBuffer' in scope
2966 | @_documentation(visibility: private)
2967 | #endif
2968 | public func FfiConverterTypePreset_lift(_ buf: RustBuffer) throws -> Preset {
| `- error: cannot find type 'RustBuffer' in scope
2969 | return try FfiConverterTypePreset.lift(buf)
2970 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2975:62: error: cannot find type 'RustBuffer' in scope
2973 | @_documentation(visibility: private)
2974 | #endif
2975 | public func FfiConverterTypePreset_lower(_ value: Preset) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2976 | return FfiConverterTypePreset.lower(value)
2977 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3083:15: error: type 'FfiConverterTypeResponseItem' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3081 | @_documentation(visibility: private)
3082 | #endif
3083 | public struct FfiConverterTypeResponseItem: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeResponseItem' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3084 | typealias SwiftType = ResponseItem
3085 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3143:54: error: cannot find type 'RustBuffer' in scope
3141 | @_documentation(visibility: private)
3142 | #endif
3143 | public func FfiConverterTypeResponseItem_lift(_ buf: RustBuffer) throws -> ResponseItem {
| `- error: cannot find type 'RustBuffer' in scope
3144 | return try FfiConverterTypeResponseItem.lift(buf)
3145 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3150:74: error: cannot find type 'RustBuffer' in scope
3148 | @_documentation(visibility: private)
3149 | #endif
3150 | public func FfiConverterTypeResponseItem_lower(_ value: ResponseItem) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
3151 | return FfiConverterTypeResponseItem.lower(value)
3152 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3196:15: error: type 'FfiConverterTypeStatusWrapper' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3194 | @_documentation(visibility: private)
3195 | #endif
3196 | public struct FfiConverterTypeStatusWrapper: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeStatusWrapper' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3197 | typealias SwiftType = StatusWrapper
3198 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3254:55: error: cannot find type 'RustBuffer' in scope
3252 | @_documentation(visibility: private)
3253 | #endif
3254 | public func FfiConverterTypeStatusWrapper_lift(_ buf: RustBuffer) throws -> StatusWrapper {
| `- error: cannot find type 'RustBuffer' in scope
3255 | return try FfiConverterTypeStatusWrapper.lift(buf)
3256 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3261:76: error: cannot find type 'RustBuffer' in scope
3259 | @_documentation(visibility: private)
3260 | #endif
3261 | public func FfiConverterTypeStatusWrapper_lower(_ value: StatusWrapper) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
3262 | return FfiConverterTypeStatusWrapper.lower(value)
3263 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3306:15: error: type 'FfiConverterTypeVerificationLevel' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3304 | @_documentation(visibility: private)
3305 | #endif
3306 | public struct FfiConverterTypeVerificationLevel: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeVerificationLevel' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3307 | typealias SwiftType = VerificationLevel
3308 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3358:59: error: cannot find type 'RustBuffer' in scope
3356 | @_documentation(visibility: private)
3357 | #endif
3358 | public func FfiConverterTypeVerificationLevel_lift(_ buf: RustBuffer) throws -> VerificationLevel {
| `- error: cannot find type 'RustBuffer' in scope
3359 | return try FfiConverterTypeVerificationLevel.lift(buf)
3360 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3365:84: error: cannot find type 'RustBuffer' in scope
3363 | @_documentation(visibility: private)
3364 | #endif
3365 | public func FfiConverterTypeVerificationLevel_lower(_ value: VerificationLevel) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
3366 | return FfiConverterTypeVerificationLevel.lower(value)
3367 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3373:20: error: type 'FfiConverterOptionUInt64' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3371 | @_documentation(visibility: private)
3372 | #endif
3373 | fileprivate struct FfiConverterOptionUInt64: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionUInt64' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3374 | typealias SwiftType = UInt64?
3375 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3397:20: error: type 'FfiConverterOptionString' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3395 | @_documentation(visibility: private)
3396 | #endif
3397 | fileprivate struct FfiConverterOptionString: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionString' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3398 | typealias SwiftType = String?
3399 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3421:20: error: type 'FfiConverterOptionData' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3419 | @_documentation(visibility: private)
3420 | #endif
3421 | fileprivate struct FfiConverterOptionData: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionData' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3422 | typealias SwiftType = Data?
3423 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3445:20: error: type 'FfiConverterOptionTypeSignal' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3443 | @_documentation(visibility: private)
3444 | #endif
3445 | fileprivate struct FfiConverterOptionTypeSignal: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionTypeSignal' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3446 | typealias SwiftType = Signal?
3447 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3469:20: error: type 'FfiConverterOptionTypeConnectUrlMode' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3467 | @_documentation(visibility: private)
3468 | #endif
3469 | fileprivate struct FfiConverterOptionTypeConnectUrlMode: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionTypeConnectUrlMode' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3470 | typealias SwiftType = ConnectUrlMode?
3471 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3493:20: error: type 'FfiConverterOptionTypeEnvironment' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3491 | @_documentation(visibility: private)
3492 | #endif
3493 | fileprivate struct FfiConverterOptionTypeEnvironment: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionTypeEnvironment' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3494 | typealias SwiftType = Environment?
3495 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3517:20: error: type 'FfiConverterSequenceString' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3515 | @_documentation(visibility: private)
3516 | #endif
3517 | fileprivate struct FfiConverterSequenceString: FfiConverterRustBuffer {
| |- error: type 'FfiConverterSequenceString' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3518 | typealias SwiftType = [String]
3519 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3542:20: error: type 'FfiConverterSequenceTypeConstraintNode' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3540 | @_documentation(visibility: private)
3541 | #endif
3542 | fileprivate struct FfiConverterSequenceTypeConstraintNode: FfiConverterRustBuffer {
| |- error: type 'FfiConverterSequenceTypeConstraintNode' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3543 | typealias SwiftType = [ConstraintNode]
3544 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3567:20: error: type 'FfiConverterSequenceTypeResponseItem' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3565 | @_documentation(visibility: private)
3566 | #endif
3567 | fileprivate struct FfiConverterSequenceTypeResponseItem: FfiConverterRustBuffer {
| |- error: type 'FfiConverterSequenceTypeResponseItem' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3568 | typealias SwiftType = [ResponseItem]
3569 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3693:40: error: cannot find 'ffi_idkit_uniffi_contract_version' in scope
3691 | let bindings_contract_version = 30
3692 | // Get the scaffolding contract version by calling the into the dylib
3693 | let scaffolding_contract_version = ffi_idkit_uniffi_contract_version()
| `- error: cannot find 'ffi_idkit_uniffi_contract_version' in scope
3694 | if bindings_contract_version != scaffolding_contract_version {
3695 | return InitializationResult.contractVersionMismatch
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3697:9: error: cannot find 'uniffi_idkit_checksum_func_create_session' in scope
3695 | return InitializationResult.contractVersionMismatch
3696 | }
3697 | if (uniffi_idkit_checksum_func_create_session() != 52914) {
| `- error: cannot find 'uniffi_idkit_checksum_func_create_session' in scope
3698 | return InitializationResult.apiChecksumMismatch
3699 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3700:9: error: cannot find 'uniffi_idkit_checksum_func_credential_to_string' in scope
3698 | return InitializationResult.apiChecksumMismatch
3699 | }
3700 | if (uniffi_idkit_checksum_func_credential_to_string() != 22163) {
| `- error: cannot find 'uniffi_idkit_checksum_func_credential_to_string' in scope
3701 | return InitializationResult.apiChecksumMismatch
3702 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3703:9: error: cannot find 'uniffi_idkit_checksum_func_hash_signal_ffi' in scope
3701 | return InitializationResult.apiChecksumMismatch
3702 | }
3703 | if (uniffi_idkit_checksum_func_hash_signal_ffi() != 2942) {
| `- error: cannot find 'uniffi_idkit_checksum_func_hash_signal_ffi' in scope
3704 | return InitializationResult.apiChecksumMismatch
3705 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3706:9: error: cannot find 'uniffi_idkit_checksum_func_hash_to_field_ffi' in scope
3704 | return InitializationResult.apiChecksumMismatch
3705 | }
3706 | if (uniffi_idkit_checksum_func_hash_to_field_ffi() != 30328) {
| `- error: cannot find 'uniffi_idkit_checksum_func_hash_to_field_ffi' in scope
3707 | return InitializationResult.apiChecksumMismatch
3708 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3709:9: error: cannot find 'uniffi_idkit_checksum_func_idkit_result_from_json' in scope
3707 | return InitializationResult.apiChecksumMismatch
3708 | }
3709 | if (uniffi_idkit_checksum_func_idkit_result_from_json() != 51482) {
| `- error: cannot find 'uniffi_idkit_checksum_func_idkit_result_from_json' in scope
3710 | return InitializationResult.apiChecksumMismatch
3711 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3712:9: error: cannot find 'uniffi_idkit_checksum_func_idkit_result_to_json' in scope
3710 | return InitializationResult.apiChecksumMismatch
3711 | }
3712 | if (uniffi_idkit_checksum_func_idkit_result_to_json() != 65487) {
| `- error: cannot find 'uniffi_idkit_checksum_func_idkit_result_to_json' in scope
3713 | return InitializationResult.apiChecksumMismatch
3714 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3715:9: error: cannot find 'uniffi_idkit_checksum_func_prove_session' in scope
3713 | return InitializationResult.apiChecksumMismatch
3714 | }
3715 | if (uniffi_idkit_checksum_func_prove_session() != 17850) {
| `- error: cannot find 'uniffi_idkit_checksum_func_prove_session' in scope
3716 | return InitializationResult.apiChecksumMismatch
3717 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3718:9: error: cannot find 'uniffi_idkit_checksum_func_request' in scope
3716 | return InitializationResult.apiChecksumMismatch
3717 | }
3718 | if (uniffi_idkit_checksum_func_request() != 54126) {
| `- error: cannot find 'uniffi_idkit_checksum_func_request' in scope
3719 | return InitializationResult.apiChecksumMismatch
3720 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3721:9: error: cannot find 'uniffi_idkit_checksum_method_constraintnode_to_json' in scope
3719 | return InitializationResult.apiChecksumMismatch
3720 | }
3721 | if (uniffi_idkit_checksum_method_constraintnode_to_json() != 54484) {
| `- error: cannot find 'uniffi_idkit_checksum_method_constraintnode_to_json' in scope
3722 | return InitializationResult.apiChecksumMismatch
3723 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3724:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_credential_type' in scope
3722 | return InitializationResult.apiChecksumMismatch
3723 | }
3724 | if (uniffi_idkit_checksum_method_credentialrequest_credential_type() != 63074) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_credential_type' in scope
3725 | return InitializationResult.apiChecksumMismatch
3726 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3727:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_expires_at_min' in scope
3725 | return InitializationResult.apiChecksumMismatch
3726 | }
3727 | if (uniffi_idkit_checksum_method_credentialrequest_expires_at_min() != 54935) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_expires_at_min' in scope
3728 | return InitializationResult.apiChecksumMismatch
3729 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3730:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_genesis_issued_at_min' in scope
3728 | return InitializationResult.apiChecksumMismatch
3729 | }
3730 | if (uniffi_idkit_checksum_method_credentialrequest_genesis_issued_at_min() != 33156) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_genesis_issued_at_min' in scope
3731 | return InitializationResult.apiChecksumMismatch
3732 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3733:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_get_signal_bytes' in scope
3731 | return InitializationResult.apiChecksumMismatch
3732 | }
3733 | if (uniffi_idkit_checksum_method_credentialrequest_get_signal_bytes() != 57834) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_get_signal_bytes' in scope
3734 | return InitializationResult.apiChecksumMismatch
3735 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3736:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_to_json' in scope
3734 | return InitializationResult.apiChecksumMismatch
3735 | }
3736 | if (uniffi_idkit_checksum_method_credentialrequest_to_json() != 12653) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_to_json' in scope
3737 | return InitializationResult.apiChecksumMismatch
3738 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3739:9: error: cannot find 'uniffi_idkit_checksum_method_idkitbuilder_constraints' in scope
3737 | return InitializationResult.apiChecksumMismatch
3738 | }
3739 | if (uniffi_idkit_checksum_method_idkitbuilder_constraints() != 39401) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitbuilder_constraints' in scope
3740 | return InitializationResult.apiChecksumMismatch
3741 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3742:9: error: cannot find 'uniffi_idkit_checksum_method_idkitbuilder_preset' in scope
3740 | return InitializationResult.apiChecksumMismatch
3741 | }
3742 | if (uniffi_idkit_checksum_method_idkitbuilder_preset() != 40472) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitbuilder_preset' in scope
3743 | return InitializationResult.apiChecksumMismatch
3744 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3745:9: error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_connect_url' in scope
3743 | return InitializationResult.apiChecksumMismatch
3744 | }
3745 | if (uniffi_idkit_checksum_method_idkitrequestwrapper_connect_url() != 37454) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_connect_url' in scope
3746 | return InitializationResult.apiChecksumMismatch
3747 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3748:9: error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status' in scope
3746 | return InitializationResult.apiChecksumMismatch
3747 | }
3748 | if (uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status() != 56441) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status' in scope
3749 | return InitializationResult.apiChecksumMismatch
3750 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3751:9: error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status_once' in scope
3749 | return InitializationResult.apiChecksumMismatch
3750 | }
3751 | if (uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status_once() != 10322) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status_once' in scope
3752 | return InitializationResult.apiChecksumMismatch
3753 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3754:9: error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_request_id' in scope
3752 | return InitializationResult.apiChecksumMismatch
3753 | }
3754 | if (uniffi_idkit_checksum_method_idkitrequestwrapper_request_id() != 56066) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_request_id' in scope
3755 | return InitializationResult.apiChecksumMismatch
3756 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3757:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_created_at' in scope
3755 | return InitializationResult.apiChecksumMismatch
3756 | }
3757 | if (uniffi_idkit_checksum_method_rpcontext_created_at() != 1287) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_created_at' in scope
3758 | return InitializationResult.apiChecksumMismatch
3759 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3760:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_expires_at' in scope
3758 | return InitializationResult.apiChecksumMismatch
3759 | }
3760 | if (uniffi_idkit_checksum_method_rpcontext_expires_at() != 23095) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_expires_at' in scope
3761 | return InitializationResult.apiChecksumMismatch
3762 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3763:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_nonce' in scope
3761 | return InitializationResult.apiChecksumMismatch
3762 | }
3763 | if (uniffi_idkit_checksum_method_rpcontext_nonce() != 15395) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_nonce' in scope
3764 | return InitializationResult.apiChecksumMismatch
3765 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3766:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_rp_id' in scope
3764 | return InitializationResult.apiChecksumMismatch
3765 | }
3766 | if (uniffi_idkit_checksum_method_rpcontext_rp_id() != 9223) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_rp_id' in scope
3767 | return InitializationResult.apiChecksumMismatch
3768 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3769:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_signature' in scope
3767 | return InitializationResult.apiChecksumMismatch
3768 | }
3769 | if (uniffi_idkit_checksum_method_rpcontext_signature() != 34827) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_signature' in scope
3770 | return InitializationResult.apiChecksumMismatch
3771 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3772:9: error: cannot find 'uniffi_idkit_checksum_method_signal_as_bytes' in scope
3770 | return InitializationResult.apiChecksumMismatch
3771 | }
3772 | if (uniffi_idkit_checksum_method_signal_as_bytes() != 58268) {
| `- error: cannot find 'uniffi_idkit_checksum_method_signal_as_bytes' in scope
3773 | return InitializationResult.apiChecksumMismatch
3774 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3775:9: error: cannot find 'uniffi_idkit_checksum_method_signal_as_string' in scope
3773 | return InitializationResult.apiChecksumMismatch
3774 | }
3775 | if (uniffi_idkit_checksum_method_signal_as_string() != 53522) {
| `- error: cannot find 'uniffi_idkit_checksum_method_signal_as_string' in scope
3776 | return InitializationResult.apiChecksumMismatch
3777 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3778:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_all' in scope
3776 | return InitializationResult.apiChecksumMismatch
3777 | }
3778 | if (uniffi_idkit_checksum_constructor_constraintnode_all() != 45947) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_all' in scope
3779 | return InitializationResult.apiChecksumMismatch
3780 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3781:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_any' in scope
3779 | return InitializationResult.apiChecksumMismatch
3780 | }
3781 | if (uniffi_idkit_checksum_constructor_constraintnode_any() != 35991) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_any' in scope
3782 | return InitializationResult.apiChecksumMismatch
3783 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3784:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_enumerate' in scope
3782 | return InitializationResult.apiChecksumMismatch
3783 | }
3784 | if (uniffi_idkit_checksum_constructor_constraintnode_enumerate() != 36816) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_enumerate' in scope
3785 | return InitializationResult.apiChecksumMismatch
3786 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3787:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_from_json' in scope
3785 | return InitializationResult.apiChecksumMismatch
3786 | }
3787 | if (uniffi_idkit_checksum_constructor_constraintnode_from_json() != 8810) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_from_json' in scope
3788 | return InitializationResult.apiChecksumMismatch
3789 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3790:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_item' in scope
3788 | return InitializationResult.apiChecksumMismatch
3789 | }
3790 | if (uniffi_idkit_checksum_constructor_constraintnode_item() != 49909) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_item' in scope
3791 | return InitializationResult.apiChecksumMismatch
3792 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3793:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_from_json' in scope
3791 | return InitializationResult.apiChecksumMismatch
3792 | }
3793 | if (uniffi_idkit_checksum_constructor_credentialrequest_from_json() != 24959) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_from_json' in scope
3794 | return InitializationResult.apiChecksumMismatch
3795 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3796:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_new' in scope
3794 | return InitializationResult.apiChecksumMismatch
3795 | }
3796 | if (uniffi_idkit_checksum_constructor_credentialrequest_new() != 33926) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_new' in scope
3797 | return InitializationResult.apiChecksumMismatch
3798 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3799:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_expires_at_min' in scope
3797 | return InitializationResult.apiChecksumMismatch
3798 | }
3799 | if (uniffi_idkit_checksum_constructor_credentialrequest_with_expires_at_min() != 37176) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_expires_at_min' in scope
3800 | return InitializationResult.apiChecksumMismatch
3801 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3802:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_genesis_min' in scope
3800 | return InitializationResult.apiChecksumMismatch
3801 | }
3802 | if (uniffi_idkit_checksum_constructor_credentialrequest_with_genesis_min() != 55242) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_genesis_min' in scope
3803 | return InitializationResult.apiChecksumMismatch
3804 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3805:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_string_signal' in scope
3803 | return InitializationResult.apiChecksumMismatch
3804 | }
3805 | if (uniffi_idkit_checksum_constructor_credentialrequest_with_string_signal() != 30356) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_string_signal' in scope
3806 | return InitializationResult.apiChecksumMismatch
3807 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3808:9: error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_create_session' in scope
3806 | return InitializationResult.apiChecksumMismatch
3807 | }
3808 | if (uniffi_idkit_checksum_constructor_idkitbuilder_from_create_session() != 55274) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_create_session' in scope
3809 | return InitializationResult.apiChecksumMismatch
3810 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3811:9: error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_prove_session' in scope
3809 | return InitializationResult.apiChecksumMismatch
3810 | }
3811 | if (uniffi_idkit_checksum_constructor_idkitbuilder_from_prove_session() != 32009) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_prove_session' in scope
3812 | return InitializationResult.apiChecksumMismatch
3813 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3814:9: error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_request' in scope
3812 | return InitializationResult.apiChecksumMismatch
3813 | }
3814 | if (uniffi_idkit_checksum_constructor_idkitbuilder_from_request() != 13424) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_request' in scope
3815 | return InitializationResult.apiChecksumMismatch
3816 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3817:9: error: cannot find 'uniffi_idkit_checksum_constructor_rpcontext_new' in scope
3815 | return InitializationResult.apiChecksumMismatch
3816 | }
3817 | if (uniffi_idkit_checksum_constructor_rpcontext_new() != 50798) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_rpcontext_new' in scope
3818 | return InitializationResult.apiChecksumMismatch
3819 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3820:9: error: cannot find 'uniffi_idkit_checksum_constructor_signal_from_bytes' in scope
3818 | return InitializationResult.apiChecksumMismatch
3819 | }
3820 | if (uniffi_idkit_checksum_constructor_signal_from_bytes() != 2569) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_signal_from_bytes' in scope
3821 | return InitializationResult.apiChecksumMismatch
3822 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3823:9: error: cannot find 'uniffi_idkit_checksum_constructor_signal_from_string' in scope
3821 | return InitializationResult.apiChecksumMismatch
3822 | }
3823 | if (uniffi_idkit_checksum_constructor_signal_from_string() != 7997) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_signal_from_string' in scope
3824 | return InitializationResult.apiChecksumMismatch
3825 | }
[4/5] Compiling IDKit idkit_core.swift
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:14:23: error: cannot find type 'RustBuffer' in scope
12 | #endif
13 |
14 | fileprivate extension RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
15 | // Allocate a new buffer, copying the contents of a `UInt8` array.
16 | init(bytes: [UInt8]) {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:38:23: error: cannot find type 'ForeignBytes' in scope
36 | }
37 |
38 | fileprivate extension ForeignBytes {
| `- error: cannot find type 'ForeignBytes' in scope
39 | init(bufferPointer: UnsafeBufferPointer<UInt8>) {
40 | self.init(len: Int32(bufferPointer.count), data: bufferPointer.baseAddress)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:52:22: error: cannot find type 'RustBuffer' in scope
50 |
51 | fileprivate extension Data {
52 | init(rustBuffer: RustBuffer) {
| `- error: cannot find type 'RustBuffer' in scope
53 | self.init(
54 | bytesNoCopy: rustBuffer.data!,
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:190:76: error: cannot find type 'RustBuffer' in scope
188 | // Types conforming to `FfiConverterRustBuffer` lift and lower into a `RustBuffer`.
189 | // Used for complex types where it's hard to write a custom lift/lower.
190 | fileprivate protocol FfiConverterRustBuffer: FfiConverter where FfiType == RustBuffer {}
| `- error: cannot find type 'RustBuffer' in scope
191 |
192 | extension FfiConverterRustBuffer {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:196:36: error: cannot find type 'RustBuffer' in scope
194 | @_documentation(visibility: private)
195 | #endif
196 | public static func lift(_ buf: RustBuffer) throws -> SwiftType {
| `- error: cannot find type 'RustBuffer' in scope
197 | var reader = createReader(data: Data(rustBuffer: buf))
198 | let value = try read(from: &reader)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:209:53: error: cannot find type 'RustBuffer' in scope
207 | @_documentation(visibility: private)
208 | #endif
209 | public static func lower(_ value: SwiftType) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
210 | var writer = createWriter()
211 | write(value, into: &writer)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:256:23: error: cannot find type 'RustCallStatus' in scope
254 | fileprivate let CALL_CANCELLED: Int8 = 3
255 |
256 | fileprivate extension RustCallStatus {
| `- error: cannot find type 'RustCallStatus' in scope
257 | init() {
258 | self.init(
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:269:60: error: cannot find type 'RustCallStatus' in scope
267 | }
268 |
269 | private func rustCall<T>(_ callback: (UnsafeMutablePointer<RustCallStatus>) -> T) throws -> T {
| `- error: cannot find type 'RustCallStatus' in scope
270 | let neverThrow: ((RustBuffer) throws -> Never)? = nil
271 | return try makeRustCall(callback, errorHandler: neverThrow)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:275:32: error: cannot find type 'RustBuffer' in scope
273 |
274 | private func rustCallWithError<T, E: Swift.Error>(
275 | _ errorHandler: @escaping (RustBuffer) throws -> E,
| `- error: cannot find type 'RustBuffer' in scope
276 | _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T) throws -> T {
277 | try makeRustCall(callback, errorHandler: errorHandler)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:276:39: error: cannot find type 'RustCallStatus' in scope
274 | private func rustCallWithError<T, E: Swift.Error>(
275 | _ errorHandler: @escaping (RustBuffer) throws -> E,
276 | _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T) throws -> T {
| `- error: cannot find type 'RustCallStatus' in scope
277 | try makeRustCall(callback, errorHandler: errorHandler)
278 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:281:39: error: cannot find type 'RustCallStatus' in scope
279 |
280 | private func makeRustCall<T, E: Swift.Error>(
281 | _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T,
| `- error: cannot find type 'RustCallStatus' in scope
282 | errorHandler: ((RustBuffer) throws -> E)?
283 | ) throws -> T {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:282:21: error: cannot find type 'RustBuffer' in scope
280 | private func makeRustCall<T, E: Swift.Error>(
281 | _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T,
282 | errorHandler: ((RustBuffer) throws -> E)?
| `- error: cannot find type 'RustBuffer' in scope
283 | ) throws -> T {
284 | uniffiEnsureIdkitInitialized()
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:292:17: error: cannot find type 'RustCallStatus' in scope
290 |
291 | private func uniffiCheckCallStatus<E: Swift.Error>(
292 | callStatus: RustCallStatus,
| `- error: cannot find type 'RustCallStatus' in scope
293 | errorHandler: ((RustBuffer) throws -> E)?
294 | ) throws {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:293:21: error: cannot find type 'RustBuffer' in scope
291 | private func uniffiCheckCallStatus<E: Swift.Error>(
292 | callStatus: RustCallStatus,
293 | errorHandler: ((RustBuffer) throws -> E)?
| `- error: cannot find type 'RustBuffer' in scope
294 | ) throws {
295 | switch callStatus.code {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:327:38: error: cannot find type 'RustCallStatus' in scope
325 |
326 | private func uniffiTraitInterfaceCall<T>(
327 | callStatus: UnsafeMutablePointer<RustCallStatus>,
| `- error: cannot find type 'RustCallStatus' in scope
328 | makeCall: () throws -> T,
329 | writeReturn: (T) -> ()
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:340:38: error: cannot find type 'RustCallStatus' in scope
338 |
339 | private func uniffiTraitInterfaceCallWithError<T, E>(
340 | callStatus: UnsafeMutablePointer<RustCallStatus>,
| `- error: cannot find type 'RustCallStatus' in scope
341 | makeCall: () throws -> T,
342 | writeReturn: (T) -> (),
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:343:24: error: cannot find type 'RustBuffer' in scope
341 | makeCall: () throws -> T,
342 | writeReturn: (T) -> (),
343 | lowerError: (E) -> RustBuffer
| `- error: cannot find type 'RustBuffer' in scope
344 | ) {
345 | do {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:464:25: error: cannot find type 'RustBuffer' in scope
462 | fileprivate struct FfiConverterString: FfiConverter {
463 | typealias SwiftType = String
464 | typealias FfiType = RustBuffer
| `- error: cannot find type 'RustBuffer' in scope
465 |
466 | public static func lift(_ value: RustBuffer) throws -> String {
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:466:38: error: cannot find type 'RustBuffer' in scope
464 | typealias FfiType = RustBuffer
465 |
466 | public static func lift(_ value: RustBuffer) throws -> String {
| `- error: cannot find type 'RustBuffer' in scope
467 | defer {
468 | value.deallocate()
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:477:50: error: cannot find type 'RustBuffer' in scope
475 | }
476 |
477 | public static func lower(_ value: String) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
478 | return value.utf8CString.withUnsafeBufferPointer { ptr in
479 | // The swift string gives us int8_t, we want uint8_t.
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:462:20: error: type 'FfiConverterString' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
460 | @_documentation(visibility: private)
461 | #endif
462 | fileprivate struct FfiConverterString: FfiConverter {
| |- error: type 'FfiConverterString' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
463 | typealias SwiftType = String
464 | typealias FfiType = RustBuffer
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:503:20: error: type 'FfiConverterData' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
501 | @_documentation(visibility: private)
502 | #endif
503 | fileprivate struct FfiConverterData: FfiConverterRustBuffer {
| |- error: type 'FfiConverterData' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
504 | typealias SwiftType = Data
505 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1781:15: error: type 'FfiConverterTypeBridgeResponseV1' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
| `- note: protocol requires nested type 'SwiftType'
162 |
163 | static func lift(_ value: FfiType) throws -> SwiftType
:
1779 | @_documentation(visibility: private)
1780 | #endif
1781 | public struct FfiConverterTypeBridgeResponseV1: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeBridgeResponseV1' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
1782 | public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> BridgeResponseV1 {
1783 | return
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1804:58: error: cannot find type 'RustBuffer' in scope
1802 | @_documentation(visibility: private)
1803 | #endif
1804 | public func FfiConverterTypeBridgeResponseV1_lift(_ buf: RustBuffer) throws -> BridgeResponseV1 {
| `- error: cannot find type 'RustBuffer' in scope
1805 | return try FfiConverterTypeBridgeResponseV1.lift(buf)
1806 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1811:82: error: cannot find type 'RustBuffer' in scope
1809 | @_documentation(visibility: private)
1810 | #endif
1811 | public func FfiConverterTypeBridgeResponseV1_lower(_ value: BridgeResponseV1) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
1812 | return FfiConverterTypeBridgeResponseV1.lower(value)
1813 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1920:15: error: type 'FfiConverterTypeIDKitRequestConfig' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
| `- note: protocol requires nested type 'SwiftType'
162 |
163 | static func lift(_ value: FfiType) throws -> SwiftType
:
1918 | @_documentation(visibility: private)
1919 | #endif
1920 | public struct FfiConverterTypeIDKitRequestConfig: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeIDKitRequestConfig' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
1921 | public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> IdKitRequestConfig {
1922 | return
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1955:60: error: cannot find type 'RustBuffer' in scope
1953 | @_documentation(visibility: private)
1954 | #endif
1955 | public func FfiConverterTypeIDKitRequestConfig_lift(_ buf: RustBuffer) throws -> IdKitRequestConfig {
| `- error: cannot find type 'RustBuffer' in scope
1956 | return try FfiConverterTypeIDKitRequestConfig.lift(buf)
1957 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1962:86: error: cannot find type 'RustBuffer' in scope
1960 | @_documentation(visibility: private)
1961 | #endif
1962 | public func FfiConverterTypeIDKitRequestConfig_lower(_ value: IdKitRequestConfig) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
1963 | return FfiConverterTypeIDKitRequestConfig.lower(value)
1964 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2047:15: error: type 'FfiConverterTypeIDKitResult' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
| `- note: protocol requires nested type 'SwiftType'
162 |
163 | static func lift(_ value: FfiType) throws -> SwiftType
:
2045 | @_documentation(visibility: private)
2046 | #endif
2047 | public struct FfiConverterTypeIDKitResult: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeIDKitResult' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2048 | public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> IdKitResult {
2049 | return
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2076:53: error: cannot find type 'RustBuffer' in scope
2074 | @_documentation(visibility: private)
2075 | #endif
2076 | public func FfiConverterTypeIDKitResult_lift(_ buf: RustBuffer) throws -> IdKitResult {
| `- error: cannot find type 'RustBuffer' in scope
2077 | return try FfiConverterTypeIDKitResult.lift(buf)
2078 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2083:72: error: cannot find type 'RustBuffer' in scope
2081 | @_documentation(visibility: private)
2082 | #endif
2083 | public func FfiConverterTypeIDKitResult_lower(_ value: IdKitResult) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2084 | return FfiConverterTypeIDKitResult.lower(value)
2085 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2166:15: error: type 'FfiConverterTypeIDKitSessionConfig' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
| `- note: protocol requires nested type 'SwiftType'
162 |
163 | static func lift(_ value: FfiType) throws -> SwiftType
:
2164 | @_documentation(visibility: private)
2165 | #endif
2166 | public struct FfiConverterTypeIDKitSessionConfig: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeIDKitSessionConfig' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2167 | public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> IdKitSessionConfig {
2168 | return
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2195:60: error: cannot find type 'RustBuffer' in scope
2193 | @_documentation(visibility: private)
2194 | #endif
2195 | public func FfiConverterTypeIDKitSessionConfig_lift(_ buf: RustBuffer) throws -> IdKitSessionConfig {
| `- error: cannot find type 'RustBuffer' in scope
2196 | return try FfiConverterTypeIDKitSessionConfig.lift(buf)
2197 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2202:86: error: cannot find type 'RustBuffer' in scope
2200 | @_documentation(visibility: private)
2201 | #endif
2202 | public func FfiConverterTypeIDKitSessionConfig_lower(_ value: IdKitSessionConfig) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2203 | return FfiConverterTypeIDKitSessionConfig.lower(value)
2204 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2275:15: error: type 'FfiConverterTypeAppError' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2273 | @_documentation(visibility: private)
2274 | #endif
2275 | public struct FfiConverterTypeAppError: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeAppError' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2276 | typealias SwiftType = AppError
2277 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2369:50: error: cannot find type 'RustBuffer' in scope
2367 | @_documentation(visibility: private)
2368 | #endif
2369 | public func FfiConverterTypeAppError_lift(_ buf: RustBuffer) throws -> AppError {
| `- error: cannot find type 'RustBuffer' in scope
2370 | return try FfiConverterTypeAppError.lift(buf)
2371 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2376:66: error: cannot find type 'RustBuffer' in scope
2374 | @_documentation(visibility: private)
2375 | #endif
2376 | public func FfiConverterTypeAppError_lower(_ value: AppError) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2377 | return FfiConverterTypeAppError.lower(value)
2378 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2409:15: error: type 'FfiConverterTypeConnectUrlMode' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2407 | @_documentation(visibility: private)
2408 | #endif
2409 | public struct FfiConverterTypeConnectUrlMode: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeConnectUrlMode' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2410 | typealias SwiftType = ConnectUrlMode
2411 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2443:56: error: cannot find type 'RustBuffer' in scope
2441 | @_documentation(visibility: private)
2442 | #endif
2443 | public func FfiConverterTypeConnectUrlMode_lift(_ buf: RustBuffer) throws -> ConnectUrlMode {
| `- error: cannot find type 'RustBuffer' in scope
2444 | return try FfiConverterTypeConnectUrlMode.lift(buf)
2445 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2450:78: error: cannot find type 'RustBuffer' in scope
2448 | @_documentation(visibility: private)
2449 | #endif
2450 | public func FfiConverterTypeConnectUrlMode_lower(_ value: ConnectUrlMode) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2451 | return FfiConverterTypeConnectUrlMode.lower(value)
2452 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2491:15: error: type 'FfiConverterTypeCredentialType' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2489 | @_documentation(visibility: private)
2490 | #endif
2491 | public struct FfiConverterTypeCredentialType: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeCredentialType' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2492 | typealias SwiftType = CredentialType
2493 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2537:56: error: cannot find type 'RustBuffer' in scope
2535 | @_documentation(visibility: private)
2536 | #endif
2537 | public func FfiConverterTypeCredentialType_lift(_ buf: RustBuffer) throws -> CredentialType {
| `- error: cannot find type 'RustBuffer' in scope
2538 | return try FfiConverterTypeCredentialType.lift(buf)
2539 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2544:78: error: cannot find type 'RustBuffer' in scope
2542 | @_documentation(visibility: private)
2543 | #endif
2544 | public func FfiConverterTypeCredentialType_lower(_ value: CredentialType) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2545 | return FfiConverterTypeCredentialType.lower(value)
2546 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2571:15: error: type 'FfiConverterTypeEnvironment' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2569 | @_documentation(visibility: private)
2570 | #endif
2571 | public struct FfiConverterTypeEnvironment: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeEnvironment' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2572 | typealias SwiftType = Environment
2573 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2605:53: error: cannot find type 'RustBuffer' in scope
2603 | @_documentation(visibility: private)
2604 | #endif
2605 | public func FfiConverterTypeEnvironment_lift(_ buf: RustBuffer) throws -> Environment {
| `- error: cannot find type 'RustBuffer' in scope
2606 | return try FfiConverterTypeEnvironment.lift(buf)
2607 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2612:72: error: cannot find type 'RustBuffer' in scope
2610 | @_documentation(visibility: private)
2611 | #endif
2612 | public func FfiConverterTypeEnvironment_lower(_ value: Environment) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2613 | return FfiConverterTypeEnvironment.lower(value)
2614 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2691:15: error: type 'FfiConverterTypeIdkitError' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2689 | @_documentation(visibility: private)
2690 | #endif
2691 | public struct FfiConverterTypeIdkitError: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeIdkitError' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2692 | typealias SwiftType = IdkitError
2693 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2799:52: error: cannot find type 'RustBuffer' in scope
2797 | @_documentation(visibility: private)
2798 | #endif
2799 | public func FfiConverterTypeIdkitError_lift(_ buf: RustBuffer) throws -> IdkitError {
| `- error: cannot find type 'RustBuffer' in scope
2800 | return try FfiConverterTypeIdkitError.lift(buf)
2801 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2806:70: error: cannot find type 'RustBuffer' in scope
2804 | @_documentation(visibility: private)
2805 | #endif
2806 | public func FfiConverterTypeIdkitError_lower(_ value: IdkitError) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2807 | return FfiConverterTypeIdkitError.lower(value)
2808 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2906:15: error: type 'FfiConverterTypePreset' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
2904 | @_documentation(visibility: private)
2905 | #endif
2906 | public struct FfiConverterTypePreset: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypePreset' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
2907 | typealias SwiftType = Preset
2908 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2968:48: error: cannot find type 'RustBuffer' in scope
2966 | @_documentation(visibility: private)
2967 | #endif
2968 | public func FfiConverterTypePreset_lift(_ buf: RustBuffer) throws -> Preset {
| `- error: cannot find type 'RustBuffer' in scope
2969 | return try FfiConverterTypePreset.lift(buf)
2970 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:2975:62: error: cannot find type 'RustBuffer' in scope
2973 | @_documentation(visibility: private)
2974 | #endif
2975 | public func FfiConverterTypePreset_lower(_ value: Preset) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
2976 | return FfiConverterTypePreset.lower(value)
2977 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3083:15: error: type 'FfiConverterTypeResponseItem' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3081 | @_documentation(visibility: private)
3082 | #endif
3083 | public struct FfiConverterTypeResponseItem: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeResponseItem' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3084 | typealias SwiftType = ResponseItem
3085 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3143:54: error: cannot find type 'RustBuffer' in scope
3141 | @_documentation(visibility: private)
3142 | #endif
3143 | public func FfiConverterTypeResponseItem_lift(_ buf: RustBuffer) throws -> ResponseItem {
| `- error: cannot find type 'RustBuffer' in scope
3144 | return try FfiConverterTypeResponseItem.lift(buf)
3145 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3150:74: error: cannot find type 'RustBuffer' in scope
3148 | @_documentation(visibility: private)
3149 | #endif
3150 | public func FfiConverterTypeResponseItem_lower(_ value: ResponseItem) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
3151 | return FfiConverterTypeResponseItem.lower(value)
3152 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3196:15: error: type 'FfiConverterTypeStatusWrapper' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3194 | @_documentation(visibility: private)
3195 | #endif
3196 | public struct FfiConverterTypeStatusWrapper: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeStatusWrapper' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3197 | typealias SwiftType = StatusWrapper
3198 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3254:55: error: cannot find type 'RustBuffer' in scope
3252 | @_documentation(visibility: private)
3253 | #endif
3254 | public func FfiConverterTypeStatusWrapper_lift(_ buf: RustBuffer) throws -> StatusWrapper {
| `- error: cannot find type 'RustBuffer' in scope
3255 | return try FfiConverterTypeStatusWrapper.lift(buf)
3256 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3261:76: error: cannot find type 'RustBuffer' in scope
3259 | @_documentation(visibility: private)
3260 | #endif
3261 | public func FfiConverterTypeStatusWrapper_lower(_ value: StatusWrapper) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
3262 | return FfiConverterTypeStatusWrapper.lower(value)
3263 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3306:15: error: type 'FfiConverterTypeVerificationLevel' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3304 | @_documentation(visibility: private)
3305 | #endif
3306 | public struct FfiConverterTypeVerificationLevel: FfiConverterRustBuffer {
| |- error: type 'FfiConverterTypeVerificationLevel' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3307 | typealias SwiftType = VerificationLevel
3308 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3358:59: error: cannot find type 'RustBuffer' in scope
3356 | @_documentation(visibility: private)
3357 | #endif
3358 | public func FfiConverterTypeVerificationLevel_lift(_ buf: RustBuffer) throws -> VerificationLevel {
| `- error: cannot find type 'RustBuffer' in scope
3359 | return try FfiConverterTypeVerificationLevel.lift(buf)
3360 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3365:84: error: cannot find type 'RustBuffer' in scope
3363 | @_documentation(visibility: private)
3364 | #endif
3365 | public func FfiConverterTypeVerificationLevel_lower(_ value: VerificationLevel) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
3366 | return FfiConverterTypeVerificationLevel.lower(value)
3367 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3373:20: error: type 'FfiConverterOptionUInt64' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3371 | @_documentation(visibility: private)
3372 | #endif
3373 | fileprivate struct FfiConverterOptionUInt64: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionUInt64' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3374 | typealias SwiftType = UInt64?
3375 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3397:20: error: type 'FfiConverterOptionString' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3395 | @_documentation(visibility: private)
3396 | #endif
3397 | fileprivate struct FfiConverterOptionString: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionString' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3398 | typealias SwiftType = String?
3399 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3421:20: error: type 'FfiConverterOptionData' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3419 | @_documentation(visibility: private)
3420 | #endif
3421 | fileprivate struct FfiConverterOptionData: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionData' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3422 | typealias SwiftType = Data?
3423 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3445:20: error: type 'FfiConverterOptionTypeSignal' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3443 | @_documentation(visibility: private)
3444 | #endif
3445 | fileprivate struct FfiConverterOptionTypeSignal: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionTypeSignal' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3446 | typealias SwiftType = Signal?
3447 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3469:20: error: type 'FfiConverterOptionTypeConnectUrlMode' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3467 | @_documentation(visibility: private)
3468 | #endif
3469 | fileprivate struct FfiConverterOptionTypeConnectUrlMode: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionTypeConnectUrlMode' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3470 | typealias SwiftType = ConnectUrlMode?
3471 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3493:20: error: type 'FfiConverterOptionTypeEnvironment' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3491 | @_documentation(visibility: private)
3492 | #endif
3493 | fileprivate struct FfiConverterOptionTypeEnvironment: FfiConverterRustBuffer {
| |- error: type 'FfiConverterOptionTypeEnvironment' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3494 | typealias SwiftType = Environment?
3495 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3517:20: error: type 'FfiConverterSequenceString' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3515 | @_documentation(visibility: private)
3516 | #endif
3517 | fileprivate struct FfiConverterSequenceString: FfiConverterRustBuffer {
| |- error: type 'FfiConverterSequenceString' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3518 | typealias SwiftType = [String]
3519 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3542:20: error: type 'FfiConverterSequenceTypeConstraintNode' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3540 | @_documentation(visibility: private)
3541 | #endif
3542 | fileprivate struct FfiConverterSequenceTypeConstraintNode: FfiConverterRustBuffer {
| |- error: type 'FfiConverterSequenceTypeConstraintNode' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3543 | typealias SwiftType = [ConstraintNode]
3544 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3567:20: error: type 'FfiConverterSequenceTypeResponseItem' does not conform to protocol 'FfiConverter'
158 | // analogous to the Rust trait of the same name.
159 | fileprivate protocol FfiConverter {
160 | associatedtype FfiType
| `- note: protocol requires nested type 'FfiType'
161 | associatedtype SwiftType
162 |
:
3565 | @_documentation(visibility: private)
3566 | #endif
3567 | fileprivate struct FfiConverterSequenceTypeResponseItem: FfiConverterRustBuffer {
| |- error: type 'FfiConverterSequenceTypeResponseItem' does not conform to protocol 'FfiConverter'
| `- note: add stubs for conformance
3568 | typealias SwiftType = [ResponseItem]
3569 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3693:40: error: cannot find 'ffi_idkit_uniffi_contract_version' in scope
3691 | let bindings_contract_version = 30
3692 | // Get the scaffolding contract version by calling the into the dylib
3693 | let scaffolding_contract_version = ffi_idkit_uniffi_contract_version()
| `- error: cannot find 'ffi_idkit_uniffi_contract_version' in scope
3694 | if bindings_contract_version != scaffolding_contract_version {
3695 | return InitializationResult.contractVersionMismatch
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3697:9: error: cannot find 'uniffi_idkit_checksum_func_create_session' in scope
3695 | return InitializationResult.contractVersionMismatch
3696 | }
3697 | if (uniffi_idkit_checksum_func_create_session() != 52914) {
| `- error: cannot find 'uniffi_idkit_checksum_func_create_session' in scope
3698 | return InitializationResult.apiChecksumMismatch
3699 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3700:9: error: cannot find 'uniffi_idkit_checksum_func_credential_to_string' in scope
3698 | return InitializationResult.apiChecksumMismatch
3699 | }
3700 | if (uniffi_idkit_checksum_func_credential_to_string() != 22163) {
| `- error: cannot find 'uniffi_idkit_checksum_func_credential_to_string' in scope
3701 | return InitializationResult.apiChecksumMismatch
3702 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3703:9: error: cannot find 'uniffi_idkit_checksum_func_hash_signal_ffi' in scope
3701 | return InitializationResult.apiChecksumMismatch
3702 | }
3703 | if (uniffi_idkit_checksum_func_hash_signal_ffi() != 2942) {
| `- error: cannot find 'uniffi_idkit_checksum_func_hash_signal_ffi' in scope
3704 | return InitializationResult.apiChecksumMismatch
3705 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3706:9: error: cannot find 'uniffi_idkit_checksum_func_hash_to_field_ffi' in scope
3704 | return InitializationResult.apiChecksumMismatch
3705 | }
3706 | if (uniffi_idkit_checksum_func_hash_to_field_ffi() != 30328) {
| `- error: cannot find 'uniffi_idkit_checksum_func_hash_to_field_ffi' in scope
3707 | return InitializationResult.apiChecksumMismatch
3708 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3709:9: error: cannot find 'uniffi_idkit_checksum_func_idkit_result_from_json' in scope
3707 | return InitializationResult.apiChecksumMismatch
3708 | }
3709 | if (uniffi_idkit_checksum_func_idkit_result_from_json() != 51482) {
| `- error: cannot find 'uniffi_idkit_checksum_func_idkit_result_from_json' in scope
3710 | return InitializationResult.apiChecksumMismatch
3711 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3712:9: error: cannot find 'uniffi_idkit_checksum_func_idkit_result_to_json' in scope
3710 | return InitializationResult.apiChecksumMismatch
3711 | }
3712 | if (uniffi_idkit_checksum_func_idkit_result_to_json() != 65487) {
| `- error: cannot find 'uniffi_idkit_checksum_func_idkit_result_to_json' in scope
3713 | return InitializationResult.apiChecksumMismatch
3714 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3715:9: error: cannot find 'uniffi_idkit_checksum_func_prove_session' in scope
3713 | return InitializationResult.apiChecksumMismatch
3714 | }
3715 | if (uniffi_idkit_checksum_func_prove_session() != 17850) {
| `- error: cannot find 'uniffi_idkit_checksum_func_prove_session' in scope
3716 | return InitializationResult.apiChecksumMismatch
3717 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3718:9: error: cannot find 'uniffi_idkit_checksum_func_request' in scope
3716 | return InitializationResult.apiChecksumMismatch
3717 | }
3718 | if (uniffi_idkit_checksum_func_request() != 54126) {
| `- error: cannot find 'uniffi_idkit_checksum_func_request' in scope
3719 | return InitializationResult.apiChecksumMismatch
3720 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3721:9: error: cannot find 'uniffi_idkit_checksum_method_constraintnode_to_json' in scope
3719 | return InitializationResult.apiChecksumMismatch
3720 | }
3721 | if (uniffi_idkit_checksum_method_constraintnode_to_json() != 54484) {
| `- error: cannot find 'uniffi_idkit_checksum_method_constraintnode_to_json' in scope
3722 | return InitializationResult.apiChecksumMismatch
3723 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3724:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_credential_type' in scope
3722 | return InitializationResult.apiChecksumMismatch
3723 | }
3724 | if (uniffi_idkit_checksum_method_credentialrequest_credential_type() != 63074) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_credential_type' in scope
3725 | return InitializationResult.apiChecksumMismatch
3726 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3727:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_expires_at_min' in scope
3725 | return InitializationResult.apiChecksumMismatch
3726 | }
3727 | if (uniffi_idkit_checksum_method_credentialrequest_expires_at_min() != 54935) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_expires_at_min' in scope
3728 | return InitializationResult.apiChecksumMismatch
3729 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3730:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_genesis_issued_at_min' in scope
3728 | return InitializationResult.apiChecksumMismatch
3729 | }
3730 | if (uniffi_idkit_checksum_method_credentialrequest_genesis_issued_at_min() != 33156) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_genesis_issued_at_min' in scope
3731 | return InitializationResult.apiChecksumMismatch
3732 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3733:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_get_signal_bytes' in scope
3731 | return InitializationResult.apiChecksumMismatch
3732 | }
3733 | if (uniffi_idkit_checksum_method_credentialrequest_get_signal_bytes() != 57834) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_get_signal_bytes' in scope
3734 | return InitializationResult.apiChecksumMismatch
3735 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3736:9: error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_to_json' in scope
3734 | return InitializationResult.apiChecksumMismatch
3735 | }
3736 | if (uniffi_idkit_checksum_method_credentialrequest_to_json() != 12653) {
| `- error: cannot find 'uniffi_idkit_checksum_method_credentialrequest_to_json' in scope
3737 | return InitializationResult.apiChecksumMismatch
3738 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3739:9: error: cannot find 'uniffi_idkit_checksum_method_idkitbuilder_constraints' in scope
3737 | return InitializationResult.apiChecksumMismatch
3738 | }
3739 | if (uniffi_idkit_checksum_method_idkitbuilder_constraints() != 39401) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitbuilder_constraints' in scope
3740 | return InitializationResult.apiChecksumMismatch
3741 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3742:9: error: cannot find 'uniffi_idkit_checksum_method_idkitbuilder_preset' in scope
3740 | return InitializationResult.apiChecksumMismatch
3741 | }
3742 | if (uniffi_idkit_checksum_method_idkitbuilder_preset() != 40472) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitbuilder_preset' in scope
3743 | return InitializationResult.apiChecksumMismatch
3744 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3745:9: error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_connect_url' in scope
3743 | return InitializationResult.apiChecksumMismatch
3744 | }
3745 | if (uniffi_idkit_checksum_method_idkitrequestwrapper_connect_url() != 37454) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_connect_url' in scope
3746 | return InitializationResult.apiChecksumMismatch
3747 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3748:9: error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status' in scope
3746 | return InitializationResult.apiChecksumMismatch
3747 | }
3748 | if (uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status() != 56441) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status' in scope
3749 | return InitializationResult.apiChecksumMismatch
3750 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3751:9: error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status_once' in scope
3749 | return InitializationResult.apiChecksumMismatch
3750 | }
3751 | if (uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status_once() != 10322) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_poll_status_once' in scope
3752 | return InitializationResult.apiChecksumMismatch
3753 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3754:9: error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_request_id' in scope
3752 | return InitializationResult.apiChecksumMismatch
3753 | }
3754 | if (uniffi_idkit_checksum_method_idkitrequestwrapper_request_id() != 56066) {
| `- error: cannot find 'uniffi_idkit_checksum_method_idkitrequestwrapper_request_id' in scope
3755 | return InitializationResult.apiChecksumMismatch
3756 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3757:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_created_at' in scope
3755 | return InitializationResult.apiChecksumMismatch
3756 | }
3757 | if (uniffi_idkit_checksum_method_rpcontext_created_at() != 1287) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_created_at' in scope
3758 | return InitializationResult.apiChecksumMismatch
3759 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3760:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_expires_at' in scope
3758 | return InitializationResult.apiChecksumMismatch
3759 | }
3760 | if (uniffi_idkit_checksum_method_rpcontext_expires_at() != 23095) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_expires_at' in scope
3761 | return InitializationResult.apiChecksumMismatch
3762 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3763:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_nonce' in scope
3761 | return InitializationResult.apiChecksumMismatch
3762 | }
3763 | if (uniffi_idkit_checksum_method_rpcontext_nonce() != 15395) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_nonce' in scope
3764 | return InitializationResult.apiChecksumMismatch
3765 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3766:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_rp_id' in scope
3764 | return InitializationResult.apiChecksumMismatch
3765 | }
3766 | if (uniffi_idkit_checksum_method_rpcontext_rp_id() != 9223) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_rp_id' in scope
3767 | return InitializationResult.apiChecksumMismatch
3768 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3769:9: error: cannot find 'uniffi_idkit_checksum_method_rpcontext_signature' in scope
3767 | return InitializationResult.apiChecksumMismatch
3768 | }
3769 | if (uniffi_idkit_checksum_method_rpcontext_signature() != 34827) {
| `- error: cannot find 'uniffi_idkit_checksum_method_rpcontext_signature' in scope
3770 | return InitializationResult.apiChecksumMismatch
3771 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3772:9: error: cannot find 'uniffi_idkit_checksum_method_signal_as_bytes' in scope
3770 | return InitializationResult.apiChecksumMismatch
3771 | }
3772 | if (uniffi_idkit_checksum_method_signal_as_bytes() != 58268) {
| `- error: cannot find 'uniffi_idkit_checksum_method_signal_as_bytes' in scope
3773 | return InitializationResult.apiChecksumMismatch
3774 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3775:9: error: cannot find 'uniffi_idkit_checksum_method_signal_as_string' in scope
3773 | return InitializationResult.apiChecksumMismatch
3774 | }
3775 | if (uniffi_idkit_checksum_method_signal_as_string() != 53522) {
| `- error: cannot find 'uniffi_idkit_checksum_method_signal_as_string' in scope
3776 | return InitializationResult.apiChecksumMismatch
3777 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3778:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_all' in scope
3776 | return InitializationResult.apiChecksumMismatch
3777 | }
3778 | if (uniffi_idkit_checksum_constructor_constraintnode_all() != 45947) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_all' in scope
3779 | return InitializationResult.apiChecksumMismatch
3780 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3781:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_any' in scope
3779 | return InitializationResult.apiChecksumMismatch
3780 | }
3781 | if (uniffi_idkit_checksum_constructor_constraintnode_any() != 35991) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_any' in scope
3782 | return InitializationResult.apiChecksumMismatch
3783 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3784:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_enumerate' in scope
3782 | return InitializationResult.apiChecksumMismatch
3783 | }
3784 | if (uniffi_idkit_checksum_constructor_constraintnode_enumerate() != 36816) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_enumerate' in scope
3785 | return InitializationResult.apiChecksumMismatch
3786 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3787:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_from_json' in scope
3785 | return InitializationResult.apiChecksumMismatch
3786 | }
3787 | if (uniffi_idkit_checksum_constructor_constraintnode_from_json() != 8810) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_from_json' in scope
3788 | return InitializationResult.apiChecksumMismatch
3789 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3790:9: error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_item' in scope
3788 | return InitializationResult.apiChecksumMismatch
3789 | }
3790 | if (uniffi_idkit_checksum_constructor_constraintnode_item() != 49909) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_constraintnode_item' in scope
3791 | return InitializationResult.apiChecksumMismatch
3792 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3793:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_from_json' in scope
3791 | return InitializationResult.apiChecksumMismatch
3792 | }
3793 | if (uniffi_idkit_checksum_constructor_credentialrequest_from_json() != 24959) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_from_json' in scope
3794 | return InitializationResult.apiChecksumMismatch
3795 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3796:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_new' in scope
3794 | return InitializationResult.apiChecksumMismatch
3795 | }
3796 | if (uniffi_idkit_checksum_constructor_credentialrequest_new() != 33926) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_new' in scope
3797 | return InitializationResult.apiChecksumMismatch
3798 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3799:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_expires_at_min' in scope
3797 | return InitializationResult.apiChecksumMismatch
3798 | }
3799 | if (uniffi_idkit_checksum_constructor_credentialrequest_with_expires_at_min() != 37176) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_expires_at_min' in scope
3800 | return InitializationResult.apiChecksumMismatch
3801 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3802:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_genesis_min' in scope
3800 | return InitializationResult.apiChecksumMismatch
3801 | }
3802 | if (uniffi_idkit_checksum_constructor_credentialrequest_with_genesis_min() != 55242) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_genesis_min' in scope
3803 | return InitializationResult.apiChecksumMismatch
3804 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3805:9: error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_string_signal' in scope
3803 | return InitializationResult.apiChecksumMismatch
3804 | }
3805 | if (uniffi_idkit_checksum_constructor_credentialrequest_with_string_signal() != 30356) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_credentialrequest_with_string_signal' in scope
3806 | return InitializationResult.apiChecksumMismatch
3807 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3808:9: error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_create_session' in scope
3806 | return InitializationResult.apiChecksumMismatch
3807 | }
3808 | if (uniffi_idkit_checksum_constructor_idkitbuilder_from_create_session() != 55274) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_create_session' in scope
3809 | return InitializationResult.apiChecksumMismatch
3810 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3811:9: error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_prove_session' in scope
3809 | return InitializationResult.apiChecksumMismatch
3810 | }
3811 | if (uniffi_idkit_checksum_constructor_idkitbuilder_from_prove_session() != 32009) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_prove_session' in scope
3812 | return InitializationResult.apiChecksumMismatch
3813 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3814:9: error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_request' in scope
3812 | return InitializationResult.apiChecksumMismatch
3813 | }
3814 | if (uniffi_idkit_checksum_constructor_idkitbuilder_from_request() != 13424) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_idkitbuilder_from_request' in scope
3815 | return InitializationResult.apiChecksumMismatch
3816 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3817:9: error: cannot find 'uniffi_idkit_checksum_constructor_rpcontext_new' in scope
3815 | return InitializationResult.apiChecksumMismatch
3816 | }
3817 | if (uniffi_idkit_checksum_constructor_rpcontext_new() != 50798) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_rpcontext_new' in scope
3818 | return InitializationResult.apiChecksumMismatch
3819 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3820:9: error: cannot find 'uniffi_idkit_checksum_constructor_signal_from_bytes' in scope
3818 | return InitializationResult.apiChecksumMismatch
3819 | }
3820 | if (uniffi_idkit_checksum_constructor_signal_from_bytes() != 2569) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_signal_from_bytes' in scope
3821 | return InitializationResult.apiChecksumMismatch
3822 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3823:9: error: cannot find 'uniffi_idkit_checksum_constructor_signal_from_string' in scope
3821 | return InitializationResult.apiChecksumMismatch
3822 | }
3823 | if (uniffi_idkit_checksum_constructor_signal_from_string() != 7997) {
| `- error: cannot find 'uniffi_idkit_checksum_constructor_signal_from_string' in scope
3824 | return InitializationResult.apiChecksumMismatch
3825 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:197:41: error: no exact matches in call to initializer
195 | #endif
196 | public static func lift(_ buf: RustBuffer) throws -> SwiftType {
197 | var reader = createReader(data: Data(rustBuffer: buf))
| `- error: no exact matches in call to initializer
198 | let value = try read(from: &reader)
199 | if hasRemaining(reader) {
FoundationEssentials.Data.init:2:19: note: incorrect labels for candidate (have: '(rustBuffer:)', expected: '(_:)')
1 | struct Data {
2 | @inlinable public init<S>(_ elements: S) where S : Sequence, S.Element == UInt8}
| `- note: incorrect labels for candidate (have: '(rustBuffer:)', expected: '(_:)')
3 |
Swift.RangeReplaceableCollection.init:2:19: note: incorrect labels for candidate (have: '(rustBuffer:)', expected: '(_:)')
1 | protocol RangeReplaceableCollection {
2 | @inlinable public init<S>(_ elements: S) where S : Sequence, Self.Element == S.Element}
| `- note: incorrect labels for candidate (have: '(rustBuffer:)', expected: '(_:)')
3 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:270:23: error: cannot find type 'RustBuffer' in scope
268 |
269 | private func rustCall<T>(_ callback: (UnsafeMutablePointer<RustCallStatus>) -> T) throws -> T {
270 | let neverThrow: ((RustBuffer) throws -> Never)? = nil
| `- error: cannot find type 'RustBuffer' in scope
271 | return try makeRustCall(callback, errorHandler: neverThrow)
272 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:285:22: error: cannot find 'RustCallStatus' in scope
283 | ) throws -> T {
284 | uniffiEnsureIdkitInitialized()
285 | var callStatus = RustCallStatus.init()
| `- error: cannot find 'RustCallStatus' in scope
286 | let returnedVal = callback(&callStatus)
287 | try uniffiCheckCallStatus(callStatus: callStatus, errorHandler: errorHandler)
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:576:32: error: cannot find 'uniffi_idkit_fn_clone_constraintnode' in scope
574 | #endif
575 | public func uniffiCloneHandle() -> UInt64 {
576 | return try! rustCall { uniffi_idkit_fn_clone_constraintnode(self.handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_clone_constraintnode' in scope
577 | }
578 | // No primary constructor declared for this class.
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:581:25: error: cannot find 'uniffi_idkit_fn_free_constraintnode' in scope
579 |
580 | deinit {
581 | try! rustCall { uniffi_idkit_fn_free_constraintnode(handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_free_constraintnode' in scope
582 | }
583 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:590:5: error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_all' in scope
588 | public static func all(nodes: [ConstraintNode]) -> ConstraintNode {
589 | return try! FfiConverterTypeConstraintNode_lift(try! rustCall() {
590 | uniffi_idkit_fn_constructor_constraintnode_all(
| `- error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_all' in scope
591 | FfiConverterSequenceTypeConstraintNode.lower(nodes),$0
592 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:601:5: error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_any' in scope
599 | public static func any(nodes: [ConstraintNode]) -> ConstraintNode {
600 | return try! FfiConverterTypeConstraintNode_lift(try! rustCall() {
601 | uniffi_idkit_fn_constructor_constraintnode_any(
| `- error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_any' in scope
602 | FfiConverterSequenceTypeConstraintNode.lower(nodes),$0
603 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:612:5: error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_enumerate' in scope
610 | public static func enumerate(nodes: [ConstraintNode]) -> ConstraintNode {
611 | return try! FfiConverterTypeConstraintNode_lift(try! rustCall() {
612 | uniffi_idkit_fn_constructor_constraintnode_enumerate(
| `- error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_enumerate' in scope
613 | FfiConverterSequenceTypeConstraintNode.lower(nodes),$0
614 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:627:5: error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_from_json' in scope
625 | public static func fromJson(json: String)throws -> ConstraintNode {
626 | return try FfiConverterTypeConstraintNode_lift(try rustCallWithError(FfiConverterTypeIdkitError_lift) {
627 | uniffi_idkit_fn_constructor_constraintnode_from_json(
| `- error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_from_json' in scope
628 | FfiConverterString.lower(json),$0
629 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:638:5: error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_item' in scope
636 | public static func item(request: CredentialRequest) -> ConstraintNode {
637 | return try! FfiConverterTypeConstraintNode_lift(try! rustCall() {
638 | uniffi_idkit_fn_constructor_constraintnode_item(
| `- error: cannot find 'uniffi_idkit_fn_constructor_constraintnode_item' in scope
639 | FfiConverterTypeCredentialRequest_lower(request),$0
640 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:655:5: error: cannot find 'uniffi_idkit_fn_method_constraintnode_to_json' in scope
653 | open func toJson()throws -> String {
654 | return try FfiConverterString.lift(try rustCallWithError(FfiConverterTypeIdkitError_lift) {
655 | uniffi_idkit_fn_method_constraintnode_to_json(
| `- error: cannot find 'uniffi_idkit_fn_method_constraintnode_to_json' in scope
656 | self.uniffiCloneHandle(),$0
657 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:792:32: error: cannot find 'uniffi_idkit_fn_clone_credentialrequest' in scope
790 | #endif
791 | public func uniffiCloneHandle() -> UInt64 {
792 | return try! rustCall { uniffi_idkit_fn_clone_credentialrequest(self.handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_clone_credentialrequest' in scope
793 | }
794 | /**
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:800:5: error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_new' in scope
798 | let handle =
799 | try! rustCall() {
800 | uniffi_idkit_fn_constructor_credentialrequest_new(
| `- error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_new' in scope
801 | FfiConverterTypeCredentialType_lower(credentialType),
802 | FfiConverterOptionTypeSignal.lower(signal),$0
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:809:25: error: cannot find 'uniffi_idkit_fn_free_credentialrequest' in scope
807 |
808 | deinit {
809 | try! rustCall { uniffi_idkit_fn_free_credentialrequest(handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_free_credentialrequest' in scope
810 | }
811 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:822:5: error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_from_json' in scope
820 | public static func fromJson(json: String)throws -> CredentialRequest {
821 | return try FfiConverterTypeCredentialRequest_lift(try rustCallWithError(FfiConverterTypeIdkitError_lift) {
822 | uniffi_idkit_fn_constructor_credentialrequest_from_json(
| `- error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_from_json' in scope
823 | FfiConverterString.lower(json),$0
824 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:833:5: error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_with_expires_at_min' in scope
831 | public static func withExpiresAtMin(credentialType: CredentialType, signal: Signal?, expiresAtMin: UInt64) -> CredentialRequest {
832 | return try! FfiConverterTypeCredentialRequest_lift(try! rustCall() {
833 | uniffi_idkit_fn_constructor_credentialrequest_with_expires_at_min(
| `- error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_with_expires_at_min' in scope
834 | FfiConverterTypeCredentialType_lower(credentialType),
835 | FfiConverterOptionTypeSignal.lower(signal),
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:846:5: error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_with_genesis_min' in scope
844 | public static func withGenesisMin(credentialType: CredentialType, signal: Signal?, genesisMin: UInt64) -> CredentialRequest {
845 | return try! FfiConverterTypeCredentialRequest_lift(try! rustCall() {
846 | uniffi_idkit_fn_constructor_credentialrequest_with_genesis_min(
| `- error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_with_genesis_min' in scope
847 | FfiConverterTypeCredentialType_lower(credentialType),
848 | FfiConverterOptionTypeSignal.lower(signal),
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:862:5: error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_with_string_signal' in scope
860 | public static func withStringSignal(credentialType: CredentialType, signal: String?) -> CredentialRequest {
861 | return try! FfiConverterTypeCredentialRequest_lift(try! rustCall() {
862 | uniffi_idkit_fn_constructor_credentialrequest_with_string_signal(
| `- error: cannot find 'uniffi_idkit_fn_constructor_credentialrequest_with_string_signal' in scope
863 | FfiConverterTypeCredentialType_lower(credentialType),
864 | FfiConverterOptionString.lower(signal),$0
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:876:5: error: cannot find 'uniffi_idkit_fn_method_credentialrequest_credential_type' in scope
874 | open func credentialType() -> CredentialType {
875 | return try! FfiConverterTypeCredentialType_lift(try! rustCall() {
876 | uniffi_idkit_fn_method_credentialrequest_credential_type(
| `- error: cannot find 'uniffi_idkit_fn_method_credentialrequest_credential_type' in scope
877 | self.uniffiCloneHandle(),$0
878 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:887:5: error: cannot find 'uniffi_idkit_fn_method_credentialrequest_expires_at_min' in scope
885 | open func expiresAtMin() -> UInt64? {
886 | return try! FfiConverterOptionUInt64.lift(try! rustCall() {
887 | uniffi_idkit_fn_method_credentialrequest_expires_at_min(
| `- error: cannot find 'uniffi_idkit_fn_method_credentialrequest_expires_at_min' in scope
888 | self.uniffiCloneHandle(),$0
889 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:898:5: error: cannot find 'uniffi_idkit_fn_method_credentialrequest_genesis_issued_at_min' in scope
896 | open func genesisIssuedAtMin() -> UInt64? {
897 | return try! FfiConverterOptionUInt64.lift(try! rustCall() {
898 | uniffi_idkit_fn_method_credentialrequest_genesis_issued_at_min(
| `- error: cannot find 'uniffi_idkit_fn_method_credentialrequest_genesis_issued_at_min' in scope
899 | self.uniffiCloneHandle(),$0
900 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:909:5: error: cannot find 'uniffi_idkit_fn_method_credentialrequest_get_signal_bytes' in scope
907 | open func getSignalBytes() -> Data? {
908 | return try! FfiConverterOptionData.lift(try! rustCall() {
909 | uniffi_idkit_fn_method_credentialrequest_get_signal_bytes(
| `- error: cannot find 'uniffi_idkit_fn_method_credentialrequest_get_signal_bytes' in scope
910 | self.uniffiCloneHandle(),$0
911 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:924:5: error: cannot find 'uniffi_idkit_fn_method_credentialrequest_to_json' in scope
922 | open func toJson()throws -> String {
923 | return try FfiConverterString.lift(try rustCallWithError(FfiConverterTypeIdkitError_lift) {
924 | uniffi_idkit_fn_method_credentialrequest_to_json(
| `- error: cannot find 'uniffi_idkit_fn_method_credentialrequest_to_json' in scope
925 | self.uniffiCloneHandle(),$0
926 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1047:32: error: cannot find 'uniffi_idkit_fn_clone_idkitbuilder' in scope
1045 | #endif
1046 | public func uniffiCloneHandle() -> UInt64 {
1047 | return try! rustCall { uniffi_idkit_fn_clone_idkitbuilder(self.handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_clone_idkitbuilder' in scope
1048 | }
1049 | // No primary constructor declared for this class.
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1052:25: error: cannot find 'uniffi_idkit_fn_free_idkitbuilder' in scope
1050 |
1051 | deinit {
1052 | try! rustCall { uniffi_idkit_fn_free_idkitbuilder(handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_free_idkitbuilder' in scope
1053 | }
1054 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1061:5: error: cannot find 'uniffi_idkit_fn_constructor_idkitbuilder_from_create_session' in scope
1059 | public static func fromCreateSession(config: IdKitSessionConfig) -> IdKitBuilder {
1060 | return try! FfiConverterTypeIDKitBuilder_lift(try! rustCall() {
1061 | uniffi_idkit_fn_constructor_idkitbuilder_from_create_session(
| `- error: cannot find 'uniffi_idkit_fn_constructor_idkitbuilder_from_create_session' in scope
1062 | FfiConverterTypeIDKitSessionConfig_lower(config),$0
1063 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1072:5: error: cannot find 'uniffi_idkit_fn_constructor_idkitbuilder_from_prove_session' in scope
1070 | public static func fromProveSession(sessionId: String, config: IdKitSessionConfig) -> IdKitBuilder {
1071 | return try! FfiConverterTypeIDKitBuilder_lift(try! rustCall() {
1072 | uniffi_idkit_fn_constructor_idkitbuilder_from_prove_session(
| `- error: cannot find 'uniffi_idkit_fn_constructor_idkitbuilder_from_prove_session' in scope
1073 | FfiConverterString.lower(sessionId),
1074 | FfiConverterTypeIDKitSessionConfig_lower(config),$0
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1084:5: error: cannot find 'uniffi_idkit_fn_constructor_idkitbuilder_from_request' in scope
1082 | public static func fromRequest(config: IdKitRequestConfig) -> IdKitBuilder {
1083 | return try! FfiConverterTypeIDKitBuilder_lift(try! rustCall() {
1084 | uniffi_idkit_fn_constructor_idkitbuilder_from_request(
| `- error: cannot find 'uniffi_idkit_fn_constructor_idkitbuilder_from_request' in scope
1085 | FfiConverterTypeIDKitRequestConfig_lower(config),$0
1086 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1101:5: error: cannot find 'uniffi_idkit_fn_method_idkitbuilder_constraints' in scope
1099 | open func constraints(constraints: ConstraintNode)throws -> IdKitRequestWrapper {
1100 | return try FfiConverterTypeIDKitRequestWrapper_lift(try rustCallWithError(FfiConverterTypeIdkitError_lift) {
1101 | uniffi_idkit_fn_method_idkitbuilder_constraints(
| `- error: cannot find 'uniffi_idkit_fn_method_idkitbuilder_constraints' in scope
1102 | self.uniffiCloneHandle(),
1103 | FfiConverterTypeConstraintNode_lower(constraints),$0
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1120:5: error: cannot find 'uniffi_idkit_fn_method_idkitbuilder_preset' in scope
1118 | open func preset(preset: Preset)throws -> IdKitRequestWrapper {
1119 | return try FfiConverterTypeIDKitRequestWrapper_lift(try rustCallWithError(FfiConverterTypeIdkitError_lift) {
1120 | uniffi_idkit_fn_method_idkitbuilder_preset(
| `- error: cannot find 'uniffi_idkit_fn_method_idkitbuilder_preset' in scope
1121 | self.uniffiCloneHandle(),
1122 | FfiConverterTypePreset_lower(preset),$0
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1240:32: error: cannot find 'uniffi_idkit_fn_clone_idkitrequestwrapper' in scope
1238 | #endif
1239 | public func uniffiCloneHandle() -> UInt64 {
1240 | return try! rustCall { uniffi_idkit_fn_clone_idkitrequestwrapper(self.handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_clone_idkitrequestwrapper' in scope
1241 | }
1242 | // No primary constructor declared for this class.
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1245:25: error: cannot find 'uniffi_idkit_fn_free_idkitrequestwrapper' in scope
1243 |
1244 | deinit {
1245 | try! rustCall { uniffi_idkit_fn_free_idkitrequestwrapper(handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_free_idkitrequestwrapper' in scope
1246 | }
1247 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1256:5: error: cannot find 'uniffi_idkit_fn_method_idkitrequestwrapper_connect_url' in scope
1254 | open func connectUrl() -> String {
1255 | return try! FfiConverterString.lift(try! rustCall() {
1256 | uniffi_idkit_fn_method_idkitrequestwrapper_connect_url(
| `- error: cannot find 'uniffi_idkit_fn_method_idkitrequestwrapper_connect_url' in scope
1257 | self.uniffiCloneHandle(),$0
1258 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1270:5: error: cannot find 'uniffi_idkit_fn_method_idkitrequestwrapper_poll_status' in scope
1268 | open func pollStatus(pollIntervalMs: UInt64?, timeoutMs: UInt64?) -> StatusWrapper {
1269 | return try! FfiConverterTypeStatusWrapper_lift(try! rustCall() {
1270 | uniffi_idkit_fn_method_idkitrequestwrapper_poll_status(
| `- error: cannot find 'uniffi_idkit_fn_method_idkitrequestwrapper_poll_status' in scope
1271 | self.uniffiCloneHandle(),
1272 | FfiConverterOptionUInt64.lower(pollIntervalMs),
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1283:5: error: cannot find 'uniffi_idkit_fn_method_idkitrequestwrapper_poll_status_once' in scope
1281 | open func pollStatusOnce() -> StatusWrapper {
1282 | return try! FfiConverterTypeStatusWrapper_lift(try! rustCall() {
1283 | uniffi_idkit_fn_method_idkitrequestwrapper_poll_status_once(
| `- error: cannot find 'uniffi_idkit_fn_method_idkitrequestwrapper_poll_status_once' in scope
1284 | self.uniffiCloneHandle(),$0
1285 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1294:5: error: cannot find 'uniffi_idkit_fn_method_idkitrequestwrapper_request_id' in scope
1292 | open func requestId() -> String {
1293 | return try! FfiConverterString.lift(try! rustCall() {
1294 | uniffi_idkit_fn_method_idkitrequestwrapper_request_id(
| `- error: cannot find 'uniffi_idkit_fn_method_idkitrequestwrapper_request_id' in scope
1295 | self.uniffiCloneHandle(),$0
1296 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1427:32: error: cannot find 'uniffi_idkit_fn_clone_rpcontext' in scope
1425 | #endif
1426 | public func uniffiCloneHandle() -> UInt64 {
1427 | return try! rustCall { uniffi_idkit_fn_clone_rpcontext(self.handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_clone_rpcontext' in scope
1428 | }
1429 | /**
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1439:5: error: cannot find 'uniffi_idkit_fn_constructor_rpcontext_new' in scope
1437 | let handle =
1438 | try rustCallWithError(FfiConverterTypeIdkitError_lift) {
1439 | uniffi_idkit_fn_constructor_rpcontext_new(
| `- error: cannot find 'uniffi_idkit_fn_constructor_rpcontext_new' in scope
1440 | FfiConverterString.lower(rpId),
1441 | FfiConverterString.lower(nonce),
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1451:25: error: cannot find 'uniffi_idkit_fn_free_rpcontext' in scope
1449 |
1450 | deinit {
1451 | try! rustCall { uniffi_idkit_fn_free_rpcontext(handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_free_rpcontext' in scope
1452 | }
1453 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1462:5: error: cannot find 'uniffi_idkit_fn_method_rpcontext_created_at' in scope
1460 | open func createdAt() -> UInt64 {
1461 | return try! FfiConverterUInt64.lift(try! rustCall() {
1462 | uniffi_idkit_fn_method_rpcontext_created_at(
| `- error: cannot find 'uniffi_idkit_fn_method_rpcontext_created_at' in scope
1463 | self.uniffiCloneHandle(),$0
1464 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1473:5: error: cannot find 'uniffi_idkit_fn_method_rpcontext_expires_at' in scope
1471 | open func expiresAt() -> UInt64 {
1472 | return try! FfiConverterUInt64.lift(try! rustCall() {
1473 | uniffi_idkit_fn_method_rpcontext_expires_at(
| `- error: cannot find 'uniffi_idkit_fn_method_rpcontext_expires_at' in scope
1474 | self.uniffiCloneHandle(),$0
1475 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1484:5: error: cannot find 'uniffi_idkit_fn_method_rpcontext_nonce' in scope
1482 | open func nonce() -> String {
1483 | return try! FfiConverterString.lift(try! rustCall() {
1484 | uniffi_idkit_fn_method_rpcontext_nonce(
| `- error: cannot find 'uniffi_idkit_fn_method_rpcontext_nonce' in scope
1485 | self.uniffiCloneHandle(),$0
1486 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1495:5: error: cannot find 'uniffi_idkit_fn_method_rpcontext_rp_id' in scope
1493 | open func rpId() -> String {
1494 | return try! FfiConverterString.lift(try! rustCall() {
1495 | uniffi_idkit_fn_method_rpcontext_rp_id(
| `- error: cannot find 'uniffi_idkit_fn_method_rpcontext_rp_id' in scope
1496 | self.uniffiCloneHandle(),$0
1497 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1506:5: error: cannot find 'uniffi_idkit_fn_method_rpcontext_signature' in scope
1504 | open func signature() -> String {
1505 | return try! FfiConverterString.lift(try! rustCall() {
1506 | uniffi_idkit_fn_method_rpcontext_signature(
| `- error: cannot find 'uniffi_idkit_fn_method_rpcontext_signature' in scope
1507 | self.uniffiCloneHandle(),$0
1508 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1626:32: error: cannot find 'uniffi_idkit_fn_clone_signal' in scope
1624 | #endif
1625 | public func uniffiCloneHandle() -> UInt64 {
1626 | return try! rustCall { uniffi_idkit_fn_clone_signal(self.handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_clone_signal' in scope
1627 | }
1628 | // No primary constructor declared for this class.
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1631:25: error: cannot find 'uniffi_idkit_fn_free_signal' in scope
1629 |
1630 | deinit {
1631 | try! rustCall { uniffi_idkit_fn_free_signal(handle, $0) }
| `- error: cannot find 'uniffi_idkit_fn_free_signal' in scope
1632 | }
1633 |
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1640:5: error: cannot find 'uniffi_idkit_fn_constructor_signal_from_bytes' in scope
1638 | public static func fromBytes(bytes: Data) -> Signal {
1639 | return try! FfiConverterTypeSignal_lift(try! rustCall() {
1640 | uniffi_idkit_fn_constructor_signal_from_bytes(
| `- error: cannot find 'uniffi_idkit_fn_constructor_signal_from_bytes' in scope
1641 | FfiConverterData.lower(bytes),$0
1642 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1651:5: error: cannot find 'uniffi_idkit_fn_constructor_signal_from_string' in scope
1649 | public static func fromString(s: String) -> Signal {
1650 | return try! FfiConverterTypeSignal_lift(try! rustCall() {
1651 | uniffi_idkit_fn_constructor_signal_from_string(
| `- error: cannot find 'uniffi_idkit_fn_constructor_signal_from_string' in scope
1652 | FfiConverterString.lower(s),$0
1653 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1664:5: error: cannot find 'uniffi_idkit_fn_method_signal_as_bytes' in scope
1662 | open func asBytes() -> Data {
1663 | return try! FfiConverterData.lift(try! rustCall() {
1664 | uniffi_idkit_fn_method_signal_as_bytes(
| `- error: cannot find 'uniffi_idkit_fn_method_signal_as_bytes' in scope
1665 | self.uniffiCloneHandle(),$0
1666 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:1675:5: error: cannot find 'uniffi_idkit_fn_method_signal_as_string' in scope
1673 | open func asString() -> String? {
1674 | return try! FfiConverterOptionString.lift(try! rustCall() {
1675 | uniffi_idkit_fn_method_signal_as_string(
| `- error: cannot find 'uniffi_idkit_fn_method_signal_as_string' in scope
1676 | self.uniffiCloneHandle(),$0
1677 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3593:5: error: cannot find 'uniffi_idkit_fn_func_create_session' in scope
3591 | public func createSession(config: IdKitSessionConfig) -> IdKitBuilder {
3592 | return try! FfiConverterTypeIDKitBuilder_lift(try! rustCall() {
3593 | uniffi_idkit_fn_func_create_session(
| `- error: cannot find 'uniffi_idkit_fn_func_create_session' in scope
3594 | FfiConverterTypeIDKitSessionConfig_lower(config),$0
3595 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3603:5: error: cannot find 'uniffi_idkit_fn_func_credential_to_string' in scope
3601 | public func credentialToString(credential: CredentialType) -> String {
3602 | return try! FfiConverterString.lift(try! rustCall() {
3603 | uniffi_idkit_fn_func_credential_to_string(
| `- error: cannot find 'uniffi_idkit_fn_func_credential_to_string' in scope
3604 | FfiConverterTypeCredentialType_lower(credential),$0
3605 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3615:5: error: cannot find 'uniffi_idkit_fn_func_hash_signal_ffi' in scope
3613 | public func hashSignalFfi(signal: Signal) -> String {
3614 | return try! FfiConverterString.lift(try! rustCall() {
3615 | uniffi_idkit_fn_func_hash_signal_ffi(
| `- error: cannot find 'uniffi_idkit_fn_func_hash_signal_ffi' in scope
3616 | FfiConverterTypeSignal_lower(signal),$0
3617 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3627:5: error: cannot find 'uniffi_idkit_fn_func_hash_to_field_ffi' in scope
3625 | public func hashToFieldFfi(input: Data) -> Data {
3626 | return try! FfiConverterData.lift(try! rustCall() {
3627 | uniffi_idkit_fn_func_hash_to_field_ffi(
| `- error: cannot find 'uniffi_idkit_fn_func_hash_to_field_ffi' in scope
3628 | FfiConverterData.lower(input),$0
3629 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3641:5: error: cannot find 'uniffi_idkit_fn_func_idkit_result_from_json' in scope
3639 | public func idkitResultFromJson(json: String)throws -> IdKitResult {
3640 | return try FfiConverterTypeIDKitResult_lift(try rustCallWithError(FfiConverterTypeIdkitError_lift) {
3641 | uniffi_idkit_fn_func_idkit_result_from_json(
| `- error: cannot find 'uniffi_idkit_fn_func_idkit_result_from_json' in scope
3642 | FfiConverterString.lower(json),$0
3643 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3655:5: error: cannot find 'uniffi_idkit_fn_func_idkit_result_to_json' in scope
3653 | public func idkitResultToJson(result: IdKitResult)throws -> String {
3654 | return try FfiConverterString.lift(try rustCallWithError(FfiConverterTypeIdkitError_lift) {
3655 | uniffi_idkit_fn_func_idkit_result_to_json(
| `- error: cannot find 'uniffi_idkit_fn_func_idkit_result_to_json' in scope
3656 | FfiConverterTypeIDKitResult_lower(result),$0
3657 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3665:5: error: cannot find 'uniffi_idkit_fn_func_prove_session' in scope
3663 | public func proveSession(sessionId: String, config: IdKitSessionConfig) -> IdKitBuilder {
3664 | return try! FfiConverterTypeIDKitBuilder_lift(try! rustCall() {
3665 | uniffi_idkit_fn_func_prove_session(
| `- error: cannot find 'uniffi_idkit_fn_func_prove_session' in scope
3666 | FfiConverterString.lower(sessionId),
3667 | FfiConverterTypeIDKitSessionConfig_lower(config),$0
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:3676:5: error: cannot find 'uniffi_idkit_fn_func_request' in scope
3674 | public func request(config: IdKitRequestConfig) -> IdKitBuilder {
3675 | return try! FfiConverterTypeIDKitBuilder_lift(try! rustCall() {
3676 | uniffi_idkit_fn_func_request(
| `- error: cannot find 'uniffi_idkit_fn_func_request' in scope
3677 | FfiConverterTypeIDKitRequestConfig_lower(config),$0
3678 | )
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:23:28: error: cannot find type 'RustBuffer' in scope
21 | }
22 |
23 | static func empty() -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
24 | RustBuffer(capacity: 0, len:0, data: nil)
25 | }
/host/spi-builder-workspace/Sources/IDKit/Generated/idkit_core.swift:27:60: error: cannot find type 'RustBuffer' in scope
25 | }
26 |
27 | static func from(_ ptr: UnsafeBufferPointer<UInt8>) -> RustBuffer {
| `- error: cannot find type 'RustBuffer' in scope
28 | try! rustCall { ffi_idkit_rustbuffer_from_bytes(ForeignBytes(bufferPointer: ptr), $0) }
29 | }
[5/5] Compiling IDKit IDKit.swift
BUILD FAILURE 6.2 linux