The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build officectl, reference main (c83b70), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 01:48:18 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

194 | #endif
195 | 		OfficeKitServices.providers[           SynologyService.providerID] =            SynologyService.self
196 | 		OfficeKitServices.providers[           VaultPKIService.providerID] =            VaultPKIService.self
    |                                                          `- warning: reference to class property 'providerID' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
197 |
198 | 		/* *** OFFICEKIT SERVICES *** */
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/VaultPKI/VaultPKIService.swift:19:20: note: class property declared here
 17 | public final class VaultPKIService : UserService {
 18 |
 19 | 	public static var providerID = "happn/vault-pki"
    |                    `- note: class property declared here
 20 |
 21 | 	public typealias UserType = VaultPKIUser
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:201:43: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
199 | 		var services = OfficeKitServices()
200 | 		for (serviceID, serviceDef) in conf?.services ?? [:] {
201 | 			guard let provider = OfficeKitServices.providers[serviceDef.providerID] else {
    |                                           `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
202 | 				logger.error("Cannot find provider ID for service.", metadata: [LMK.serviceID: "\(serviceID)", LMK.providerID: "\(serviceDef.providerID)"])
203 | 				throw ExitCode(1)
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
[3094/3111] Compiling officectl officectl.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:45:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 | struct Officectl : AsyncParsableCommand {
 44 |
 45 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 | 		abstract: "Manage multiple directories.",
 47 | 		subcommands: [
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:166:27: warning: reference to static property 'oslog' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
164 | 		}
165 | #if canImport(os)
166 | 		RetryingOperationConfig.oslog = nil
    |                           `- warning: reference to static property 'oslog' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
167 | 		URLRequestOperationConfig.oslog = nil
168 | #endif
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RetryingOperation/Sources/RetryingOperation/RetryingOperationConfig.swift:45:20: note: static property declared here
43 | #if canImport(os)
44 | 	@available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *)
45 | 	public static var oslog: OSLog? = .default
   |                    `- note: static property declared here
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:169:27: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
167 | 		URLRequestOperationConfig.oslog = nil
168 | #endif
169 | 		RetryingOperationConfig.logger = nil
    |                           `- warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
170 | 		URLRequestOperationConfig.logger = Logger(label: "URLRequestOperation")
171 | 		URLRequestOperationConfig.networkRetryProviderDefaultNumberOfRetries = 0
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RetryingOperation/Sources/RetryingOperation/RetryingOperationConfig.swift:47:20: note: static property declared here
45 | 	public static var oslog: OSLog? = .default
46 | #endif
47 | 	public static var logger: Logging.Logger? = {
   |                    `- note: static property declared here
48 | #if canImport(os)
49 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:185:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
183 |
184 | 		/* *** OFFICEKIT SERVICE PROVIDERS *** */
185 | 		OfficeKitServices.providers[CloudflareZeroTrustService.providerID] = CloudflareZeroTrustService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
186 | 		OfficeKitServices.providers[             GitHubService.providerID] =              GitHubService.self
187 | 		OfficeKitServices.providers[             GoogleService.providerID] =              GoogleService.self
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:186:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
184 | 		/* *** OFFICEKIT SERVICE PROVIDERS *** */
185 | 		OfficeKitServices.providers[CloudflareZeroTrustService.providerID] = CloudflareZeroTrustService.self
186 | 		OfficeKitServices.providers[             GitHubService.providerID] =              GitHubService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
187 | 		OfficeKitServices.providers[             GoogleService.providerID] =              GoogleService.self
188 | 		OfficeKitServices.providers[              HappnService.providerID] =               HappnService.self
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:187:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
185 | 		OfficeKitServices.providers[CloudflareZeroTrustService.providerID] = CloudflareZeroTrustService.self
186 | 		OfficeKitServices.providers[             GitHubService.providerID] =              GitHubService.self
187 | 		OfficeKitServices.providers[             GoogleService.providerID] =              GoogleService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
188 | 		OfficeKitServices.providers[              HappnService.providerID] =               HappnService.self
189 | 		OfficeKitServices.providers[               LDAPService.providerID] =                LDAPService.self
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:188:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
186 | 		OfficeKitServices.providers[             GitHubService.providerID] =              GitHubService.self
187 | 		OfficeKitServices.providers[             GoogleService.providerID] =              GoogleService.self
188 | 		OfficeKitServices.providers[              HappnService.providerID] =               HappnService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
189 | 		OfficeKitServices.providers[               LDAPService.providerID] =                LDAPService.self
190 | 		OfficeKitServices.providers[          Office365Service.providerID] =           Office365Service.self
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:189:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
187 | 		OfficeKitServices.providers[             GoogleService.providerID] =              GoogleService.self
188 | 		OfficeKitServices.providers[              HappnService.providerID] =               HappnService.self
189 | 		OfficeKitServices.providers[               LDAPService.providerID] =                LDAPService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
190 | 		OfficeKitServices.providers[          Office365Service.providerID] =           Office365Service.self
191 | 		OfficeKitServices.providers[          OfficeKitService.providerID] =           OfficeKitService.self
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:190:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
188 | 		OfficeKitServices.providers[              HappnService.providerID] =               HappnService.self
189 | 		OfficeKitServices.providers[               LDAPService.providerID] =                LDAPService.self
190 | 		OfficeKitServices.providers[          Office365Service.providerID] =           Office365Service.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
191 | 		OfficeKitServices.providers[          OfficeKitService.providerID] =           OfficeKitService.self
192 | #if canImport(OpenDirectoryOffice)
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:191:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
189 | 		OfficeKitServices.providers[               LDAPService.providerID] =                LDAPService.self
190 | 		OfficeKitServices.providers[          Office365Service.providerID] =           Office365Service.self
191 | 		OfficeKitServices.providers[          OfficeKitService.providerID] =           OfficeKitService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
192 | #if canImport(OpenDirectoryOffice)
193 | 		OfficeKitServices.providers[      OpenDirectoryService.providerID] =       OpenDirectoryService.self
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:193:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
191 | 		OfficeKitServices.providers[          OfficeKitService.providerID] =           OfficeKitService.self
192 | #if canImport(OpenDirectoryOffice)
193 | 		OfficeKitServices.providers[      OpenDirectoryService.providerID] =       OpenDirectoryService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
194 | #endif
195 | 		OfficeKitServices.providers[           SynologyService.providerID] =            SynologyService.self
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:195:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
193 | 		OfficeKitServices.providers[      OpenDirectoryService.providerID] =       OpenDirectoryService.self
194 | #endif
195 | 		OfficeKitServices.providers[           SynologyService.providerID] =            SynologyService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
196 | 		OfficeKitServices.providers[           VaultPKIService.providerID] =            VaultPKIService.self
197 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:196:21: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
194 | #endif
195 | 		OfficeKitServices.providers[           SynologyService.providerID] =            SynologyService.self
196 | 		OfficeKitServices.providers[           VaultPKIService.providerID] =            VaultPKIService.self
    |                     `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
197 |
198 | 		/* *** OFFICEKIT SERVICES *** */
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:196:58: warning: reference to class property 'providerID' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
194 | #endif
195 | 		OfficeKitServices.providers[           SynologyService.providerID] =            SynologyService.self
196 | 		OfficeKitServices.providers[           VaultPKIService.providerID] =            VaultPKIService.self
    |                                                          `- warning: reference to class property 'providerID' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
197 |
198 | 		/* *** OFFICEKIT SERVICES *** */
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/VaultPKI/VaultPKIService.swift:19:20: note: class property declared here
 17 | public final class VaultPKIService : UserService {
 18 |
 19 | 	public static var providerID = "happn/vault-pki"
    |                    `- note: class property declared here
 20 |
 21 | 	public typealias UserType = VaultPKIUser
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl.swift:201:43: warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
199 | 		var services = OfficeKitServices()
200 | 		for (serviceID, serviceDef) in conf?.services ?? [:] {
201 | 			guard let provider = OfficeKitServices.providers[serviceDef.providerID] else {
    |                                           `- warning: reference to static property 'providers' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
202 | 				logger.error("Cannot find provider ID for service.", metadata: [LMK.serviceID: "\(serviceID)", LMK.providerID: "\(serviceDef.providerID)"])
203 | 				throw ExitCode(1)
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKit/Utilities/Public/OfficeKitServices.swift:16:20: note: static property declared here
14 | public struct OfficeKitServices : Sendable {
15 |
16 | 	public static var providers = [String: OfficeService.Type]()
   |                    `- note: static property declared here
17 |
18 | 	public var authService: (any AuthenticatorService)?
[3095/3111] Compiling officectl experimental--console-perm.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/experimental/experimental--console-perm.swift:23:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 | struct Experimental_ConsolePerm : AsyncParsableCommand {
 22 |
 23 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 		commandName: "console-perm",
 25 | 		abstract: "Set the console permissions for a given user in the happn console."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | struct Server : AsyncParsableCommand {
19 |
20 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | 		abstract: "Interact with the server.",
22 | 		subcommands: [
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--process-jobs.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_ProcessJobs : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "process-jobs",
20 | 		abstract: "Start processing (non-scheduled) jobs in Vapor queues."
[3096/3111] Compiling officectl server.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/experimental/experimental--console-perm.swift:23:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 | struct Experimental_ConsolePerm : AsyncParsableCommand {
 22 |
 23 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 		commandName: "console-perm",
 25 | 		abstract: "Set the console permissions for a given user in the happn console."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | struct Server : AsyncParsableCommand {
19 |
20 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | 		abstract: "Interact with the server.",
22 | 		subcommands: [
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--process-jobs.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_ProcessJobs : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "process-jobs",
20 | 		abstract: "Start processing (non-scheduled) jobs in Vapor queues."
[3097/3111] Compiling officectl server--process-jobs.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/experimental/experimental--console-perm.swift:23:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 21 | struct Experimental_ConsolePerm : AsyncParsableCommand {
 22 |
 23 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 | 		commandName: "console-perm",
 25 | 		abstract: "Set the console permissions for a given user in the happn console."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | struct Server : AsyncParsableCommand {
19 |
20 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | 		abstract: "Interact with the server.",
22 | 		subcommands: [
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--process-jobs.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_ProcessJobs : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "process-jobs",
20 | 		abstract: "Start processing (non-scheduled) jobs in Vapor queues."
[3098/3111] Compiling officectl server--routes.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--routes.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_Routes : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "routes",
20 | 		abstract: "Show all the server’s routes."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--serve.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_Serve : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "serve",
20 | 		abstract: "Start the server."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/services.swift:16:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | struct Services : AsyncParsableCommand {
15 |
16 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | 		abstract: "Interact with services directly.",
18 | 		subcommands: [
[3099/3111] Compiling officectl server--serve.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--routes.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_Routes : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "routes",
20 | 		abstract: "Show all the server’s routes."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--serve.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_Serve : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "serve",
20 | 		abstract: "Start the server."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/services.swift:16:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | struct Services : AsyncParsableCommand {
15 |
16 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | 		abstract: "Interact with services directly.",
18 | 		subcommands: [
[3100/3111] Compiling officectl services.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--routes.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_Routes : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "routes",
20 | 		abstract: "Show all the server’s routes."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/server/server--serve.swift:18:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | struct Server_Serve : AsyncParsableCommand {
17 |
18 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | 		commandName: "serve",
20 | 		abstract: "Start the server."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/services.swift:16:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | struct Services : AsyncParsableCommand {
15 |
16 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | 		abstract: "Interact with services directly.",
18 | 		subcommands: [
[3101/3111] Compiling officectl users--delete.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--delete.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | struct Users_Delete : AsyncParsableCommand {
 19 |
 20 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | 		commandName: "delete",
 22 | 		abstract: "Delete a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--list.swift:29:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | 	}
 28 |
 29 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | 		commandName: "list",
 31 | 		abstract: "Create a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--list.swift:57:12: warning: capture of 'self' with non-sendable type 'Users_List' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | struct Users_List : AsyncParsableCommand {
    |        `- note: consider making struct 'Users_List' conform to the 'Sendable' protocol
 20 |
 21 | 	enum Format : String, CaseIterable, ExpressibleByArgument {
    :
 55 | 			includeSuspended: includeSuspendedUsers,
 56 | 			customFetchFilter: { userAndService in
 57 | 				guard !includeIgnoredUsers else {
    |            `- warning: capture of 'self' with non-sendable type 'Users_List' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 58 | 					return true
 59 | 				}
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--sync.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | struct Users_Sync : AsyncParsableCommand {
 19 |
 20 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | 		commandName: "sync",
 22 | 		abstract: "Sync users from a given service to one or multiple services."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--sync.swift:56:24: warning: capture of 'self' with non-sendable type 'Users_Sync' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 16 |
 17 |
 18 | struct Users_Sync : AsyncParsableCommand {
    |        `- note: consider making struct 'Users_Sync' conform to the 'Sendable' protocol
 19 |
 20 | 	static var configuration = CommandConfiguration(
    :
 54 | 			includeSuspended: false,
 55 | 			customFetchFilter: { userAndService in
 56 | 				let ignoredUsers = officectlOptions.ignoredUsersByServices[userAndService.serviceID] ?? []
    |                        `- warning: capture of 'self' with non-sendable type 'Users_Sync' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 57 | 				return !ignoredUsers.contains(userAndService.taggedID.id)
 58 | 			}
[3102/3111] Compiling officectl users--list.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--delete.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | struct Users_Delete : AsyncParsableCommand {
 19 |
 20 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | 		commandName: "delete",
 22 | 		abstract: "Delete a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--list.swift:29:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | 	}
 28 |
 29 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | 		commandName: "list",
 31 | 		abstract: "Create a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--list.swift:57:12: warning: capture of 'self' with non-sendable type 'Users_List' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | struct Users_List : AsyncParsableCommand {
    |        `- note: consider making struct 'Users_List' conform to the 'Sendable' protocol
 20 |
 21 | 	enum Format : String, CaseIterable, ExpressibleByArgument {
    :
 55 | 			includeSuspended: includeSuspendedUsers,
 56 | 			customFetchFilter: { userAndService in
 57 | 				guard !includeIgnoredUsers else {
    |            `- warning: capture of 'self' with non-sendable type 'Users_List' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 58 | 					return true
 59 | 				}
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--sync.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | struct Users_Sync : AsyncParsableCommand {
 19 |
 20 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | 		commandName: "sync",
 22 | 		abstract: "Sync users from a given service to one or multiple services."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--sync.swift:56:24: warning: capture of 'self' with non-sendable type 'Users_Sync' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 16 |
 17 |
 18 | struct Users_Sync : AsyncParsableCommand {
    |        `- note: consider making struct 'Users_Sync' conform to the 'Sendable' protocol
 19 |
 20 | 	static var configuration = CommandConfiguration(
    :
 54 | 			includeSuspended: false,
 55 | 			customFetchFilter: { userAndService in
 56 | 				let ignoredUsers = officectlOptions.ignoredUsersByServices[userAndService.serviceID] ?? []
    |                        `- warning: capture of 'self' with non-sendable type 'Users_Sync' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 57 | 				return !ignoredUsers.contains(userAndService.taggedID.id)
 58 | 			}
[3103/3111] Compiling officectl users--sync.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--delete.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | struct Users_Delete : AsyncParsableCommand {
 19 |
 20 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | 		commandName: "delete",
 22 | 		abstract: "Delete a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--list.swift:29:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | 	}
 28 |
 29 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | 		commandName: "list",
 31 | 		abstract: "Create a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--list.swift:57:12: warning: capture of 'self' with non-sendable type 'Users_List' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 17 |
 18 |
 19 | struct Users_List : AsyncParsableCommand {
    |        `- note: consider making struct 'Users_List' conform to the 'Sendable' protocol
 20 |
 21 | 	enum Format : String, CaseIterable, ExpressibleByArgument {
    :
 55 | 			includeSuspended: includeSuspendedUsers,
 56 | 			customFetchFilter: { userAndService in
 57 | 				guard !includeIgnoredUsers else {
    |            `- warning: capture of 'self' with non-sendable type 'Users_List' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 58 | 					return true
 59 | 				}
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--sync.swift:20:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 18 | struct Users_Sync : AsyncParsableCommand {
 19 |
 20 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 21 | 		commandName: "sync",
 22 | 		abstract: "Sync users from a given service to one or multiple services."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--sync.swift:56:24: warning: capture of 'self' with non-sendable type 'Users_Sync' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 16 |
 17 |
 18 | struct Users_Sync : AsyncParsableCommand {
    |        `- note: consider making struct 'Users_Sync' conform to the 'Sendable' protocol
 19 |
 20 | 	static var configuration = CommandConfiguration(
    :
 54 | 			includeSuspended: false,
 55 | 			customFetchFilter: { userAndService in
 56 | 				let ignoredUsers = officectlOptions.ignoredUsersByServices[userAndService.serviceID] ?? []
    |                        `- warning: capture of 'self' with non-sendable type 'Users_Sync' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 57 | 				return !ignoredUsers.contains(userAndService.taggedID.id)
 58 | 			}
[3104/3111] Compiling officectl services--list.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/services/services--list.swift:16:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | struct Services_List : AsyncParsableCommand {
15 |
16 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | 		commandName: "list",
18 | 		abstract: "List the services officectl knows about (from its configuration file)."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users.swift:17:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | struct Users : AsyncParsableCommand {
16 |
17 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | 		abstract: "Manage the users.",
19 | 		subcommands: [
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:21:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 19 | struct Users_Create : AsyncParsableCommand {
 20 |
 21 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | 		commandName: "create",
 23 | 		abstract: "Create a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:57:4: error: ambiguous use of 'init'
 55 |
 56 | 		let usersAndServicesResults = services.map{ s in
 57 | 			Result{
    |    |- error: ambiguous use of 'init'
    |    |- note: avoid using a trailing closure to call 'init(_:)'
    |    `- note: use an explicit argument label instead of a trailing closure to call 'init(catching:)'
 58 | 				let u = try s.value.logicalUser(fromUser: HintsUser(properties: [
 59 | 					.emails: [email],
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:78:61: error: cannot infer key path type from context; consider explicitly specifying a root type
 76 | 		}
 77 |
 78 | 		let usersAndServices = usersAndServicesResults.compactMap(\.success)
    |                                                             `- error: cannot infer key path type from context; consider explicitly specifying a root type
 79 | 		guard !usersAndServices.isEmpty else {
 80 | 			print("********* CREATION RESULTS *********")
[3105/3111] Compiling officectl users.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/services/services--list.swift:16:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | struct Services_List : AsyncParsableCommand {
15 |
16 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | 		commandName: "list",
18 | 		abstract: "List the services officectl knows about (from its configuration file)."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users.swift:17:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | struct Users : AsyncParsableCommand {
16 |
17 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | 		abstract: "Manage the users.",
19 | 		subcommands: [
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:21:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 19 | struct Users_Create : AsyncParsableCommand {
 20 |
 21 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | 		commandName: "create",
 23 | 		abstract: "Create a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:57:4: error: ambiguous use of 'init'
 55 |
 56 | 		let usersAndServicesResults = services.map{ s in
 57 | 			Result{
    |    |- error: ambiguous use of 'init'
    |    |- note: avoid using a trailing closure to call 'init(_:)'
    |    `- note: use an explicit argument label instead of a trailing closure to call 'init(catching:)'
 58 | 				let u = try s.value.logicalUser(fromUser: HintsUser(properties: [
 59 | 					.emails: [email],
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:78:61: error: cannot infer key path type from context; consider explicitly specifying a root type
 76 | 		}
 77 |
 78 | 		let usersAndServices = usersAndServicesResults.compactMap(\.success)
    |                                                             `- error: cannot infer key path type from context; consider explicitly specifying a root type
 79 | 		guard !usersAndServices.isEmpty else {
 80 | 			print("********* CREATION RESULTS *********")
[3106/3111] Compiling officectl users--create.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/services/services--list.swift:16:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | struct Services_List : AsyncParsableCommand {
15 |
16 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | 		commandName: "list",
18 | 		abstract: "List the services officectl knows about (from its configuration file)."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users.swift:17:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | struct Users : AsyncParsableCommand {
16 |
17 | 	static var configuration = CommandConfiguration(
   |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | 		abstract: "Manage the users.",
19 | 		subcommands: [
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:21:13: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 19 | struct Users_Create : AsyncParsableCommand {
 20 |
 21 | 	static var configuration = CommandConfiguration(
    |             |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | 		commandName: "create",
 23 | 		abstract: "Create a user."
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:57:4: error: ambiguous use of 'init'
 55 |
 56 | 		let usersAndServicesResults = services.map{ s in
 57 | 			Result{
    |    |- error: ambiguous use of 'init'
    |    |- note: avoid using a trailing closure to call 'init(_:)'
    |    `- note: use an explicit argument label instead of a trailing closure to call 'init(catching:)'
 58 | 				let u = try s.value.logicalUser(fromUser: HintsUser(properties: [
 59 | 					.emails: [email],
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:78:61: error: cannot infer key path type from context; consider explicitly specifying a root type
 76 | 		}
 77 |
 78 | 		let usersAndServices = usersAndServicesResults.compactMap(\.success)
    |                                                             `- error: cannot infer key path type from context; consider explicitly specifying a root type
 79 | 		guard !usersAndServices.isEmpty else {
 80 | 			print("********* CREATION RESULTS *********")
[3106/3111] Linking officectl-odproxy
warning: 'jwt': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/jwt/Sources/JWT/Docs.docc
warning: 'multipart-kit': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/multipart-kit/Sources/MultipartKit/Docs.docc
warning: 'swift-algorithms': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-algorithms/Sources/Algorithms/Documentation.docc
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/8] Write swift-version-2F0A5646E1D333AE.txt
[3/136] Compiling Atomics PointerConformances.swift
[4/136] Compiling Atomics Primitives.native.swift
[5/136] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[6/137] Compiling Atomics UnsafeAtomic.swift
[7/137] Compiling Atomics UnsafeAtomicLazyReference.swift
[8/137] Compiling Atomics ManagedAtomic.swift
[9/137] Compiling Atomics ManagedAtomicLazyReference.swift
[10/137] Compiling Deserializer Traced.swift
[11/137] Compiling Deserializer TOMLDeserializer.swift
[16/139] Compiling Atomics AtomicStorage.swift
[17/139] Compiling Atomics AtomicValue.swift
[18/139] Compiling Atomics AtomicMemoryOrderings.swift
[19/139] Compiling Atomics DoubleWord.swift
[20/139] Compiling Crypto AES-GCM.swift
[21/139] Compiling Crypto AES-GCM_boring.swift
[22/139] Compiling Atomics AtomicBool.swift
[23/139] Compiling Atomics IntegerConformances.swift
[26/139] Compiling Atomics Primitives.shims.swift
[27/145] Compiling CollectionConcurrencyKit DictionarySupport.swift
[29/145] Compiling Atomics AtomicInteger.swift
[32/145] Compiling Crypto Curve25519.swift
[33/145] Compiling Crypto Ed25519.swift
[34/145] Compiling Crypto NISTCurvesKeys.swift
[35/145] Compiling Crypto X25519Keys.swift
[36/145] Compiling Crypto SymmetricKeys.swift
[37/145] Compiling Crypto HMAC.swift
[38/145] Compiling Crypto MACFunctions.swift
[39/145] Compiling Crypto SEC1PrivateKey.swift
[40/145] Compiling Crypto SubjectPublicKeyInfo.swift
[41/145] Compiling Crypto CryptoKitErrors.swift
[42/145] Compiling Crypto Digest_boring.swift
[43/145] Compiling Crypto Digest.swift
[44/145] Compiling Crypto Digests.swift
[45/145] Compiling Crypto HashFunctions.swift
[46/145] Compiling Crypto MessageAuthenticationCode.swift
[47/145] Compiling Crypto AES.swift
[48/145] Compiling Crypto ECDSASignature_boring.swift
[49/145] Compiling Crypto ECDSA_boring.swift
[50/145] Compiling Crypto EdDSA_boring.swift
[51/145] Compiling Crypto ECDSA.swift
[52/145] Compiling Crypto EdDSA.swift
[53/145] Compiling Crypto Signature.swift
[54/145] Compiling Crypto ArbitraryPrecisionInteger_boring.swift
[55/145] Compiling Crypto CryptoKitErrors_boring.swift
[56/145] Compiling Crypto FiniteFieldArithmeticContext_boring.swift
[57/145] Compiling Crypto RNG_boring.swift
[58/145] Compiling Crypto HashFunctions_SHA2.swift
[59/145] Compiling Crypto Insecure.swift
[60/145] Compiling Crypto Insecure_HashFunctions.swift
[61/145] Compiling Crypto ECDH_boring.swift
[62/145] Compiling Crypto DH.swift
[63/145] Compiling Crypto ECDH.swift
[64/145] Compiling Crypto HKDF.swift
[65/145] Compiling Crypto AESWrap.swift
[66/145] Compiling Crypto AESWrap_boring.swift
[67/145] Compiling Crypto Ed25519_boring.swift
[68/145] Compiling Crypto EllipticCurvePoint_boring.swift
[69/145] Compiling Crypto EllipticCurve_boring.swift
[70/145] Compiling Crypto NISTCurvesKeys_boring.swift
[71/145] Compiling Crypto X25519Keys_boring.swift
[75/145] Compiling Atomics AtomicOptionalWrappable.swift
[76/145] Compiling Atomics AtomicReference.swift
[83/145] Compiling Atomics IntegerOperations.swift
[84/145] Compiling Atomics Unmanaged extensions.swift
[85/145] Compiling Crypto PKCS8PrivateKey.swift
[86/145] Emitting module CollectionConcurrencyKit
[87/145] Compiling CollectionConcurrencyKit CollectionConcurrencyKit.swift
[88/145] Compiling DequeModule _UnsafeWrappedBuffer.swift
[89/145] Compiling FormURLEncodedCoder FormURLEncodedData.swift
[90/145] Emitting module Crypto
[91/145] Compiling FormURLEncodedCoder FormURLEncodedSerializer.swift
[92/145] Compiling FormURLEncodedCoder URLQueryFragmentConvertible.swift
[93/145] Emitting module CryptoBoringWrapper
[94/145] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[95/145] Compiling FormURLEncodedCoder FormURLEncodedEncodingErrors.swift
[96/145] Compiling FormURLEncodedCoder FormURLEncodedParser.swift
[103/151] Compiling FormURLEncodedCoder FormURLEncodedEncoder.swift
[108/151] Emitting module ArgumentParserToolInfo
[109/151] Compiling ArgumentParserToolInfo ToolInfo.swift
[110/151] Compiling CoreMetrics Locks.swift
[111/151] Emitting module CoreMetrics
[112/151] Compiling CoreMetrics Metrics.swift
[119/163] Emitting module FormURLEncodedCoder
[120/163] Compiling FormURLEncodedCoder FormURLEncodedDecoder.swift
[121/163] Compiling _NIOBase64 Base64.swift
[122/163] Emitting module _NIOBase64
[123/163] Emitting module DequeModule
[124/163] Compiling _NIODataStructures PriorityQueue.swift
[125/163] Compiling _NIODataStructures Heap.swift
[126/163] Compiling _NIODataStructures _TinyArray.swift
[127/163] Emitting module _NIODataStructures
[128/163] Compiling UnwrapOrThrow UnwrapOrThrowOperator.swift
[129/163] Compiling UnwrapOrThrow UnwrapOrThrow.swift
[130/163] Emitting module UnwrapOrThrow
[131/163] Compiling Crypto SafeCompare_boring.swift
[132/163] Compiling Crypto Zeroization_boring.swift
[133/163] Compiling Crypto PrettyBytes.swift
[134/163] Compiling Crypto SafeCompare.swift
[135/163] Compiling Crypto SecureBytes.swift
[136/163] Compiling Crypto Zeroization.swift
[137/165] Compiling XDG FilePath+Utils.swift
[138/193] Compiling SwiftASN1 ASN1BitString.swift
[139/193] Compiling SwiftASN1 ASN1Boolean.swift
[140/193] Compiling SwiftASN1 ASN1Identifier.swift
[141/193] Compiling SwiftASN1 ASN1Integer.swift
[142/249] Compiling XDG BaseDirectories+GetPath.swift
[143/249] Compiling XDG BaseDirectories+FindFiles.swift
[144/249] Compiling XDG BaseDirectories+FindFile.swift
[145/249] Compiling XDG BaseDirectories+EnsureFileParents.swift
[146/249] Compiling XDG BaseDirectories+EnsureDir.swift
[147/249] Emitting module XDG
[148/249] Compiling XDG  Errors.swift
[149/249] Compiling XDG BaseDirectories.swift
[150/249] Compiling TaskQueue TaskQueue.swift
[151/249] Emitting module TaskQueue
[152/249] Emitting module RecursiveSyncDispatch
[153/249] Compiling RecursiveSyncDispatch RecursiveSyncDispatch.swift
[154/249] Compiling RealModule Float80+Real.swift
[155/249] Compiling RealModule Real.swift
[156/255] Compiling RealModule RealFunctions.swift
[157/255] Compiling RealModule Float16+Real.swift
[158/255] Compiling RealModule ElementaryFunctions.swift
[159/255] Compiling RealModule Float+Real.swift
[160/255] Compiling RealModule AugmentedArithmetic.swift
[161/255] Compiling RealModule ApproximateEquality.swift
[162/255] Compiling RealModule AlgebraicField.swift
[163/255] Compiling RealModule Double+Real.swift
[164/269] Compiling SwiftASN1 UTCTime.swift
[165/276] Compiling _CryptoExtras RSA_boring.swift
[166/276] Compiling _CryptoExtras RSA_security.swift
[167/276] Emitting module RealModule
[168/276] Compiling SwiftASN1 PEMDocument.swift
[169/276] Compiling SwiftASN1 TimeUtilities.swift
[170/278] Compiling OfficeModelCore TaggedID.swift
[171/278] Compiling _CryptoExtras AES_GCM_SIV.swift
[172/278] Compiling _CryptoExtras Block Function.swift
[173/278] Compiling _CryptoExtras ChaCha20CTR.swift
[174/278] Compiling _CryptoExtras RSA.swift
[175/278] Compiling _CryptoExtras AES_GCM_SIV_boring.swift
[176/278] Compiling _CryptoExtras ChaCha20CTR_boring.swift
[179/278] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[180/278] Compiling OrderedCollections _HashTable+Testing.swift
[181/283] Compiling StreamReader StreamReaderErrors.swift
[182/283] Compiling StreamReader StreamReader.swift
[183/283] Compiling StreamReader Matching.swift
[184/283] Compiling StreamReader DataReader.swift
[185/283] Compiling StreamReader URLSessionStreamTaskReader.swift
[186/283] Compiling StreamReader FileHandleReader.swift
[187/283] Compiling StreamReader InputStreamReader.swift
[188/283] Compiling StreamReader FileDescriptorReader.swift
[189/283] Emitting module StreamReader
[190/283] Compiling StreamReader GenericStreamReader.swift
[191/283] Compiling SwiftASN1 Errors.swift
[192/283] Compiling OfficeModelCore None.swift
[193/283] Compiling OfficeModelCore RemoteProperty.swift
[194/283] Emitting module OfficeModelCore
[195/283] Compiling OfficeModelCore Tag.swift
[196/283] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Predicates.swift
[197/283] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[198/283] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[199/283] Compiling OrderedCollections OrderedSet+SubSequence.swift
[200/283] Compiling OrderedCollections OrderedSet+Testing.swift
[201/283] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[202/283] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[203/283] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[204/283] Compiling OrderedCollections OrderedDictionary+Values.swift
[205/283] Compiling OrderedCollections OrderedDictionary.swift
[206/283] Compiling Email Email.swift
[207/283] Emitting module Email
[208/283] Emitting module Atomics
[211/283] Compiling OrderedCollections OrderedSet+Codable.swift
[212/283] Compiling OrderedCollections OrderedSet+CustomDebugStringConvertible.swift
[217/293] Emitting module NIOConcurrencyHelpers
[218/293] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[219/293] Compiling OrderedCollections OrderedSet+Invariants.swift
[220/293] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[221/293] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[222/293] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[223/293] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Operations.swift
[224/293] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[225/293] Compiling OrderedCollections OrderedDictionary+CustomStringConvertible.swift
[226/293] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[227/293] Compiling OrderedCollections OrderedDictionary+Elements+SubSequence.swift
[228/293] Compiling OrderedCollections OrderedDictionary+Elements.swift
[229/293] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[230/293] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[231/293] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[232/293] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[233/293] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[236/293] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[237/293] Compiling OrderedCollections OrderedSet+CustomStringConvertible.swift
[238/293] Compiling OrderedCollections OrderedSet+Diffing.swift
[239/293] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[240/293] Compiling OrderedCollections _HashTable.swift
[241/293] Compiling OrderedCollections _Hashtable+Header.swift
[242/293] Compiling OrderedCollections OrderedDictionary+Codable.swift
[243/293] Compiling OrderedCollections OrderedDictionary+CustomDebugStringConvertible.swift
[244/293] Compiling Metrics Metrics.swift
[245/293] Emitting module Metrics
[246/293] Compiling _CryptoExtras DigestType.swift
[247/293] Compiling _CryptoExtras Error.swift
[248/293] Compiling _CryptoExtras PEMDocument.swift
[249/294] Emitting module Deserializer
[250/294] Compiling Deserializer DeserializationError.swift
[251/294] Compiling Deserializer Parser.swift
[252/294] Compiling NIOConcurrencyHelpers lock.swift
[253/294] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[254/294] Compiling NIOConcurrencyHelpers NIOLock.swift
[255/294] Compiling NIOConcurrencyHelpers atomics.swift
[256/353] Emitting module LegibleError
[257/353] Compiling LegibleError LegibleError.swift
[258/353] Compiling JWTKit AudienceClaim.swift
[259/353] Compiling JWTKit BoolClaim.swift
[260/353] Compiling Email EmailValidator+ValidationCodes.swift
[261/353] Compiling Email EmailValidator.swift
[262/353] Emitting module HasResult
[263/353] Compiling HasResult HasResult.swift
[264/353] Compiling _CryptoExtras BoringSSLHelpers.swift
[265/353] Compiling _CryptoExtras CryptoKitErrors_boring.swift
[266/353] Compiling JWTKit HMACError.swift
[267/353] Compiling JWTKit HMACSigner.swift
[268/353] Compiling _CryptoExtras RandomBytes.swift
[269/353] Compiling JWTKit JWTSigner+EdDSA.swift
[270/353] Compiling JWTKit OctetKeyPair.swift
[271/353] Compiling OrderedCollections OrderedSet.swift
[272/353] Compiling OrderedCollections RandomAccessCollection+Offsets.swift
[273/353] Compiling OrderedCollections _UnsafeBitset.swift
[274/353] Compiling MediaType Scanner+LinuxCompat.swift
[275/353] Emitting module MediaType
[276/353] Compiling MediaType MediaType.swift
[277/390] Compiling OperationAwaiting SendableOperation.swift
[278/421] Compiling NIOCore ChannelPipeline.swift
[279/421] Compiling NIOCore CircularBuffer.swift
[280/421] Compiling NIOCore Codec.swift
[281/421] Compiling NIOCore ByteBuffer-core.swift
[282/421] Compiling NIOCore ByteBuffer-hexdump.swift
[283/426] Compiling NIOCore AddressedEnvelope.swift
[284/426] Compiling NIOCore AsyncAwaitSupport.swift
[285/426] Compiling NIOCore AsyncChannel.swift
[286/426] Compiling NIOCore AsyncChannelInboundStream.swift
[287/426] Compiling NIOCore AsyncChannelInboundStreamChannelHandler.swift
[288/426] Compiling NIOCore AsyncChannelOutboundWriter.swift
[289/426] Emitting module SwiftASN1
[290/464] Compiling GenericJSON Querying.swift
[291/464] Compiling ArgumentParser FishCompletionsGenerator.swift
[292/464] Compiling ArgumentParser ZshCompletionsGenerator.swift
[293/464] Compiling ArgumentParser Argument.swift
[294/464] Compiling ArgumentParser ParsableArguments.swift
[295/464] Compiling ArgumentParser ParsableArgumentsValidation.swift
[296/464] Compiling ArgumentParser ParsableCommand.swift
[297/464] Compiling ArgumentParser ArgumentDecoder.swift
[298/464] Compiling ArgumentParser ArgumentHelp.swift
[299/464] Compiling ArgumentParser ArgumentVisibility.swift
[300/464] Compiling ArgumentParser CompletionKind.swift
[301/464] Compiling ArgumentParser Errors.swift
[302/464] Emitting module OperationAwaiting
[303/464] Compiling OperationAwaiting Operation+Async.swift
[304/464] Compiling OperationAwaiting OperationQueue+Async.swift
[305/464] Compiling GenericJSON Merging.swift
[306/464] Compiling GenericJSON JSON.swift
[307/464] Compiling NIOCore ByteBuffer-conversions.swift
[308/464] Compiling NIOCore ChannelHandler.swift
[309/464] Compiling NIOCore ChannelHandlers.swift
[310/464] Compiling NIOCore ChannelInvoker.swift
[311/464] Compiling NIOCore ChannelOption.swift
[312/464] Compiling ArgumentParser ParsedValues.swift
[313/464] Compiling ArgumentParser ArgumentDefinition.swift
[314/464] Compiling ArgumentParser ArgumentSet.swift
[315/464] Compiling ArgumentParser CommandParser.swift
[316/464] Compiling ArgumentParser InputKey.swift
[317/464] Compiling ArgumentParser MessageInfo.swift
[318/464] Compiling ArgumentParser UsageGenerator.swift
[319/464] Compiling ArgumentParser CollectionExtensions.swift
[320/464] Compiling ArgumentParser Flag.swift
[321/464] Compiling ArgumentParser NameSpecification.swift
[322/464] Compiling ArgumentParser Option.swift
[323/464] Compiling ArgumentParser OptionGroup.swift
[324/464] Compiling ArgumentParser InputOrigin.swift
[325/464] Compiling ArgumentParser Name.swift
[326/464] Compiling ArgumentParser Parsed.swift
[327/464] Compiling ArgumentParser ParserError.swift
[328/464] Compiling ArgumentParser SplitArguments.swift
[329/464] Compiling ArgumentParser DumpHelpGenerator.swift
[330/464] Compiling ArgumentParser HelpCommand.swift
[331/464] Compiling ArgumentParser HelpGenerator.swift
[332/490] Compiling TOMLDecoder TOMLKeyedDecodingContainer.swift
[333/490] Compiling TOMLDecoder TOMLDecodingStorage.swift
[334/490] Compiling TOMLDecoder TOMLKey.swift
[335/490] Compiling TOMLDecoder TOMLUnkeyedDecodingContainer.swift
[336/490] Emitting module JWTKit
[337/490] Compiling Algorithms AdjacentPairs.swift
[338/490] Compiling Algorithms Chain.swift
[339/490] Compiling Algorithms FirstNonNil.swift
[340/490] Compiling Algorithms FlattenCollection.swift
[341/490] Emitting module _CryptoExtras
[342/490] Compiling Algorithms Chunked.swift
[343/490] Compiling Algorithms EitherSequence.swift
[344/490] Compiling Algorithms Suffix.swift
[345/490] Compiling Algorithms Trim.swift
[346/492] Emitting module OrderedCollections
[347/497] Compiling GenericJSON Initialization.swift
[348/497] Emitting module GenericJSON
[349/497] Compiling TOMLDecoder TOMLDecoder.swift
[350/497] Compiling TOMLDecoder KeyDecodingStrategy.swift
[351/497] Emitting module TOMLDecoder
[352/497] Compiling TOMLDecoder DecodingError+Extensions.swift
[353/497] Compiling TOMLDecoder TOMLDecoderImpl.swift
[354/497] Compiling Logging LogHandler.swift
[355/497] Compiling Logging MetadataProvider.swift
[356/497] Compiling Logging Locks.swift
[357/497] Emitting module Logging
[358/497] Compiling Logging Logging.swift
[359/499] Emitting module Collections
[360/499] Compiling Collections Collections.swift
[361/563] Compiling APIConnectionProtocols Connector.swift
[362/563] Compiling APIConnectionProtocols Authenticator.swift
[363/563] Compiling APIConnectionProtocols Authenticator+Conveniences.swift
[364/563] Emitting module APIConnectionProtocols
[365/563] Compiling APIConnectionProtocols Connector+Conveniences.swift
[366/563] Compiling XibLoc StringAttributesChangesDescription.swift
[367/563] Compiling XibLoc XibLocFont.swift
[368/650] Compiling X509 CMSEncapsulatedContentInfo.swift
[369/650] Compiling X509 CMSIssuerAndSerialNumber.swift
[370/650] Compiling X509 CMSOperations.swift
[371/650] Compiling X509 CMSSignature.swift
[372/652] Emitting module ArgumentParser
[373/656] Compiling X509 CertificateSigningRequest.swift
[374/656] Compiling X509 CertificationRequestInfo.swift
[375/656] Compiling X509 StreetAddress.swift
[376/656] Compiling X509 Error.swift
[377/656] Compiling X509 AuthorityInformationAccess.swift
[378/656] Compiling X509 AuthorityKeyIdentifier.swift
[379/656] Compiling X509 CMSSignedData.swift
[380/656] Compiling X509 CMSSignerIdentifier.swift
[381/656] Compiling X509 CertificateVersion.swift
[382/656] Compiling X509 CMSContentInfo.swift
[383/656] Compiling X509 OrganizationalUnitName.swift
[384/656] Compiling X509 StateOrProvinceName.swift
[385/656] Compiling X509 ExtensionIdentifiers.swift
[386/656] Compiling X509 CertificateSerialNumber.swift
[387/656] Compiling X509 BasicConstraints.swift
[388/656] Compiling X509 ExtendedKeyUsage.swift
[389/656] Emitting module OfficeModel
[390/656] Compiling X509 SubjectAlternativeName.swift
[391/656] Compiling X509 SubjectKeyIdentifier.swift
[392/656] Compiling X509 Extension.swift
[393/656] Compiling X509 Extensions.swift
[394/656] Compiling X509 ExtensionsBuilder.swift
[395/656] Compiling SemiSingleton LinuxStrongToWeakMapTable.swift
[396/656] Compiling SemiSingleton SemiSingletonStore.swift
[397/656] Compiling SemiSingleton SemiSingletonConfig.swift
[398/656] Emitting module SemiSingleton
[399/656] Compiling RoutingKit PathComponent.swift
[400/656] Compiling RoutingKit Router.swift
[401/656] Compiling RoutingKit Parameters.swift
[402/656] Compiling RoutingKit AnyRouter.swift
[403/656] Compiling RoutingKit TrieRouter.swift
[404/656] Emitting module RoutingKit
[405/656] Compiling RetryingOperation RetryingOperationConfig.swift
[406/656] Compiling RetryingOperation WrappedRetryingOperation.swift
[407/656] Compiling X509 CertificatePrivateKey.swift
[408/656] Compiling X509 CertificatePublicKey.swift
[409/656] Compiling X509 OCSPResponseData.swift
[410/656] Compiling X509 OCSPResponseStatus.swift
[411/656] Compiling X509 OCSPSingleResponse.swift
[412/656] Compiling X509 OCSPTBSRequest.swift
[413/656] Compiling X509 OCSPVersion.swift
[414/669] Emitting module XibLoc
[415/669] Compiling OfficeModel ApiAuthTokenRevokeRequest.swift
[416/669] Compiling OfficeModel _Exports.swift
[417/669] Compiling X509 CSRVersion.swift
[442/721] Compiling ConsoleKit Console+Input.swift
[443/721] Compiling ConsoleKit Console+Center.swift
[444/721] Compiling ConsoleKit Console+Output.swift
[445/721] Compiling ConsoleKit LoadingBar.swift
[446/721] Compiling ConsoleKit ProgressBar.swift
[447/721] Compiling ConsoleKit Console+Clear.swift
[448/721] Compiling JSONLogger NSLock+Linux.swift
[449/721] Compiling RetryingOperation RetryHelper.swift
[450/721] Emitting module RetryingOperation
[451/721] Compiling RetryingOperation RetryingOperation.swift
[452/721] Compiling ConsoleKit AsyncCommandGroup.swift
[453/721] Compiling ConsoleKit Flag.swift
[454/721] Compiling ConsoleKit Option.swift
[455/721] Compiling ConsoleKit AnyCommand.swift
[456/721] Compiling ConsoleKit Argument.swift
[457/721] Compiling ConsoleKit AnyAsyncCommand.swift
[458/721] Compiling ConsoleKit AsyncCommand.swift
[459/721] Compiling ConsoleKit CommandSignature.swift
[460/721] Compiling ConsoleKit Commands.swift
[461/721] Compiling ConsoleKit Completion.swift
[462/721] Compiling ConsoleKit Console+Run.swift
[463/721] Compiling ConsoleKit Utilities.swift
[464/721] Compiling ConsoleKit Console.swift
[465/721] Compiling ConsoleKit Console+Ask.swift
[466/721] Compiling ConsoleKit ActivityBar.swift
[467/721] Compiling JSONLogger String+Utils.swift
[468/721] Compiling ConsoleKit Console+Ephemeral.swift
[469/721] Compiling ConsoleKit ConsoleClear.swift
[470/721] Compiling ConsoleKit CommandInput.swift
[476/721] Compiling ConsoleKit CommandGroup.swift
[477/721] Compiling ConsoleKit Console+Choose.swift
[478/721] Compiling ConsoleKit Console+Confirm.swift
[481/721] Compiling ConsoleKit AsyncCommands.swift
[482/721] Compiling ConsoleKit Command.swift
[483/721] Compiling ConsoleKit CommandContext.swift
[484/721] Compiling ConsoleKit CommandError.swift
[488/721] Compiling X509 CMSSignerInfo.swift
[489/721] Compiling X509 CMSVersion.swift
[490/721] Compiling X509 Digests.swift
[491/721] Compiling X509 DistinguishedName.swift
[492/721] Compiling X509 CommonName.swift
[493/721] Compiling X509 CountryName.swift
[494/721] Compiling X509 DNBuilder.swift
[495/721] Compiling X509 LocalityName.swift
[496/721] Compiling X509 OrganizationName.swift
[497/781] Compiling URLRequestOperation URLRequestDataOperation+Images.swift
[498/781] Compiling URLRequestOperation URLRequestDataOperation+String.swift
[499/781] Compiling URLRequestOperation URLRequestDataOperation.swift
[500/781] Compiling URLRequestOperation OtherSuccessRetryHelper.swift
[501/781] Compiling URLRequestOperation LogMetadataKeys.swift
[502/781] Compiling URLRequestOperation NSLock+Linux.swift
[503/781] Compiling URLRequestOperation Result+Utils.swift
[504/781] Compiling URLRequestOperation RetryCountsHolder.swift
[505/781] Compiling URLRequestOperation SafeGlobal.swift
[506/781] Compiling URLRequestOperation String+Utils.swift
[507/781] Compiling URLRequestOperation ResultProcessor.swift
[508/781] Compiling URLRequestOperation RetryProvider.swift
[509/781] Compiling URLRequestOperation RequestProcessor.swift
[510/781] Compiling URLRequestOperation URLRequestDataOperation+APIs-UntypedError.swift
[511/781] Compiling URLRequestOperation URLRequestDataOperation+Data.swift
[512/781] Compiling NIOCore SocketOptionProvider.swift
[513/781] Compiling NIOCore SystemCallHelpers.swift
[514/781] Compiling NIOCore TimeAmount+Duration.swift
[515/781] Compiling NIOCore TypeAssistedChannelHandler.swift
[516/781] Compiling NIOCore UniversalBootstrapSupport.swift
[517/781] Compiling NIOCore Utilities.swift
[518/781] Compiling JSONLogger LogLine.swift
[519/781] Emitting module JSONLogger
[520/781] Compiling JSONLogger JSONLogger.swift
[521/781] Emitting module CLTLogger
[522/781] Compiling URLRequestOperation BlockDispatcher.swift
[523/781] Compiling URLRequestOperation HTTPContentCoder+FormURLEncodedEncoding.swift
[524/781] Compiling URLRequestOperation HTTPContentCoder+JSON.swift
[525/781] Compiling URLRequestOperation HTTPContentCoder.swift
[526/781] Compiling URLRequestOperation HTTPURLResponse+Utils.swift
[527/786] Compiling URLRequestOperation URL+Utils.swift
[528/786] Compiling URLRequestOperation URLQueryCoder+HTTPContentCoder+FormURLEncodedEncoding.swift
[529/786] Compiling URLRequestOperation URLQueryCoder.swift
[530/786] Compiling URLRequestOperation URLRequest+Utils.swift
[531/786] Compiling URLRequestOperation URLSession+Linux.swift
[535/786] Compiling URLRequestOperation BlockRequestProcessor.swift
[536/786] Compiling URLRequestOperation AnyResultProcessor.swift
[544/786] Compiling URLRequestOperation URLResponseValidator.swift
[545/786] Compiling URLRequestOperation AsyncBlockRequestProcessor.swift
[559/786] Emitting module ConsoleKit
[561/786] Compiling URLRequestOperation ReachabilityRetryHelper.swift
[562/786] Compiling URLRequestOperation NetworkErrorRetryProvider.swift
[563/786] Compiling URLRequestOperation UnretriedErrorsRetryProvider.swift
[564/786] Compiling URLRequestOperation HTTPStatusCodeURLResponseValidator.swift
[570/786] Compiling URLRequestOperation LinuxWeakToWeakMapTable.swift
[571/786] Compiling URLRequestOperation DecodeDataResultProcessor.swift
[572/786] Compiling URLRequestOperation DecodeHTTPContentResultProcessor.swift
[573/786] Compiling URLRequestOperation HTTPStatusCodeCheckResultProcessor.swift
[575/786] Compiling URLRequestOperation RecoverHTTPStatusCodeCheckErrorResultProcessor.swift
[576/786] Compiling URLRequestOperation URLMoveResultProcessor.swift
[577/786] Compiling URLRequestOperation URLToFileHandleResultProcessor.swift
[586/786] Compiling URLRequestOperation URLRequestDownloadOperation+Open.swift
[587/786] Compiling URLRequestOperation URLRequestDownloadOperation+Save.swift
[588/786] Compiling URLRequestOperation URLRequestDownloadOperation.swift
[589/786] Compiling URLRequestOperation URLRequestStreamOperation.swift
[609/791] Compiling URLRequestOperation URLRequestOperationSessionDelegate.swift
[620/791] Emitting module URLRequestOperation
[621/791] Compiling ConsoleKit GenerateAsyncAutocompleteCommand.swift
[622/791] Compiling ConsoleKit GenerateAutocompleteCommand.swift
[623/791] Compiling ConsoleKit LoggerFragment.swift
[624/791] Compiling ConsoleKit String+LevenshteinDistance.swift
[625/791] Compiling URLRequestOperation ReachabilitySubscriber.swift
[651/791] Compiling ConsoleKit ConsoleLogger.swift
[652/791] Emitting module Algorithms
[653/791] Compiling X509 VerifierPolicy.swift
[654/791] Compiling X509 AlgorithmIdentifier.swift
[655/791] Compiling X509 ECDSASignature.swift
[656/791] Compiling X509 RSAPKCS1PublicKey.swift
[657/791] Compiling X509 SubjectPublicKeyInfo.swift
[658/791] Compiling X509 TBSCertificate.swift
[659/791] Compiling X509 Time.swift
[660/791] Compiling X509 Validity.swift
[678/791] Compiling URLRequestOperation SockaddrWrapper.swift
[679/791] Compiling URLRequestOperation URLRequestOperation.swift
[680/791] Compiling URLRequestOperation URLRequestOperationConfig.swift
[690/791] Compiling URLRequestOperation URLRequestOperationErrors.swift
[691/791] Compiling URLRequestOperation URLRequestOperationResult.swift
[692/791] Compiling X509 SEC1PrivateKey.swift
[693/791] Compiling X509 Signature.swift
[700/791] Compiling X509 OCSPCertID.swift
[701/791] Compiling X509 OCSPCertStatus.swift
[702/791] Compiling X509 OCSPExtensionID.swift
[703/791] Compiling X509 OCSPNonce.swift
[704/791] Compiling X509 OCSPPolicy.swift
[705/791] Compiling X509 OCSPRequest.swift
[706/791] Compiling X509 OCSPResponse.swift
[707/791] Compiling X509 OCSPResponseBytes.swift
[741/791] Emitting module X509
[781/833] Compiling CLTLogger SGR.swift
[782/833] Compiling CLTLogger NSLock+Linux.swift
[783/833] Compiling CLTLogger CLTLogger.swift
[784/833] Compiling CLTLogger String+Utils.swift
[785/837] Compiling OfficeKit  Config.swift
[786/837] Compiling OfficeKit  Errors.swift
[787/837] Compiling OfficeKit AuthenticatorService.swift
[788/837] Compiling OfficeKit GroupOfUsers.swift
[789/837] Compiling OfficeKit GroupOfUsersAndService.swift
[790/841] Compiling OfficeKit MightBeEmail.swift
[791/841] Compiling OfficeKit OfficeKitServices.swift
[792/841] Compiling OfficeKit PropertyChangeResult.swift
[793/841] Compiling OfficeKit DefaultForAbsentValueWrapper.swift
[794/841] Compiling OfficeKit UserAndService.swift
[795/841] Compiling OfficeKit UserAndServiceID+Impl.swift
[796/841] Compiling OfficeKit UserAndServiceID.swift
[797/841] Compiling OfficeKit UserProperty.swift
[798/841] Compiling OfficeKit UserService.swift
[799/841] Compiling OfficeKit Email+Utils.swift
[800/841] Compiling OfficeKit Error+Utils.swift
[801/841] Compiling OfficeKit ErrorCollection.swift
[802/841] Compiling OfficeKit LDAPAttributeDescription.swift
[803/841] Compiling OfficeKit EmptyIsNilWrapper.swift
[804/841] Compiling OfficeKit IndirectWrapper.swift
[805/841] Compiling OfficeKit String+Utils.swift
[806/841] Compiling CommonForOfficeKitServicesTests Result+Utils.swift
[807/841] Compiling OfficeKit User+Utils.swift
[808/841] Compiling OfficeKit GroupOfUsersService.swift
[809/841] Compiling OfficeKit OfficeService.swift
[810/841] Compiling CommonForOfficeKitServicesTests MessageError.swift
[811/841] Compiling OfficeKit HintsUser.swift
[812/841] Emitting module CommonForOfficeKitServicesTests
[813/841] Compiling OfficeKit User.swift
[814/841] Compiling OfficeKit UserAndService+Impl.swift
[815/841] Compiling CommonForOfficeKitServicesTests XCTestCase+Utils.swift
[816/841] Emitting module OfficeKit
[817/841] Emitting module NIOCore
[818/841] Compiling OfficeKit LDAPDistinguishedName.swift
[819/841] Compiling OfficeKit LDAPObjectID.swift
[820/841] Compiling OfficeKit LDAPSearchQuery.swift
[821/841] Compiling OfficeKit LDAPSearchRequest.swift
[822/841] Compiling OfficeKit Collection+Utils.swift
[823/841] Compiling OfficeKit Converters.swift
[824/841] Compiling OfficeKit DeportedHashability.swift
[825/841] Compiling OfficeKit Dictionary+Utils.swift
[826/841] Compiling OfficeKit DistinguishedName.swift
[827/841] Compiling OfficeKit MultiServicesUser.swift
[828/841] Compiling OfficeKit CharacterSet+Utils.swift
[829/841] Compiling OfficeKit Result+Utils.swift
[830/841] Compiling OfficeKit AuthRequestProcessor.swift
[831/841] Compiling OfficeKit AuthRequestRetryProvider.swift
[832/845] Compiling OfficeKit UserAndService+Utils.swift
[833/845] Compiling OfficeKit UserAndServiceID+Utils.swift
[834/845] Compiling OfficeKit UserIDBuilder.swift
[835/845] Compiling OfficeKit UserService+Utils.swift
[836/895] Compiling CommonOfficePropertiesFromHappn Properties.swift
[837/895] Compiling CommonOfficePropertiesFromHappn Converters.swift
[838/895] Emitting module CommonOfficePropertiesFromHappn
[839/895] Compiling CommonOfficePropertiesFromHappn Gender.swift
[840/1002] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[841/1002] Compiling NIOEmbedded AsyncTestingChannel.swift
[842/1002] Compiling NIOEmbedded Embedded.swift
[843/1002] Emitting module NIOEmbedded
[844/1022] Compiling VaultPKIOffice  Errors.swift
[845/1022] Compiling VaultPKIOffice ASN1AlgorithmIdentifier.swift
[846/1022] Compiling VaultPKIOffice CertificateMetadata.swift
[847/1022] Compiling VaultPKIOffice UserProperty+VaultPKI.swift
[848/1022] Compiling VaultPKIOffice VaultPKIAuthenticator.swift
[849/1027] Compiling CloudflareOffice CloudflareService.swift
[850/1027] Compiling CloudflareOffice CloudflareAuthenticator.swift
[851/1027] Emitting module CloudflareOffice
[852/1027] Compiling CloudflareOffice CloudflareServiceConfig.swift
[853/1027] Compiling VaultPKIOffice VaultPKIService.swift
[854/1027] Compiling VaultPKIOffice VaultCertificateContainer.swift
[855/1027] Compiling OfficeKitOffice Empty.swift
[856/1027] Compiling OfficeKitOffice OfficeKitAuthenticator.swift
[861/1028] Compiling NIOPosix FileDescriptor.swift
[862/1028] Compiling NIOPosix GetaddrinfoResolver.swift
[863/1028] Compiling NIOPosix HappyEyeballs.swift
[864/1028] Compiling NIOPosix IO.swift
[865/1028] Compiling NIOPosix IntegerBitPacking.swift
[866/1028] Compiling NIOPosix RawSocketBootstrap.swift
[867/1028] Compiling NIOPosix Resolver.swift
[868/1028] Compiling NIOPosix Selectable.swift
[869/1028] Compiling NIOPosix SelectableChannel.swift
[870/1028] Compiling NIOPosix SelectableEventLoop.swift
[871/1028] Compiling CloudflareZeroTrustOffice CloudflareZeroTrustServiceConfig.swift
[872/1028] Compiling CloudflareZeroTrustOffice CloudflareZeroTrustService.swift
[873/1028] Compiling CloudflareZeroTrustOffice CloudflareAuthenticator.swift
[874/1028] Compiling CloudflareZeroTrustOffice CollectionResponse+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/CloudflareZeroTrust/Utils/CollectionResponse+Utils.swift:24:10: warning: TODO (obviously)
22 | 		let decoder = SendableJSONDecoder{ d in
23 | 			d.dateDecodingStrategy = .custom({ d in
24 | #warning("TODO (obviously)")
   |          `- warning: TODO (obviously)
25 | 				let container = try d.singleValueContainer()
26 | //				try print(container.decode(String.self))
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/CloudflareZeroTrust/Utils/CollectionResponse+Utils.swift:25:9: warning: initialization of immutable value 'container' was never used; consider replacing with assignment to '_' or removing it
23 | 			d.dateDecodingStrategy = .custom({ d in
24 | #warning("TODO (obviously)")
25 | 				let container = try d.singleValueContainer()
   |         `- warning: initialization of immutable value 'container' was never used; consider replacing with assignment to '_' or removing it
26 | //				try print(container.decode(String.self))
27 | 				return Date()
[875/1029] Compiling CloudflareZeroTrustOffice CloudflareZeroTrustUser.swift
[876/1029] Emitting module HappnOffice
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/happn/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/happn/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[877/1031] Compiling VaultPKIOffice VaultError.swift
[878/1031] Compiling VaultPKIOffice VaultNewCertificate.swift
[879/1031] Compiling VaultPKIOffice VaultResponse.swift
[880/1031] Compiling VaultPKIOffice VaultRevocationResult.swift
[881/1033] Compiling VaultPKIOffice VaultCertificateSerialsList.swift
[882/1033] Compiling VaultPKIOffice CertificateMetadata+List.swift
[885/1033] Compiling VaultPKIOffice Ω-URLRequestOperation+HasResult.swift
[887/1035] Emitting module SynologyOffice
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Synology/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Synology/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[894/1037] Compiling NIOPosix SelectorEpoll.swift
[895/1037] Compiling NIOPosix SelectorGeneric.swift
[896/1037] Compiling NIOPosix SelectorKqueue.swift
[897/1037] Compiling NIOPosix SelectorUring.swift
[898/1037] Compiling NIOPosix ServerSocket.swift
[899/1037] Compiling LDAPOffice LDAPObject+Update.swift
[900/1037] Compiling VaultPKIOffice VaultPKIUser.swift
[901/1037] Compiling HappnOffice Ω-URLRequestOperation+HasResult.swift
[902/1037] Compiling VaultPKIOffice ASN1Time.swift
[903/1037] Compiling VaultPKIOffice VaultCertRenewData.swift
[904/1037] Emitting module OfficeKitOffice
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/OfficeKit/Utils/URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/OfficeKit/Utils/URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[905/1037] Compiling VaultPKIOffice  Config.swift
[907/1037] Compiling VaultPKIOffice ASN1CertificateList.swift
[908/1037] Compiling VaultPKIOffice ASN1TBSCertList.swift
[911/1037] Compiling CloudflareZeroTrustOffice CollectionResponse.swift
[914/1037] Emitting module CloudflareZeroTrustOffice
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/CloudflareZeroTrust/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/CloudflareZeroTrust/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[917/1037] Compiling CloudflareZeroTrustOffice CloudflareZeroTrustUser+OfficeModel.swift
[918/1037] Compiling OfficeKitOffice URLRequestOperation+HasResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/OfficeKit/Utils/URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/OfficeKit/Utils/URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[919/1037] Compiling OpenDirectoryOffice ODActor.swift
[920/1037] Compiling OpenDirectoryOffice OpenDirectoryServiceConfig.swift
[921/1037] Compiling OpenDirectoryOffice OpenDirectoryConnector.swift
[922/1037] Compiling OpenDirectoryOffice OpenDirectoryUser.swift
[923/1037] Compiling OpenDirectoryOffice OpenDirectoryUser+OfficeModel.swift
[924/1037] Compiling OpenDirectoryOffice OpenDirectoryAttributeValue.swift
[925/1037] Emitting module OpenDirectoryOffice
[928/1037] Compiling OpenDirectoryOffice OpenDirectoryService.swift
[929/1037] Compiling OpenDirectoryOffice OpenDirectoryQuery.swift
[930/1038] Emitting module NIOPosix
[931/1038] Compiling CloudflareZeroTrustOffice Ω-URLRequestOperation+HasResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/CloudflareZeroTrust/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/CloudflareZeroTrust/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[933/1038] Compiling LDAPOffice LDAPObject+Search.swift
[962/1038] Emitting module VaultPKIOffice
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/VaultPKI/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/VaultPKI/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/VaultPKI/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/VaultPKI/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/VaultPKI/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/VaultPKI/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[974/1038] Emitting module LDAPOffice
[977/1038] Compiling SynologyOffice SynologyUser+Update.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Synology/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Synology/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[978/1038] Compiling SynologyOffice Ω-URLRequestOperation+HasResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Synology/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Synology/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/happn/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/happn/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/happn/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/happn/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[981/1038] Compiling NIOPosix ThreadPosix.swift
[982/1038] Compiling NIOPosix ThreadWindows.swift
[983/1038] Compiling NIOPosix Utilities.swift
[984/1038] Compiling NIOPosix VsockAddress.swift
[985/1038] Compiling NIOPosix VsockChannelEvents.swift
[986/1038] Compiling OpenDirectoryOffice ODObjectWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/OpenDirectory/ThreadSafeingOD/ODObjectWrapper.swift:21:8: warning: global actor 'ODActor'-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
15 | internal final class ODObjectWrapper<ODObject> {
16 |
17 | 	var wrappedValue: ODObject?
   |      `- note: mutation of this property is only permitted within the actor
18 |
19 | 	/* init can only be done with a nil value: otherwise it’d have to be an isolated init. */
20 | 	nonisolated init() {
21 | 		self.wrappedValue = nil
   |        `- warning: global actor 'ODActor'-isolated property 'wrappedValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
22 | 	}
23 |
[987/1038] Compiling NIOPosix PipePair.swift
[988/1038] Compiling NIOPosix PointerHelpers.swift
[989/1038] Compiling NIOPosix Pool.swift
[990/1038] Compiling NIOPosix PooledRecvBufferAllocator.swift
[991/1038] Compiling NIOPosix PosixSingletons.swift
[996/1038] Compiling NIOPosix Thread.swift
[1033/1062] Emitting module NIO
[1034/1062] Compiling NIO Exports.swift
[1035/1062] Compiling AsyncKit EventLoopGroup+Throwing.swift
[1036/1062] Compiling AsyncKit Collection+Flatten.swift
[1037/1064] Compiling AsyncKit EventLoop+Flatten.swift
[1038/1064] Compiling AsyncKit EventLoop+Future.swift
[1039/1064] Compiling AsyncKit EventLoopGroup+Concurrency.swift
[1040/1064] Compiling AsyncKit Future+Optional.swift
[1041/1064] Compiling AsyncKit Future+Transform.swift
[1042/1064] Compiling AsyncKit EventLoopFutureQueue+Sequence.swift
[1043/1064] Compiling AsyncKit EventLoopFutureQueue.swift
[1044/1115] Compiling NIOSOCKS Helpers.swift
[1045/1115] Compiling NIOSOCKS Errors.swift
[1046/1116] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[1047/1116] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1048/1116] Compiling AsyncKit Optional+StrictMap.swift
[1049/1116] Compiling AsyncKit Exports.swift
[1050/1116] Compiling NIOHTTP1 HTTPEncoder.swift
[1051/1116] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[1052/1116] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[1053/1116] Compiling NIOSOCKS SOCKSResponse.swift
[1054/1116] Compiling NIOSOCKS ClientStateMachine.swift
[1055/1116] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[1056/1116] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[1057/1116] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[1058/1116] Compiling NIOHTTP1 HTTPTypes.swift
[1059/1116] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[1060/1116] Emitting module NIOSOCKS
[1061/1116] Compiling NIOHTTP1 ByteCollectionUtils.swift
[1062/1116] Compiling NIOHTTP1 HTTPDecoder.swift
[1063/1116] Compiling NIOSOCKS Messages.swift
[1064/1116] Compiling NIOSOCKS SOCKSRequest.swift
[1065/1116] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[1066/1116] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[1067/1117] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1068/1117] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1069/1117] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1070/1117] Compiling NIOTLS TLSEvents.swift
[1071/1117] Emitting module NIOTLS
[1072/1117] Compiling NIOTLS SNIHandler.swift
[1073/1117] Compiling NIOSOCKS ServerStateMachine.swift
[1074/1117] Compiling Prometheus PrometheusLabelSanitizer.swift
[1075/1117] Compiling Prometheus DimensionsSanitizer.swift
[1076/1117] Compiling Prometheus LabelSanitizer.swift
[1077/1117] Compiling Prometheus PrometheusMetrics.swift
[1078/1118] Compiling Prometheus PrometheusMetricsConfiguration.swift
[1079/1118] Compiling Prometheus Prometheus.swift
[1080/1118] Emitting module NIOFoundationCompat
[1081/1118] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1082/1118] Compiling Prometheus Summary.swift
[1085/1118] Emitting module Prometheus
[1088/1118] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[1089/1118] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[1090/1145] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[1091/1167] Compiling Prometheus Utils.swift
[1092/1167] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[1093/1167] Compiling NIOTransportServices NIOTSErrors.swift
[1094/1167] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[1095/1167] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[1096/1167] Compiling NIOTransportServices StateManagedChannel.swift
[1097/1167] Compiling NIOTransportServices NIOTSDatagramListener.swift
[1098/1167] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[1099/1167] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[1100/1167] Emitting module NIOHTTP1
[1101/1167] Compiling NIOTransportServices NIOTSBootstraps.swift
[1102/1167] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1103/1167] Compiling NIOTransportServices AcceptHandler.swift
[1104/1167] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1105/1167] Emitting module NIOTransportServices
[1106/1169] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1107/1169] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1108/1169] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1109/1169] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1110/1169] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1111/1169] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[1112/1169] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1113/1169] Compiling NIOTransportServices NIOTSEventLoop.swift
[1114/1169] Compiling NIOSSL SSLInit.swift
[1115/1169] Compiling NIOSSL SSLPKCS12Bundle.swift
[1116/1169] Compiling NIOSSL SSLPrivateKey.swift
[1120/1217] Emitting module AsyncKit
[1123/1236] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[1124/1236] Compiling MultipartKit FormDataEncoder.Encoder.swift
[1125/1236] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[1129/1236] Emitting module NIOSSL
[1130/1236] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[1133/1236] Compiling NIOWebSocket WebSocketOpcode.swift
[1134/1237] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1135/1237] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[1136/1237] Compiling NIOExtras RequestResponseWithIDHandler.swift
[1137/1238] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[1138/1238] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[1139/1238] Compiling MultipartKit FormDataDecoder.swift
[1140/1238] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1141/1238] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1142/1238] Compiling NIOHTTPCompression HTTPDecompression.swift
[1143/1238] Emitting module NIOHTTPCompression
[1144/1238] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1145/1238] Compiling NIOHTTPCompression HTTPCompression.swift
[1146/1238] Compiling NIOHPACK IntegerCoding.swift
[1147/1238] Compiling NIOHPACK IndexedHeaderTable.swift
[1148/1239] Compiling MultipartKit Exports.swift
[1149/1239] Compiling MultipartKit FormDataDecoder.Decoder.swift
[1150/1239] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[1151/1239] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[1152/1239] Compiling MultipartKit MultipartFormData.swift
[1153/1239] Compiling MultipartKit MultipartParser.swift
[1154/1239] Compiling MultipartKit MultipartPart.swift
[1155/1239] Compiling MultipartKit MultipartPartConvertible.swift
[1160/1241] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[1161/1241] Compiling NIOWebSocket WebSocketErrorCodes.swift
[1162/1241] Compiling NIOWebSocket SHA1.swift
[1163/1241] Compiling NIOWebSocket NIOWebSocketServerUpgrader.swift
[1164/1241] Compiling NIOWebSocket NIOWebSocketFrameAggregator.swift
[1165/1241] Compiling NIOWebSocket NIOWebSocketClientUpgrader.swift
[1166/1241] Emitting module NIOWebSocket
[1167/1241] Compiling NIOWebSocket WebSocketFrame.swift
[1168/1241] Compiling NIOHPACK StaticHeaderTable.swift
[1171/1241] Compiling NIOHPACK HuffmanTables.swift
[1172/1241] Compiling NIOHPACK HuffmanCoding.swift
[1173/1241] Compiling NIOHPACK HeaderTables.swift
[1178/1241] Emitting module NIOExtras
[1184/1241] Compiling MultipartKit MultipartError.swift
[1185/1241] Compiling MultipartKit FormDataEncoder.swift
[1186/1241] Compiling MultipartKit Storage.swift
[1188/1241] Compiling MultipartKit BasicCodingKey.swift
[1198/1241] Compiling NIOHPACK HPACKEncoder.swift
[1199/1241] Compiling NIOHPACK HPACKErrors.swift
[1200/1241] Emitting module NIOHPACK
[1201/1241] Compiling NIOHPACK HPACKHeader.swift
[1202/1241] Compiling NIOSSL TLSConfiguration.swift
[1203/1241] Compiling NIOSSL UniversalBootstrapSupport.swift
[1204/1241] Emitting module MultipartKit
[1217/1241] Compiling MultipartKit MultipartSerializer.swift
[1218/1241] Compiling MultipartKit Utilities.swift
[1228/1242] Compiling NIOExtras WritePCAPHandler.swift
[1229/1306] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1230/1306] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1231/1306] Compiling NIOHTTP2 MaySendFrames.swift
[1232/1306] Compiling NIOHTTP2 SendingDataState.swift
[1233/1306] Compiling NIOHTTP2 SendingGoawayState.swift
[1234/1306] Compiling NIOHTTP2 SendingHeadersState.swift
[1235/1306] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1236/1312] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1237/1312] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1238/1312] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1239/1312] Compiling NIOHTTP2 MayReceiveFrames.swift
[1240/1312] Compiling NIOHTTP2 ReceivingDataState.swift
[1241/1312] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1242/1312] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1243/1312] Compiling NIOHTTP2 SendingRstStreamState.swift
[1244/1312] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1245/1312] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1246/1312] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1247/1312] Compiling NIOHTTP2 HasLocalSettings.swift
[1248/1312] Compiling NIOHTTP2 HasRemoteSettings.swift
[1249/1312] Compiling WebSocketKit WebSocketHandler.swift
[1250/1312] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1251/1312] Compiling NIOHTTP2 QuiescingState.swift
[1252/1312] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1253/1312] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1254/1312] Compiling NIOHTTP2 StateMachineResult.swift
[1255/1312] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1256/1312] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1257/1312] Compiling WebSocketKit WebSocket+Connect.swift
[1258/1312] Compiling WebSocketKit WebSocket+Concurrency.swift
[1259/1312] Compiling WebSocketKit WebSocket.swift
[1260/1312] Compiling WebSocketKit Exports.swift
[1261/1312] Emitting module WebSocketKit
[1262/1312] Compiling WebSocketKit WebSocketClient.swift
[1263/1312] Emitting module NIOHTTP2
[1264/1312] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1265/1312] Compiling NIOHTTP2 HTTP2Settings.swift
[1266/1312] Compiling NIOHTTP2 HTTP2Stream.swift
[1267/1312] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1268/1312] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1269/1312] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1270/1312] Compiling NIOHTTP2 HTTP2StreamID.swift
[1271/1312] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1272/1312] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1273/1312] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1274/1312] Compiling NIOHTTP2 InboundEventBuffer.swift
[1275/1312] Compiling NIOHTTP2 InboundWindowManager.swift
[1276/1312] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1277/1312] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1278/1312] Compiling NIOHTTP2 StreamChannelList.swift
[1279/1312] Compiling NIOHTTP2 StreamMap.swift
[1280/1312] Compiling NIOHTTP2 StreamStateMachine.swift
[1281/1312] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1289/1312] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1290/1312] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1291/1312] Compiling NIOHTTP2 HTTP2Frame.swift
[1292/1312] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1293/1312] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1294/1312] Compiling NIOHTTP2 HTTP2PingData.swift
[1295/1312] Compiling NIOHTTP2 DOSHeuristics.swift
[1296/1312] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1297/1312] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1298/1312] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1299/1312] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1300/1312] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[1301/1312] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[1302/1312] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[1303/1312] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[1304/1312] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1305/1312] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1306/1312] Compiling NIOHTTP2 HTTP2Error.swift
[1307/1368] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[1308/1368] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[1309/1368] Compiling AsyncHTTPClient AsyncLazySequence.swift
[1310/1368] Compiling AsyncHTTPClient HTTPClient+execute.swift
[1311/1368] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[1312/1368] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[1313/1368] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1314/1374] Compiling AsyncHTTPClient ConnectionPool.swift
[1315/1374] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1316/1374] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1317/1374] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1318/1374] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1319/1374] Compiling AsyncHTTPClient HTTP1Connection.swift
[1320/1374] Emitting module AsyncHTTPClient
[1321/1374] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1322/1374] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1323/1374] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1324/1374] Compiling AsyncHTTPClient Transaction.swift
[1325/1374] Compiling AsyncHTTPClient Base64.swift
[1326/1374] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1327/1374] Compiling AsyncHTTPClient NWErrorHandler.swift
[1328/1374] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1329/1374] Compiling AsyncHTTPClient TLSConfiguration.swift
[1330/1374] Compiling AsyncHTTPClient RedirectState.swift
[1331/1374] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1332/1374] Compiling AsyncHTTPClient RequestBag.swift
[1333/1374] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1334/1374] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1335/1374] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1336/1374] Compiling AsyncHTTPClient ConnectionTarget.swift
[1337/1374] Compiling AsyncHTTPClient DeconstructedURL.swift
[1338/1374] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1339/1374] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1340/1374] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1341/1374] Compiling AsyncHTTPClient HTTP2Connection.swift
[1342/1374] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1343/1374] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1344/1374] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1345/1374] Compiling AsyncHTTPClient RequestValidation.swift
[1346/1374] Compiling AsyncHTTPClient SSLContextCache.swift
[1347/1374] Compiling AsyncHTTPClient Scheme.swift
[1348/1374] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1349/1374] Compiling AsyncHTTPClient UnsafeTransfer.swift
[1350/1374] Compiling AsyncHTTPClient Utils.swift
[1351/1374] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1352/1374] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1353/1374] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1354/1374] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1355/1374] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1356/1374] Compiling AsyncHTTPClient RequestBodyLength.swift
[1357/1374] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1358/1374] Compiling AsyncHTTPClient RequestOptions.swift
[1359/1374] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1360/1374] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1361/1374] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1362/1374] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1363/1374] Compiling AsyncHTTPClient FoundationExtensions.swift
[1364/1374] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1365/1374] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1366/1374] Compiling AsyncHTTPClient HTTPClient.swift
[1367/1374] Compiling AsyncHTTPClient HTTPHandler.swift
[1368/1374] Compiling AsyncHTTPClient LRUCache.swift
[1369/1564] Compiling Vapor DotEnv.swift
[1370/1564] Compiling Vapor Extendable.swift
[1371/1564] Compiling Vapor File.swift
[1372/1564] Compiling Vapor FileIO.swift
[1373/1564] Compiling Vapor LifecycleHandler.swift
[1374/1564] Compiling Vapor OptionalType.swift
[1375/1564] Compiling Vapor RFC1123.swift
[1376/1564] Compiling Vapor SocketAddress+Hostname.swift
[1377/1564] Compiling Vapor Storage.swift
[1378/1564] Compiling Vapor String+IsIPAddress.swift
[1379/1564] Compiling Vapor Thread.swift
[1380/1564] Compiling Vapor URI.swift
[1381/1564] Compiling Vapor RangeResult.swift
[1382/1564] Compiling Vapor Validatable.swift
[1383/1564] Compiling Vapor Validation.swift
[1384/1564] Compiling Vapor ValidationKey.swift
[1385/1564] Compiling Vapor Validations.swift
[1386/1564] Compiling Vapor ValidationsError.swift
[1387/1564] Compiling Vapor Validator.swift
[1388/1564] Compiling Vapor ValidatorResult.swift
[1389/1564] Compiling Vapor And.swift
[1390/1584] Compiling Vapor ErrorSource.swift
[1391/1584] Compiling Vapor StackTrace.swift
[1392/1584] Compiling Vapor Exports.swift
[1393/1584] Compiling Vapor Application+HTTP.swift
[1394/1584] Compiling Vapor BasicResponder.swift
[1395/1584] Compiling Vapor BodyStream.swift
[1396/1584] Compiling Vapor Application+HTTP+Client.swift
[1397/1584] Compiling Vapor EventLoopHTTPClient.swift
[1398/1584] Compiling Vapor EndpointCache.swift
[1399/1584] Compiling Vapor HTTPMethod+String.swift
[1400/1584] Compiling Vapor HTTPStatus.swift
[1401/1584] Compiling Vapor HTTPCookies.swift
[1402/1584] Compiling Vapor HTTPHeaderCacheControl.swift
[1403/1584] Compiling Vapor HTTPHeaderExpires.swift
[1404/1584] Compiling Vapor HTTPHeaderLastModified.swift
[1405/1584] Compiling Vapor HTTPHeaders+Cache.swift
[1406/1584] Compiling Vapor HTTPHeaders+Connection.swift
[1407/1584] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[1408/1584] Compiling Vapor HTTPHeaders+ContentRange.swift
[1409/1584] Compiling Vapor HTTPHeaders+Directive.swift
[1410/1584] Compiling Vapor HTTPHeaders+Forwarded.swift
[1411/1584] Compiling Vapor Application.swift
[1412/1584] Compiling Vapor AuthenticationCache.swift
[1413/1584] Compiling Vapor Authenticator.swift
[1414/1584] Compiling Vapor BasicAuthorization.swift
[1415/1584] Compiling Vapor BearerAuthorization.swift
[1416/1584] Compiling Vapor GuardMiddleware.swift
[1417/1584] Compiling Vapor RedirectMiddleware.swift
[1418/1584] Compiling Vapor SessionAuthenticatable.swift
[1419/1584] Compiling Vapor Bcrypt.swift
[1420/1584] Compiling Vapor Application+Cache.swift
[1421/1584] Compiling Vapor Cache.swift
[1422/1584] Compiling Vapor CacheExpirationTime.swift
[1423/1584] Compiling Vapor MemoryCache.swift
[1424/1584] Compiling Vapor Request+Cache.swift
[1425/1584] Compiling Vapor Application+Clients.swift
[1426/1584] Compiling Vapor Client.swift
[1427/1584] Compiling Vapor ClientRequest.swift
[1428/1584] Compiling Vapor ClientResponse.swift
[1429/1584] Compiling Vapor Request+Client.swift
[1430/1584] Compiling Vapor BootCommand.swift
[1431/1584] Compiling Vapor CommandContext+Application.swift
[1432/1584] Compiling Vapor DateFormatter+threadSpecific.swift
[1433/1584] Compiling Vapor URLEncodedFormData.swift
[1434/1584] Compiling Vapor URLEncodedFormDecoder.swift
[1435/1584] Compiling Vapor URLEncodedFormEncoder.swift
[1436/1584] Compiling Vapor URLEncodedFormError.swift
[1437/1584] Compiling Vapor URLEncodedFormParser.swift
[1438/1584] Compiling Vapor URLEncodedFormSerializer.swift
[1439/1584] Compiling Vapor URLQueryFragmentConvertible.swift
[1440/1584] Compiling Vapor AnyResponse.swift
[1441/1584] Compiling Vapor Array+Random.swift
[1442/1584] Compiling Vapor Base32.swift
[1443/1584] Compiling Vapor Base64.swift
[1444/1584] Compiling Vapor BaseN.swift
[1445/1584] Compiling Vapor BasicCodingKey.swift
[1446/1584] Compiling Vapor ByteCount.swift
[1447/1584] Compiling Vapor Bytes+Hex.swift
[1448/1584] Compiling Vapor Bytes+SecureCompare.swift
[1449/1584] Compiling Vapor Collection+Safe.swift
[1450/1584] Compiling Vapor DataProtocol+Copy.swift
[1451/1584] Compiling Vapor DecoderUnwrapper.swift
[1452/1584] Compiling Vapor DirectoryConfiguration.swift
[1453/1584] Compiling Vapor RoutesCommand.swift
[1454/1584] Compiling Vapor ServeCommand.swift
[1455/1584] Compiling Vapor AnyResponse+Concurrency.swift
[1456/1584] Compiling Vapor AsyncBasicResponder.swift
[1457/1584] Compiling Vapor AsyncMiddleware.swift
[1458/1584] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[1459/1584] Compiling Vapor AsyncSessionDriver.swift
[1460/1584] Compiling Vapor Authentication+Concurrency.swift
[1461/1584] Compiling Vapor Cache+Concurrency.swift
[1462/1584] Compiling Vapor Client+Concurrency.swift
[1463/1584] Compiling Vapor FileIO+Concurrency.swift
[1464/1584] Compiling Vapor RequestBody+Concurrency.swift
[1465/1584] Compiling Vapor Responder+Concurrency.swift
[1466/1584] Compiling Vapor ResponseCodable+Concurrency.swift
[1467/1584] Compiling Vapor RoutesBuilder+Concurrency.swift
[1468/1584] Compiling Vapor ViewRenderer+Concurrency.swift
[1469/1584] Compiling Vapor WebSocket+Concurrency.swift
[1470/1584] Compiling Vapor ContainerGetPathExecutor.swift
[1471/1584] Compiling Vapor Content.swift
[1472/1584] Compiling Vapor ContentCoders.swift
[1473/1584] Compiling Vapor ContentConfiguration.swift
[1474/1584] Compiling Vapor Case.swift
[1475/1584] Compiling Vapor CharacterSet.swift
[1476/1584] Compiling Vapor Count.swift
[1477/1584] Compiling Vapor Email.swift
[1478/1584] Compiling Vapor Empty.swift
[1479/1584] Compiling Vapor In.swift
[1480/1584] Compiling Vapor Nil.swift
[1481/1584] Compiling Vapor NilIgnoring.swift
[1482/1584] Compiling Vapor Not.swift
[1483/1584] Compiling Vapor Or.swift
[1484/1584] Compiling Vapor Pattern.swift
[1485/1584] Compiling Vapor Range.swift
[1486/1584] Compiling Vapor URL.swift
[1487/1584] Compiling Vapor Valid.swift
[1488/1584] Compiling Vapor Application+Views.swift
[1489/1584] Compiling Vapor PlaintextRenderer.swift
[1490/1584] Compiling Vapor Request+View.swift
[1491/1584] Compiling Vapor View.swift
[1492/1584] Compiling Vapor ViewRenderer.swift
[1493/1584] Compiling Vapor _Deprecations.swift
[1494/1584] Emitting module Vapor
[1495/1584] Compiling Vapor Request+WebSocket.swift
[1496/1584] Compiling Vapor Route.swift
[1497/1584] Compiling Vapor RouteCollection.swift
[1498/1584] Compiling Vapor Routes.swift
[1499/1584] Compiling Vapor RoutesBuilder+Group.swift
[1500/1584] Compiling Vapor RoutesBuilder+Method.swift
[1501/1584] Compiling Vapor RoutesBuilder+Middleware.swift
[1502/1584] Compiling Vapor RoutesBuilder+WebSocket.swift
[1503/1584] Compiling Vapor RoutesBuilder.swift
[1504/1584] Compiling Vapor OTP.swift
[1505/1584] Compiling Vapor Application+Servers.swift
[1506/1584] Compiling Vapor Server.swift
[1507/1584] Compiling Vapor Application+Sessions.swift
[1508/1584] Compiling Vapor MemorySessions.swift
[1509/1584] Compiling Vapor Request+Session.swift
[1510/1584] Compiling Vapor Session.swift
[1511/1584] Compiling Vapor SessionCache.swift
[1512/1584] Compiling Vapor SessionData.swift
[1513/1584] Compiling Vapor SessionDriver.swift
[1514/1584] Compiling Vapor SessionsConfiguration.swift
[1515/1584] Compiling Vapor SessionsMiddleware.swift
[1516/1584] Compiling Vapor ContentContainer.swift
[1517/1584] Compiling Vapor JSONCoder+Custom.swift
[1518/1584] Compiling Vapor JSONCoders+Content.swift
[1519/1584] Compiling Vapor PlaintextDecoder.swift
[1520/1584] Compiling Vapor PlaintextEncoder.swift
[1521/1584] Compiling Vapor URLQueryCoders.swift
[1522/1584] Compiling Vapor URLQueryContainer.swift
[1523/1584] Compiling Vapor Core.swift
[1524/1584] Compiling Vapor Running.swift
[1525/1584] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[1526/1584] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[1527/1584] Compiling Vapor DotEnvFile+load.swift
[1528/1584] Compiling Vapor Routes+caseInsenstive.swift
[1529/1584] Compiling Vapor Validatable+validate.swift
[1530/1584] Compiling Vapor Environment+Process.swift
[1531/1584] Compiling Vapor Environment+Secret.swift
[1532/1584] Compiling Vapor Environment.swift
[1533/1584] Compiling Vapor Abort.swift
[1534/1584] Compiling Vapor AbortError.swift
[1535/1584] Compiling Vapor DebuggableError.swift
[1536/1584] Compiling Vapor Demangler.swift
[1537/1584] Compiling Vapor HTTPHeaders+Link.swift
[1538/1584] Compiling Vapor HTTPHeaders+Name.swift
[1539/1584] Compiling Vapor HTTPHeaders.swift
[1540/1584] Compiling Vapor HTTPMediaType.swift
[1541/1584] Compiling Vapor HTTPMediaTypePreference.swift
[1542/1584] Compiling Vapor Responder.swift
[1543/1584] Compiling Vapor Application+HTTP+Server.swift
[1544/1584] Compiling Vapor HTTPServer.swift
[1545/1584] Compiling Vapor HTTPServerHandler.swift
[1546/1584] Compiling Vapor HTTPServerRequestDecoder.swift
[1547/1584] Compiling Vapor HTTPServerResponseEncoder.swift
[1548/1584] Compiling Vapor HTTPServerUpgradeHandler.swift
[1549/1584] Compiling Vapor Logger+Report.swift
[1550/1584] Compiling Vapor LoggingSystem+Environment.swift
[1551/1584] Compiling Vapor Application+Middleware.swift
[1552/1584] Compiling Vapor CORSMiddleware.swift
[1553/1584] Compiling Vapor ErrorMiddleware.swift
[1554/1584] Compiling Vapor FileMiddleware.swift
[1555/1584] Compiling Vapor Middleware.swift
[1556/1584] Compiling Vapor MiddlewareConfiguration.swift
[1557/1584] Compiling Vapor RouteLoggingMiddleware.swift
[1558/1584] Compiling Vapor File+Multipart.swift
[1559/1584] Compiling Vapor FormDataDecoder+Content.swift
[1560/1584] Compiling Vapor FormDataEncoder+Content.swift
[1561/1584] Compiling Vapor Application+Password.swift
[1562/1584] Compiling Vapor Application+Passwords.swift
[1563/1584] Compiling Vapor AsyncPasswordHasher.swift
[1564/1584] Compiling Vapor BcryptHasher.swift
[1565/1584] Compiling Vapor PasswordHasher.swift
[1566/1584] Compiling Vapor PlaintextHasher.swift
[1567/1584] Compiling Vapor Request+Password.swift
[1568/1584] Compiling Vapor Redirect.swift
[1569/1584] Compiling Vapor Request+Body.swift
[1570/1584] Compiling Vapor Request+BodyStream.swift
[1571/1584] Compiling Vapor Request.swift
[1572/1584] Compiling Vapor Application+Responder.swift
[1573/1584] Compiling Vapor DefaultResponder.swift
[1574/1584] Compiling Vapor Response+Body.swift
[1575/1584] Compiling Vapor Response.swift
[1576/1584] Compiling Vapor ResponseCodable.swift
[1577/1584] Compiling Vapor Application+Routes.swift
[1578/1584] Compiling Vapor Parameters+Require.swift
[1579/1616] Compiling JWT JWTAuthenticator.swift
[1580/1616] Compiling JWT JWTError+Vapor.swift
[1581/1617] Compiling Queues RepeatedTask+Cancel.swift
[1582/1617] Compiling Queues Request+Queues.swift
[1583/1619] Compiling Queues QueuesDriver.swift
[1584/1619] Compiling Queues QueuesEventLoopPreference.swift
[1585/1619] Compiling JWT JWT+Microsoft.swift
[1586/1619] Compiling JWT JWT+Apple.swift
[1587/1619] Compiling JWT JWT+Google.swift
[1588/1619] Compiling JWT JWKSCache.swift
[1589/1619] Compiling JWT Exports.swift
[1590/1619] Emitting module JWT
[1591/1619] Compiling JWT JWT+Concurrency.swift
[1592/1619] Compiling Queues Application+Queues.swift
[1593/1619] Compiling Queues AsyncJob.swift
[1594/1619] Compiling Queues AsyncScheduledJob.swift
[1595/1619] Compiling Queues Exports.swift
[1596/1619] Compiling Queues Job.swift
[1597/1619] Compiling Queues JobData.swift
[1598/1619] Compiling Queues JobIdentifier.swift
[1599/1619] Emitting module Queues
[1602/1619] Compiling Queues AsyncJobEventDelegate.swift
[1603/1619] Compiling JWT Request+JWT.swift
[1604/1619] Compiling Queues QueuesCommand.swift
[1605/1619] Compiling Queues QueuesConfiguration.swift
[1606/1619] Compiling Queues Queue.swift
[1607/1619] Compiling Queues QueueContext.swift
[1608/1619] Compiling Queues QueueName.swift
[1609/1619] Compiling Queues QueueWorker.swift
[1610/1619] Compiling Queues NotificationHook.swift
[1611/1619] Compiling Queues Queue+Async.swift
[1612/1619] Compiling Queues ScheduleBuilder.swift
[1613/1619] Compiling Queues ScheduledJob.swift
[1614/1705] Compiling OfficeServer  Config.swift
[1615/1705] Compiling OfficeServer Config+Bootstrap.swift
[1616/1706] Compiling OfficeServer ServicesController.swift
[1617/1706] Compiling OfficeServer UsersController.swift
[1618/1708] Compiling officectl_odproxy configure.swift
[1619/1709] Compiling OfficeServer Config+Queues.swift
[1620/1709] Compiling OfficeServer Config+Server.swift
[1621/1709] Emitting module GitHubOffice
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/GitHub/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/GitHub/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[1626/1710] Compiling OfficeServer ApiDirectoryUser+FromOfficeKit.swift
[1627/1710] Compiling OfficeServer ApiMergedUserWithSource+FromOfficeKit.swift
[1628/1710] Compiling OfficeServer WeakeningMode.swift
[1629/1710] Compiling OfficeServer LMK.swift
[1632/1710] Compiling OfficeServer Result+Utils.swift
[1633/1710] Compiling OfficeServer ApiContentConformance.swift
[1636/1710] Compiling Office365Office Office365User+Update.swift
[1637/1710] Compiling officectl_odproxy ServiceController.swift
[1638/1710] Compiling officectl_odproxy configure+routes.swift
[1639/1710] Emitting module Office365Office
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Office365/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Office365/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[1642/1710] Compiling OfficeServer UpdateCAMetricsJob.swift
[1643/1710] Compiling OfficeServer UpdateUsersListJob.swift
[1644/1710] Compiling OfficeServer Action.swift
[1645/1710] Compiling OfficeServer ActionError.swift
[1654/1710] Compiling OfficeServer ActionExecutor+async.swift
[1655/1710] Compiling OfficeServer ActionExecutor.swift
[1658/1710] Emitting module GoogleOffice
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Google/GoogleConnector.swift:53:31: warning: actor-isolated property 'privateKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 28 |
 29 | 	public let userBehalf: String?
 30 | 	public let privateKey: RSAKey
    |             `- note: property declared here
 31 | 	public let superuserEmail: String
 32 |
    :
 51 | 	public init(from connector: GoogleConnector, userBehalf: String?) {
 52 | 		self.userBehalf = userBehalf
 53 | 		self.privateKey = connector.privateKey
    |                               `- warning: actor-isolated property 'privateKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 54 | 		self.superuserEmail = connector.superuserEmail
 55 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Google/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Google/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[1659/1710] Compiling GoogleOffice Ω-URLRequestOperation+HasResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Google/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Google/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[1660/1710] Compiling officectl_odproxy app.swift
[1661/1710] Compiling officectl_odproxy OfficeKitUser+ODUser.swift
[1662/1710] Compiling officectl_odproxy MessageError.swift
[1663/1710] Compiling officectl_odproxy InvalidUserError.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:16:1: warning: extension declares a conformance of imported type 'Empty' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
14 |
15 |
16 | extension Empty : Content {}
   | |- warning: extension declares a conformance of imported type 'Empty' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension OfficeKitUser : Content {}
18 | extension WrappedOptional : Content {}
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:17:1: warning: extension declares a conformance of imported type 'OfficeKitUser' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
15 |
16 | extension Empty : Content {}
17 | extension OfficeKitUser : Content {}
   | |- warning: extension declares a conformance of imported type 'OfficeKitUser' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 | extension WrappedOptional : Content {}
19 |
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:18:1: warning: extension declares a conformance of imported type 'WrappedOptional' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
16 | extension Empty : Content {}
17 | extension OfficeKitUser : Content {}
18 | extension WrappedOptional : Content {}
   | |- warning: extension declares a conformance of imported type 'WrappedOptional' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
19 |
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:16:1: warning: extension declares a conformance of imported type 'Empty' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
14 |
15 |
16 | extension Empty : Content {}
   | |- warning: extension declares a conformance of imported type 'Empty' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension OfficeKitUser : Content {}
18 | extension WrappedOptional : Content {}
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:17:1: warning: extension declares a conformance of imported type 'OfficeKitUser' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
15 |
16 | extension Empty : Content {}
17 | extension OfficeKitUser : Content {}
   | |- warning: extension declares a conformance of imported type 'OfficeKitUser' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 | extension WrappedOptional : Content {}
19 |
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:18:1: warning: extension declares a conformance of imported type 'WrappedOptional' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
16 | extension Empty : Content {}
17 | extension OfficeKitUser : Content {}
18 | extension WrappedOptional : Content {}
   | |- warning: extension declares a conformance of imported type 'WrappedOptional' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
19 |
[1666/1710] Emitting module officectl_odproxy
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:16:1: warning: extension declares a conformance of imported type 'Empty' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
14 |
15 |
16 | extension Empty : Content {}
   | |- warning: extension declares a conformance of imported type 'Empty' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension OfficeKitUser : Content {}
18 | extension WrappedOptional : Content {}
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:17:1: warning: extension declares a conformance of imported type 'OfficeKitUser' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
15 |
16 | extension Empty : Content {}
17 | extension OfficeKitUser : Content {}
   | |- warning: extension declares a conformance of imported type 'OfficeKitUser' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 | extension WrappedOptional : Content {}
19 |
/Users/admin/builder/spi-builder-workspace/Sources/officectl-odproxy/Misc/ContentConformances.swift:18:1: warning: extension declares a conformance of imported type 'WrappedOptional' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
16 | extension Empty : Content {}
17 | extension OfficeKitUser : Content {}
18 | extension WrappedOptional : Content {}
   | |- warning: extension declares a conformance of imported type 'WrappedOptional' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeKitOffice' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
19 |
[1667/1710] Compiling officectl_odproxy VerifySignatureMiddleware.swift
[1672/1710] Compiling Office365Office Ω-URLRequestOperation+HasResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Office365/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Office365/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Google/GoogleConnector.swift:53:31: warning: actor-isolated property 'privateKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 28 |
 29 | 	public let userBehalf: String?
 30 | 	public let privateKey: RSAKey
    |             `- note: property declared here
 31 | 	public let superuserEmail: String
 32 |
    :
 51 | 	public init(from connector: GoogleConnector, userBehalf: String?) {
 52 | 		self.userBehalf = userBehalf
 53 | 		self.privateKey = connector.privateKey
    |                               `- warning: actor-isolated property 'privateKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 54 | 		self.superuserEmail = connector.superuserEmail
 55 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/Google/GoogleConnector.swift:53:31: warning: actor-isolated property 'privateKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 28 |
 29 | 	public let userBehalf: String?
 30 | 	public let privateKey: RSAKey
    |             `- note: property declared here
 31 | 	public let superuserEmail: String
 32 |
    :
 51 | 	public init(from connector: GoogleConnector, userBehalf: String?) {
 52 | 		self.userBehalf = userBehalf
 53 | 		self.privateKey = connector.privateKey
    |                               `- warning: actor-isolated property 'privateKey' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 54 | 		self.superuserEmail = connector.superuserEmail
 55 | 	}
[1679/1712] Compiling OfficeServer TemporaryLocalCache.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/GitHub/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/GitHub/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[1680/1712] Compiling OfficeServer Services.swift
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/GitHub/Utils/Ω-URLRequestOperation+HasResult.swift:16:1: warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
14 |
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDataOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeKitServices/GitHub/Utils/Ω-URLRequestOperation+HasResult.swift:17:1: warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
15 |
16 | extension URLRequestDataOperation : HasResult, SendableOperation {}
17 | extension URLRequestDownloadOperation : HasResult, SendableOperation {}
   | |- warning: extension declares a conformance of imported type 'URLRequestDownloadOperation' to imported protocols 'HasResult', 'SendableOperation'; this will not behave correctly if the owners of 'URLRequestOperation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeServer/Models/ApiContentConformance.swift:16:1: warning: extension declares a conformance of imported type 'ApiService' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
14 |
15 |
16 | extension ApiService : Content {}
   | |- warning: extension declares a conformance of imported type 'ApiService' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension ApiMultiServicesResults : Content {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeServer/Models/ApiContentConformance.swift:17:1: warning: extension declares a conformance of imported type 'ApiMultiServicesResults' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
15 |
16 | extension ApiService : Content {}
17 | extension ApiMultiServicesResults : Content {}
   | |- warning: extension declares a conformance of imported type 'ApiMultiServicesResults' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeServer/Models/ApiContentConformance.swift:16:1: warning: extension declares a conformance of imported type 'ApiService' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
14 |
15 |
16 | extension ApiService : Content {}
   | |- warning: extension declares a conformance of imported type 'ApiService' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension ApiMultiServicesResults : Content {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeServer/Models/ApiContentConformance.swift:17:1: warning: extension declares a conformance of imported type 'ApiMultiServicesResults' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
15 |
16 | extension ApiService : Content {}
17 | extension ApiMultiServicesResults : Content {}
   | |- warning: extension declares a conformance of imported type 'ApiMultiServicesResults' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[1697/1712] Emitting module OfficeServer
/Users/admin/builder/spi-builder-workspace/Sources/OfficeServer/Models/ApiContentConformance.swift:16:1: warning: extension declares a conformance of imported type 'ApiService' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
14 |
15 |
16 | extension ApiService : Content {}
   | |- warning: extension declares a conformance of imported type 'ApiService' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 | extension ApiMultiServicesResults : Content {}
18 |
/Users/admin/builder/spi-builder-workspace/Sources/OfficeServer/Models/ApiContentConformance.swift:17:1: warning: extension declares a conformance of imported type 'ApiMultiServicesResults' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
15 |
16 | extension ApiService : Content {}
17 | extension ApiMultiServicesResults : Content {}
   | |- warning: extension declares a conformance of imported type 'ApiMultiServicesResults' to imported protocols 'Content', 'AsyncResponseEncodable', 'AsyncRequestDecodable', 'ResponseEncodable', 'RequestDecodable'; this will not behave correctly if the owners of 'OfficeModel' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
18 |
[1698/1712] Compiling officectl_odproxy main.swift
[1698/1712] Write Objects.LinkFileList
[1708/1740] Compiling officectl Conf.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/Email+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Email' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Email' introduce this conformance in the future
13 |
14 |
15 | extension Email : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Email' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Email' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |
17 | 	public init?(argument: String) {
[1709/1740] Compiling officectl Environment.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/Email+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Email' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Email' introduce this conformance in the future
13 |
14 |
15 | extension Email : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Email' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Email' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |
17 | 	public init?(argument: String) {
[1710/1740] Compiling officectl Email+ExpressibleByArgument.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/Email+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Email' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Email' introduce this conformance in the future
13 |
14 |
15 | extension Email : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Email' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Email' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |
17 | 	public init?(argument: String) {
[1711/1742] Emitting module officectl
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/Email+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Email' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Email' introduce this conformance in the future
13 |
14 |
15 | extension Email : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Email' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Email' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |
17 | 	public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/FilePath+ExpressibleByArgument.swift:19:1: warning: extension declares a conformance of imported type 'FilePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'System' introduce this conformance in the future
17 |
18 |
19 | extension FilePath : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FilePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'System' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 |
21 | 	public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/Logger.Level+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
13 |
14 |
15 | extension Logger.Level : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |
17 | 	public init?(argument: String) {
[1712/1742] Compiling officectl dev.swift
[1713/1742] Compiling officectl dev--cur-test.swift
[1714/1742] Compiling officectl experimental.swift
[1715/1742] Compiling officectl services--list.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:57:4: error: ambiguous use of 'init'
 55 |
 56 | 		let usersAndServicesResults = services.map{ s in
 57 | 			Result{
    |    |- error: ambiguous use of 'init'
    |    |- note: avoid using a trailing closure to call 'init(_:)'
    |    `- note: use an explicit argument label instead of a trailing closure to call 'init(catching:)'
 58 | 				let u = try s.value.logicalUser(fromUser: HintsUser(properties: [
 59 | 					.emails: [email],
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:78:61: error: cannot infer key path type from context; consider explicitly specifying a root type
 76 | 		}
 77 |
 78 | 		let usersAndServices = usersAndServicesResults.compactMap(\.success)
    |                                                             `- error: cannot infer key path type from context; consider explicitly specifying a root type
 79 | 		guard !usersAndServices.isEmpty else {
 80 | 			print("********* CREATION RESULTS *********")
[1716/1742] Compiling officectl users.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:57:4: error: ambiguous use of 'init'
 55 |
 56 | 		let usersAndServicesResults = services.map{ s in
 57 | 			Result{
    |    |- error: ambiguous use of 'init'
    |    |- note: avoid using a trailing closure to call 'init(_:)'
    |    `- note: use an explicit argument label instead of a trailing closure to call 'init(catching:)'
 58 | 				let u = try s.value.logicalUser(fromUser: HintsUser(properties: [
 59 | 					.emails: [email],
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:78:61: error: cannot infer key path type from context; consider explicitly specifying a root type
 76 | 		}
 77 |
 78 | 		let usersAndServices = usersAndServicesResults.compactMap(\.success)
    |                                                             `- error: cannot infer key path type from context; consider explicitly specifying a root type
 79 | 		guard !usersAndServices.isEmpty else {
 80 | 			print("********* CREATION RESULTS *********")
[1717/1742] Compiling officectl users--create.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:57:4: error: ambiguous use of 'init'
 55 |
 56 | 		let usersAndServicesResults = services.map{ s in
 57 | 			Result{
    |    |- error: ambiguous use of 'init'
    |    |- note: avoid using a trailing closure to call 'init(_:)'
    |    `- note: use an explicit argument label instead of a trailing closure to call 'init(catching:)'
 58 | 				let u = try s.value.logicalUser(fromUser: HintsUser(properties: [
 59 | 					.emails: [email],
/Users/admin/builder/spi-builder-workspace/Sources/officectl/Commands/officectl/users/users--create.swift:78:61: error: cannot infer key path type from context; consider explicitly specifying a root type
 76 | 		}
 77 |
 78 | 		let usersAndServices = usersAndServicesResults.compactMap(\.success)
    |                                                             `- error: cannot infer key path type from context; consider explicitly specifying a root type
 79 | 		guard !usersAndServices.isEmpty else {
 80 | 			print("********* CREATION RESULTS *********")
[1718/1742] Compiling officectl UserConfirmation.swift
[1719/1742] Compiling officectl Utils.swift
[1720/1742] Compiling officectl FilePath+ExpressibleByArgument.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/FilePath+ExpressibleByArgument.swift:19:1: warning: extension declares a conformance of imported type 'FilePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'System' introduce this conformance in the future
17 |
18 |
19 | extension FilePath : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FilePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'System' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 |
21 | 	public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/Logger.Level+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
13 |
14 |
15 | extension Logger.Level : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |
17 | 	public init?(argument: String) {
[1721/1742] Compiling officectl Logger.Level+ExpressibleByArgument.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/FilePath+ExpressibleByArgument.swift:19:1: warning: extension declares a conformance of imported type 'FilePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'System' introduce this conformance in the future
17 |
18 |
19 | extension FilePath : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FilePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'System' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 |
21 | 	public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/Logger.Level+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
13 |
14 |
15 | extension Logger.Level : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |
17 | 	public init?(argument: String) {
[1722/1742] Compiling officectl ServerConf.swift
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/FilePath+ExpressibleByArgument.swift:19:1: warning: extension declares a conformance of imported type 'FilePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'System' introduce this conformance in the future
17 |
18 |
19 | extension FilePath : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'FilePath' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'System' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
20 |
21 | 	public init?(argument: String) {
/Users/admin/builder/spi-builder-workspace/Sources/officectl/CLIModel/ExpressibleByArgumentConformances/Logger.Level+ExpressibleByArgument.swift:15:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
13 |
14 |
15 | extension Logger.Level : ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'Level' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |
17 | 	public init?(argument: String) {
[1723/1742] Compiling officectl LMK.swift
[1724/1742] Compiling officectl Result+Utils.swift
[1725/1742] Compiling officectl StderrStream.swift
[1726/1742] Compiling officectl ServiceDef.swift
[1727/1742] Compiling officectl ServicesConf.swift
[1728/1742] Compiling officectl officectl.swift
[1729/1742] Compiling officectl server--routes.swift
[1730/1742] Compiling officectl server--serve.swift
[1731/1742] Compiling officectl services.swift
[1732/1742] Compiling officectl experimental--console-perm.swift
[1733/1742] Compiling officectl server.swift
[1734/1742] Compiling officectl server--process-jobs.swift
[1735/1742] Compiling officectl users--delete.swift
[1736/1742] Compiling officectl users--list.swift
[1737/1742] Compiling officectl users--sync.swift
[1737/1742] Linking officectl-odproxy
warning: 'jwt': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/jwt/Sources/JWT/Docs.docc
warning: 'multipart-kit': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/multipart-kit/Sources/MultipartKit/Docs.docc
warning: 'swift-algorithms': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-algorithms/Sources/Algorithms/Documentation.docc
BUILD FAILURE 6.1 macosSpm