The Swift Package Index logo.Swift Package Index

Build Information

Successful build of DBUS, reference 0.4.0 (a648c7), with Swift 6.2 for macOS (SPM) on 25 Apr 2026 22:49:33 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wendylabsinc/dbus.git
Reference: 0.4.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/wendylabsinc/dbus
 * tag               0.4.0      -> FETCH_HEAD
HEAD is now at a648c77 Merge pull request #26 from wendylabsinc/feature/dbus-codegen
Cloned https://github.com/wendylabsinc/dbus.git
Revision (git rev-parse @):
a648c770068b3fa843bc06326ec50d97aea3f152
SUCCESS checkout https://github.com/wendylabsinc/dbus.git at 0.4.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/wendylabsinc/dbus.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64
[0/7] Write sources
[2/7] Write dbus-codegen-tool-entitlement.plist
[3/7] Write swift-version--3CB7CFEC50E0D141.txt
[5/17] Compiling DBusCodegen TypeMapper.swift
[6/17] Compiling DBusCodegen ServerGenerator.swift
[7/17] Compiling DBusCodegen SignalGenerator.swift
[8/17] Compiling DBusCodegen IR.swift
[9/17] Compiling DBusCodegen DBusTypes.swift
[10/17] Compiling DBusCodegen ClientGenerator.swift
[11/17] Compiling DBusCodegen CodeWriter.swift
[12/17] Compiling DBusCodegen Codegen.swift
[13/17] Emitting module DBusCodegen
[14/17] Compiling DBusCodegen Parser.swift
[15/19] Emitting module dbus_codegen
[16/19] Compiling dbus_codegen main.swift
[16/19] Write Objects.LinkFileList
[17/19] Linking dbus-codegen-tool
[18/19] Applying dbus-codegen-tool
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:13:29: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
11 |
12 |     let tool = try context.tool(named: "dbus-codegen")
13 |     let outputDir = context.pluginWorkDirectory
   |                             |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
   |                             `- note: use 'pluginWorkDirectoryURL' instead
14 |
15 |     return target.sourceFiles
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:16:20: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
14 |
15 |     return target.sourceFiles
16 |       .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
   |                    |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
   |                    `- note: use 'url' instead
17 |       .map { xmlFile -> Command in
18 |         let outputName = xmlFile.path.lastComponent
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:16:25: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
14 |
15 |     return target.sourceFiles
16 |       .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
   |                         `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
17 |       .map { xmlFile -> Command in
18 |         let outputName = xmlFile.path.lastComponent
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:18:34: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
16 |       .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
17 |       .map { xmlFile -> Command in
18 |         let outputName = xmlFile.path.lastComponent
   |                                  |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
   |                                  `- note: use 'url' instead
19 |           .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 |         let outputFile = outputDir.appending(outputName)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:18:39: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
16 |       .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
17 |       .map { xmlFile -> Command in
18 |         let outputName = xmlFile.path.lastComponent
   |                                       `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
19 |           .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 |         let outputFile = outputDir.appending(outputName)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:20:36: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
18 |         let outputName = xmlFile.path.lastComponent
19 |           .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 |         let outputFile = outputDir.appending(outputName)
   |                                    `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
21 |
22 |         return .buildCommand(
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:22:17: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
20 |         let outputFile = outputDir.appending(outputName)
21 |
22 |         return .buildCommand(
   |                 `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
23 |           displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
24 |           executable: tool.path,
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:23:49: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
21 |
22 |         return .buildCommand(
23 |           displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
   |                                                 |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
   |                                                 `- note: use 'url' instead
24 |           executable: tool.path,
25 |           arguments: [
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:23:54: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
21 |
22 |         return .buildCommand(
23 |           displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
   |                                                      `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
24 |           executable: tool.path,
25 |           arguments: [
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:24:28: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
22 |         return .buildCommand(
23 |           displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
24 |           executable: tool.path,
   |                            |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
   |                            `- note: use 'url' instead
25 |           arguments: [
26 |             xmlFile.path.string,
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:26:21: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
24 |           executable: tool.path,
25 |           arguments: [
26 |             xmlFile.path.string,
   |                     |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
   |                     `- note: use 'url' instead
27 |             "--output-dir", outputDir.string,
28 |           ],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:26:26: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
24 |           executable: tool.path,
25 |           arguments: [
26 |             xmlFile.path.string,
   |                          `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
27 |             "--output-dir", outputDir.string,
28 |           ],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:27:39: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
25 |           arguments: [
26 |             xmlFile.path.string,
27 |             "--output-dir", outputDir.string,
   |                                       `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
28 |           ],
29 |           inputFiles: [xmlFile.path],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:29:32: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
27 |             "--output-dir", outputDir.string,
28 |           ],
29 |           inputFiles: [xmlFile.path],
   |                                |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
   |                                `- note: use 'url' instead
30 |           outputFiles: [outputFile]
31 |         )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1/1] Compiling plugin DBusCodegenPlugin
Building for debugging...
[1/63] Write dbus-codegen-entitlement.plist
[1/63] Write dbus-codegen-tool-entitlement.plist
[1/63] Write sources
[1/63] Write BleScanner-entitlement.plist
[1/63] Write sources
[4/63] Write ExampleApp-entitlement.plist
[9/63] Write sources
[15/63] Copying PrivacyInfo.xcprivacy
[16/63] Write sources
[22/63] Copying PrivacyInfo.xcprivacy
[23/63] Write sources
[27/63] Compiling CNIOWindows WSAStartup.c
[28/63] Compiling CNIOWindows shim.c
[29/63] Compiling CNIOWASI CNIOWASI.c
[29/63] Compiling CNIOLinux liburing_shims.c
[30/63] Compiling CNIOLinux shim.c
[32/63] Compiling CNIOOpenBSD shim.c
[33/63] Write AvahiBrowse-entitlement.plist
[34/63] Write sources
[35/63] Write swift-version--3CB7CFEC50E0D141.txt
[36/68] Compiling _AtomicsShims.c
[37/69] Compiling CNIOLLHTTP c_nio_http.c
[38/69] Compiling CNIOPosix event_loop_id.c
[39/69] Compiling CNIOLLHTTP c_nio_api.c
[40/104] Compiling CNIOLLHTTP c_nio_llhttp.c
[42/104] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[43/104] Compiling InternalCollectionsUtilities _SortedCollection.swift
[43/105] Compiling CNIODarwin shim.c
[44/105] Write Objects.LinkFileList
[46/105] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[47/179] Compiling Crypto SEC1PrivateKey.swift
[48/179] Compiling Crypto SubjectPublicKeyInfo.swift
[49/184] Compiling Crypto CryptoError_boring.swift
[50/184] Compiling Crypto CryptoKitErrors.swift
[51/198] Emitting module _NIOBase64
[52/198] Compiling _NIOBase64 Base64.swift
[53/198] Compiling Atomics OptionalRawRepresentable.swift
[54/198] Compiling Atomics RawRepresentable.swift
[55/198] Compiling Atomics AtomicBool.swift
[56/198] Compiling Atomics IntegerConformances.swift
[56/198] Linking dbus-codegen-tool
[58/198] Compiling Atomics ManagedAtomicLazyReference.swift
[59/198] Compiling Atomics UnsafeAtomic.swift
[62/198] Compiling Atomics DoubleWord.swift
[63/198] Compiling Atomics ManagedAtomic.swift
[64/198] Compiling Atomics AtomicValue.swift
[65/198] Compiling Atomics AtomicMemoryOrderings.swift
[66/198] Compiling Atomics UnsafeAtomicLazyReference.swift
[67/198] Compiling Atomics IntegerOperations.swift
[68/199] Compiling Atomics AtomicReference.swift
[69/199] Compiling Atomics AtomicStorage.swift
[70/199] Compiling DBusCodegen TypeMapper.swift
[71/199] Compiling DBusCodegen Parser.swift
[72/199] Compiling DBusCodegen SignalGenerator.swift
[73/199] Compiling DBusCodegen IR.swift
[74/199] Compiling DBusCodegen DBusTypes.swift
[75/199] Compiling DBusCodegen Codegen.swift
[76/199] Compiling DBusCodegen ClientGenerator.swift
[77/199] Compiling DBusCodegen CodeWriter.swift
[78/199] Compiling DBusCodegen ServerGenerator.swift
[79/199] Emitting module DBusCodegen
[79/199] Applying dbus-codegen-tool
[81/199] Compiling Atomics Unmanaged extensions.swift
[82/199] Compiling Atomics AtomicInteger.swift
[83/199] Compiling Atomics AtomicOptionalWrappable.swift
[86/199] Emitting module InternalCollectionsUtilities
Generated: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/AvahiBrowse/destination/DBusCodegenPlugin/avahi.dbus.swift
[92/201] DBus codegen: avahi.dbus.xml
[93/201] Write sources
Generated: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/BleScanner/destination/DBusCodegenPlugin/bluez.dbus.swift
[94/235] DBus codegen: bluez.dbus.xml
[95/235] Write sources
[97/235] Compiling ContainersPreview RandomAccessContainer.swift
[98/235] Compiling ContainersPreview RangeExpression2.swift
[99/235] Compiling ContainersPreview RangeReplaceableContainer.swift
[100/235] Compiling ContainersPreview Drain+Map.swift
[101/235] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[102/235] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[103/235] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[104/235] Compiling ContainersPreview BorrowingSequence.swift
[105/238] Compiling _NIODataStructures _TinyArray.swift
[106/238] Compiling _NIODataStructures PriorityQueue.swift
[107/238] Compiling ContainersPreview Producer+Filter.swift
[108/238] Compiling ContainersPreview Producer+Map.swift
[109/238] Compiling ContainersPreview Producer+Reduce.swift
[110/238] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[111/238] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[112/238] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[113/238] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[114/238] Compiling ContainersPreview Drain+Reduce.swift
[115/238] Compiling ContainersPreview Drain.swift
[116/238] Compiling ContainersPreview Producer+Collect.swift
[117/238] Compiling Logging MetadataProvider.swift
[118/238] Compiling ContainersPreview Inout.swift
[119/238] Compiling ContainersPreview InputSpan.swift
[120/238] Compiling ContainersPreview Shared.swift
[121/238] Compiling ContainersPreview Producer.swift
[122/238] Compiling ContainersPreview Borrow.swift
[123/238] Compiling ContainersPreview Box.swift
[124/238] Compiling ContainersPreview BidirectionalContainer.swift
[125/238] Compiling ContainersPreview Container+Filter.swift
[126/238] Compiling ContainersPreview Container+SpanwiseZip.swift
[127/238] Compiling ContainersPreview Container.swift
[128/238] Compiling ContainersPreview ContainerIterator.swift
[129/238] Compiling ContainersPreview DynamicContainer.swift
[130/238] Compiling ContainersPreview MutableContainer.swift
[131/238] Compiling ContainersPreview PermutableContainer.swift
[132/238] Compiling Logging Locks.swift
[133/238] Emitting module ContainersPreview
[134/238] Compiling ContainersPreview OutputSpan+Extras.swift
[135/238] Compiling ContainersPreview TemporaryAllocation.swift
[136/238] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[137/238] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[138/238] Emitting module Logging
[139/238] Emitting module dbus_codegen
[140/238] Compiling dbus_codegen main.swift
[140/238] Write Objects.LinkFileList
[146/279] Emitting module _NIODataStructures
[147/279] Compiling _NIODataStructures Heap.swift
[148/279] Compiling Logging Logging.swift
[149/279] Compiling Logging LogHandler.swift
[150/279] Compiling Logging LogEvent.swift
[151/279] Emitting module Atomics
[152/279] Compiling DequeModule RigidDeque+Hashable.swift
[153/279] Compiling DequeModule RigidDeque+Initializers.swift
[154/279] Compiling DequeModule RigidDeque+Insertions.swift
[155/279] Compiling DequeModule RigidDeque+Prepend.swift
[156/279] Compiling DequeModule UniqueDeque+Insertions.swift
[157/279] Compiling DequeModule UniqueDeque+Prepend.swift
[158/279] Compiling DequeModule UniqueDeque+Removals.swift
[159/279] Compiling DequeModule UniqueDeque+Replacements.swift
[160/279] Compiling DequeModule UniqueDeque+Append.swift
[161/279] Compiling DequeModule UniqueDeque+Consumption.swift
[162/279] Compiling DequeModule UniqueDeque+Container.swift
[163/279] Compiling DequeModule UniqueDeque+Descriptions.swift
[164/279] Compiling DequeModule UniqueDeque+Equatable.swift
[165/279] Compiling DequeModule UniqueDeque+Experimental.swift
[166/279] Compiling DequeModule UniqueDeque+Hashable.swift
[167/279] Compiling DequeModule UniqueDeque+Initializers.swift
[168/279] Compiling DequeModule RigidDeque+Removals.swift
[169/279] Compiling DequeModule RigidDeque+Replacements.swift
[170/279] Compiling DequeModule RigidDeque+Testing.swift
[171/279] Compiling DequeModule RigidDeque.swift
[172/279] Compiling DequeModule RigidDeque+Consumption.swift
[173/279] Compiling DequeModule RigidDeque+Container.swift
[174/279] Compiling DequeModule RigidDeque+Descriptions.swift
[175/279] Compiling DequeModule RigidDeque+Equatable.swift
[176/279] Compiling DequeModule RigidDeque+Experimental.swift
[176/283] Linking dbus-codegen
[177/283] Applying dbus-codegen
[179/283] Compiling DequeModule Deque._UnsafeHandle.swift
[180/283] Compiling DequeModule Deque.swift
[181/283] Compiling DequeModule _DequeBuffer.swift
[182/283] Compiling DequeModule _DequeBufferHeader.swift
[183/283] Compiling DequeModule RigidDeque+Append.swift
[184/283] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[185/283] Compiling DequeModule Deque+Extras.swift
[186/283] Compiling DequeModule Deque+Hashable.swift
[187/283] Compiling DequeModule Deque+Testing.swift
[188/283] Compiling DequeModule Deque._Storage.swift
[188/283] Compiling c-nioatomics.c
[190/283] Compiling DequeModule Deque+Codable.swift
[191/283] Compiling DequeModule Deque+Collection.swift
[192/283] Compiling DequeModule Deque+CustomReflectable.swift
[193/283] Compiling DequeModule Deque+Descriptions.swift
[194/283] Compiling DequeModule Deque+Equatable.swift
[194/283] Compiling c-atomics.c
[196/290] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[197/290] Compiling NIOConcurrencyHelpers atomics.swift
[198/290] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[199/290] Compiling NIOConcurrencyHelpers NIOLock.swift
[200/290] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[201/290] Emitting module NIOConcurrencyHelpers
[202/290] Compiling NIOConcurrencyHelpers lock.swift
[211/290] Emitting module Crypto
[220/298] Compiling Crypto AES.swift
[221/298] Compiling Crypto ECDSASignature_boring.swift
[222/298] Compiling Crypto ECDSA_boring.swift
[223/298] Compiling Crypto EdDSA_boring.swift
[224/298] Compiling Crypto ECDSA.swift
[225/298] Compiling Crypto Ed25519.swift
[226/298] Compiling Crypto Signature.swift
[227/298] Compiling Crypto CryptoKitErrors_boring.swift
[228/298] Compiling Crypto AES-GCM.swift
[229/298] Compiling Crypto AES-GCM_boring.swift
[230/298] Compiling Crypto ChaChaPoly_boring.swift
[231/298] Compiling Crypto ChaChaPoly.swift
[232/298] Compiling Crypto Cipher.swift
[233/298] Compiling Crypto Nonces.swift
[234/298] Compiling Crypto ASN1.swift
[235/298] Compiling Crypto ASN1Any.swift
[236/298] Compiling Crypto ASN1BitString.swift
[237/298] Compiling Crypto DH.swift
[238/298] Compiling Crypto ECDH.swift
[239/298] Compiling Crypto HKDF.swift
[240/298] Compiling Crypto AESWrap.swift
[241/298] Compiling Crypto AESWrap_boring.swift
[242/298] Compiling Crypto Ed25519_boring.swift
[243/298] Compiling Crypto NISTCurvesKeys_boring.swift
[244/298] Compiling Crypto X25519Keys_boring.swift
[261/298] Compiling DequeModule UniqueDeque.swift
[262/298] Compiling DequeModule _DequeSlot.swift
[263/298] Compiling DequeModule _UnsafeDequeHandle.swift
[264/298] Compiling DequeModule _UnsafeDequeSegments.swift
[265/298] Compiling Crypto HashFunctions_SHA2.swift
[266/298] Compiling Crypto HPKE-AEAD.swift
[267/298] Compiling Crypto HPKE-Ciphersuite.swift
[268/298] Compiling Crypto HPKE-KDF.swift
[277/298] Emitting module DequeModule
[282/363] Compiling Crypto RNG_boring.swift
[283/363] Compiling Crypto SafeCompare_boring.swift
[284/363] Compiling Crypto Zeroization_boring.swift
[285/363] Compiling Crypto PrettyBytes.swift
[286/363] Compiling Crypto SafeCompare.swift
[287/363] Compiling Crypto SecureBytes.swift
[288/363] Compiling Crypto Zeroization.swift
[289/363] Compiling Crypto resource_bundle_accessor.swift
[290/363] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[291/363] Compiling NIOCore NIOScheduledCallback.swift
[292/363] Compiling NIOCore NIOSendable.swift
[293/363] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[294/363] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[295/363] Compiling NIOCore RecvByteBufferAllocator.swift
[296/363] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[297/363] Compiling NIOCore AddressedEnvelope.swift
[298/363] Compiling NIOCore AsyncAwaitSupport.swift
[299/363] Compiling NIOCore AsyncChannel.swift
[300/363] Compiling NIOCore AsyncChannelHandler.swift
[301/363] Compiling NIOCore AsyncChannelInboundStream.swift
[302/363] Compiling NIOCore AsyncChannelOutboundWriter.swift
[303/363] Compiling NIOCore NIOAsyncSequenceProducer.swift
[304/363] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[305/370] Compiling NIOCore IO.swift
[306/370] Compiling NIOCore IOData.swift
[307/370] Compiling NIOCore IPProtocol.swift
[308/370] Compiling NIOCore IntegerBitPacking.swift
[309/370] Compiling NIOCore IntegerTypes.swift
[310/370] Compiling NIOCore Interfaces.swift
[311/370] Compiling NIOCore Linux.swift
[312/370] Compiling NIOCore ConvenienceOptionSupport.swift
[313/370] Compiling NIOCore DeadChannel.swift
[314/370] Compiling NIOCore DispatchQueue+WithFuture.swift
[315/370] Compiling NIOCore EventLoop+Deprecated.swift
[316/370] Compiling NIOCore EventLoop+SerialExecutor.swift
[317/370] Compiling NIOCore EventLoop.swift
[318/370] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[319/370] Compiling NIOCore EventLoopFuture+Deprecated.swift
[320/370] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[321/370] Compiling NIOCore EventLoopFuture.swift
[322/370] Compiling NIOCore FileDescriptor.swift
[323/370] Compiling NIOCore FileHandle.swift
[324/370] Compiling NIOCore FileRegion.swift
[325/370] Compiling NIOCore GlobalSingletons.swift
[326/370] Compiling NIOCore ChannelHandler.swift
[327/370] Compiling NIOCore ChannelHandlers.swift
[328/370] Compiling NIOCore ChannelInvoker.swift
[329/370] Compiling NIOCore ChannelOption.swift
[330/370] Compiling NIOCore ChannelPipeline.swift
[331/370] Compiling NIOCore CircularBuffer.swift
[332/370] Compiling NIOCore Codec.swift
[333/370] Compiling NIOCore SocketAddresses.swift
[334/370] Compiling NIOCore SocketOptionProvider.swift
[335/370] Compiling NIOCore SystemCallHelpers.swift
[336/370] Compiling NIOCore TimeAmount+Duration.swift
[337/370] Compiling NIOCore TypeAssistedChannelHandler.swift
[338/370] Compiling NIOCore UniversalBootstrapSupport.swift
[339/370] Compiling NIOCore Utilities.swift
[340/370] Compiling NIOCore NIOAsyncWriter.swift
[341/370] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[342/370] Compiling NIOCore BSDSocketAPI.swift
[343/370] Compiling NIOCore ByteBuffer-aux.swift
[344/370] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[345/370] Compiling NIOCore ByteBuffer-conversions.swift
[346/370] Compiling NIOCore ByteBuffer-core.swift
[347/370] Compiling NIOCore MarkedCircularBuffer.swift
[348/370] Compiling NIOCore MulticastChannel.swift
[349/370] Compiling NIOCore NIOAny.swift
[350/370] Compiling NIOCore NIOCloseOnErrorHandler.swift
[351/370] Compiling NIOCore NIOCoreSendableMetatype.swift
[352/370] Compiling NIOCore NIODecodedAsyncSequence.swift
[353/370] Compiling NIOCore NIOLoopBound.swift
[354/370] Compiling NIOCore ByteBuffer-hex.swift
[355/370] Compiling NIOCore ByteBuffer-int.swift
[356/370] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[357/370] Compiling NIOCore ByteBuffer-multi-int.swift
[358/370] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[359/370] Compiling NIOCore ByteBuffer-views.swift
[360/370] Compiling NIOCore Channel.swift
[361/370] Emitting module NIOCore
[362/426] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[363/426] Compiling NIOEmbedded Embedded.swift
[364/426] Compiling NIOEmbedded AsyncTestingChannel.swift
[365/426] Emitting module NIOEmbedded
[366/426] Compiling NIOPosix SelectorWSAPoll.swift
[367/426] Compiling NIOPosix ServerSocket.swift
[368/426] Compiling NIOPosix Socket.swift
[369/426] Compiling NIOPosix SocketChannel.swift
[370/426] Compiling NIOPosix SocketProtocols.swift
[371/431] Compiling NIOPosix BSDSocketAPICommon.swift
[372/431] Compiling NIOPosix BSDSocketAPIPosix.swift
[373/431] Compiling NIOPosix BSDSocketAPIWindows.swift
[374/431] Compiling NIOPosix BaseSocket.swift
[375/431] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
[376/431] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[377/431] Emitting module NIOPosix
[378/431] Compiling NIOPosix Utilities.swift
[379/431] Compiling NIOPosix VsockAddress.swift
[380/431] Compiling NIOPosix VsockChannelEvents.swift
[381/431] Compiling NIOPosix Windows.swift
[382/431] Compiling NIOPosix resource_bundle_accessor.swift
[383/431] Compiling NIOPosix FileDescriptor.swift
[384/431] Compiling NIOPosix GetaddrinfoResolver.swift
[385/431] Compiling NIOPosix HappyEyeballs.swift
[386/431] Compiling NIOPosix IO.swift
[387/431] Compiling NIOPosix IntegerBitPacking.swift
[388/431] Compiling NIOPosix IntegerTypes.swift
[389/431] Compiling NIOPosix Linux.swift
[390/431] Compiling NIOPosix LinuxCPUSet.swift
[391/431] Compiling NIOPosix LinuxUring.swift
[392/431] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[393/431] Compiling NIOPosix NIOPosixSendableMetatype.swift
[394/431] Compiling NIOPosix NIOThreadPool.swift
[395/431] Compiling NIOPosix SelectableEventLoop.swift
[396/431] Compiling NIOPosix SelectorEpoll.swift
[397/431] Compiling NIOPosix SelectorGeneric.swift
[398/431] Compiling NIOPosix SelectorKqueue.swift
[399/431] Compiling NIOPosix SelectorUring.swift
[400/431] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[401/431] Compiling NIOPosix System.swift
[402/431] Compiling NIOPosix Thread.swift
[403/431] Compiling NIOPosix ThreadPosix.swift
[404/431] Compiling NIOPosix ThreadWindows.swift
[405/431] Compiling NIOPosix BaseSocketChannel.swift
[406/431] Compiling NIOPosix BaseStreamSocketChannel.swift
[407/431] Compiling NIOPosix Bootstrap.swift
[408/431] Compiling NIOPosix ControlMessage.swift
[409/431] Compiling NIOPosix DatagramVectorReadManager.swift
[410/431] Compiling NIOPosix Errors+Any.swift
[411/431] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[412/431] Compiling NIOPosix PosixSingletons.swift
[413/431] Compiling NIOPosix RawSocketBootstrap.swift
[414/431] Compiling NIOPosix Resolver.swift
[415/431] Compiling NIOPosix Selectable.swift
[416/431] Compiling NIOPosix SelectableChannel.swift
[417/431] Compiling NIOPosix NonBlockingFileIO.swift
[418/431] Compiling NIOPosix PendingDatagramWritesManager.swift
[419/431] Compiling NIOPosix PendingWritesManager.swift
[420/431] Compiling NIOPosix PipeChannel.swift
[421/431] Compiling NIOPosix PipePair.swift
[422/431] Compiling NIOPosix Pool.swift
[423/433] Compiling NIO Exports.swift
[424/433] Emitting module NIO
[425/450] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[426/450] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[427/451] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[428/451] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[429/451] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[430/451] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[431/451] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[432/451] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[433/451] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[434/451] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[435/451] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[436/451] Emitting module NIOHTTP1
[437/451] Compiling NIOHTTP1 HTTPEncoder.swift
[438/451] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[439/451] Compiling NIOHTTP1 ByteCollectionUtils.swift
[440/451] Compiling NIOHTTP1 HTTPDecoder.swift
[441/451] Compiling NIOHTTP1 HTTPTypes.swift
[442/451] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[443/470] Compiling NIOExtras QuiescingHelper.swift
[444/470] Compiling NIOExtras RequestResponseHandler.swift
[445/470] Compiling NIOExtras NIORequestIdentifiable.swift
[446/470] Compiling NIOExtras PCAPRingBuffer.swift
[447/470] Compiling NIOExtras RequestResponseHandlers+State.swift
[448/470] Compiling NIOExtras RequestResponseWithIDHandler.swift
[449/471] Compiling NIOExtras LineBasedFrameDecoder.swift
[450/471] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[451/471] Compiling NIOExtras NIOExtrasError.swift
[452/471] Compiling NIOExtras NIOLengthFieldBitLength.swift
[453/471] Compiling NIOExtras JSONRPCFraming+ContentLengthHeader.swift
[454/471] Compiling NIOExtras JSONRPCFraming.swift
[455/471] Compiling NIOExtras FixedLengthFrameDecoder.swift
[456/471] Compiling NIOExtras HTTP1ProxyConnectHandler.swift
[457/471] Compiling NIOExtras DebugInboundEventsHandler.swift
[458/471] Compiling NIOExtras DebugOutboundEventsHandler.swift
[459/471] Emitting module NIOExtras
[460/471] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[461/471] Compiling NIOExtras LengthFieldPrepender.swift
[462/471] Compiling NIOExtras WritePCAPHandler.swift
[463/491] Compiling DBUS DBusServerConnection.swift
[464/491] Compiling DBUS DBusMessage+Flags.swift
[465/491] Compiling DBUS DBusValidation.swift
[466/491] Compiling DBUS HeaderField+Code.swift
[467/493] Compiling DBUS DBusMessage+MessageType.swift
[468/493] Compiling DBUS DBusMessage.swift
[469/493] Compiling DBUS HeaderField.swift
[470/493] Compiling DBUS DBusString.swift
[471/493] Compiling DBUS DBusType.swift
[472/493] Compiling DBUS DBusValue.swift
[473/493] Compiling DBUS DBusVariant.swift
[474/493] Compiling DBUS TypeSignature.swift
[475/493] Compiling DBUS DBusObjectServer.swift
[476/493] Compiling DBUS DBusSerialGenerator.swift
[477/493] Compiling DBUS DBusError.swift
[478/493] Compiling DBUS DBusMessageCodec.swift
[479/493] Compiling DBUS ByteBuffer+DBus.swift
[480/493] Compiling DBUS DBusAddress.swift
[481/493] Compiling DBUS DBusAuthMechanism.swift
[482/493] Emitting module DBUS
[483/493] Compiling DBUS DBusAuthenticationHandler.swift
[484/493] Compiling DBUS DBusClient.swift
[485/501] Compiling AvahiBrowse AvahiBrowse.swift
[486/501] Compiling ExampleApp App.swift
[487/501] Emitting module ExampleApp
[488/501] Compiling AvahiBrowse avahi.dbus.swift
/Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/AvahiBrowse/destination/DBusCodegenPlugin/avahi.dbus.swift:93:85: warning: keyword 'protocol' does not need to be escaped in argument list
 91 |                 guard case .string(let domain) = ctx.arguments[3] else { throw DBusCodegenError.typeMismatch }
 92 |                 guard case .uint32(let flags) = ctx.arguments[4] else { throw DBusCodegenError.typeMismatch }
 93 |                 let result = try await self.serviceBrowserNew(interface: interface, `protocol`: `protocol`, `type`: `type`, domain: domain, flags: flags)
    |                                                                                     `- warning: keyword 'protocol' does not need to be escaped in argument list
 94 |                 return [.objectPath(result)]
 95 |             },
/Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/AvahiBrowse/destination/DBusCodegenPlugin/avahi.dbus.swift:93:109: warning: keyword 'type' does not need to be escaped in argument list
 91 |                 guard case .string(let domain) = ctx.arguments[3] else { throw DBusCodegenError.typeMismatch }
 92 |                 guard case .uint32(let flags) = ctx.arguments[4] else { throw DBusCodegenError.typeMismatch }
 93 |                 let result = try await self.serviceBrowserNew(interface: interface, `protocol`: `protocol`, `type`: `type`, domain: domain, flags: flags)
    |                                                                                                             `- warning: keyword 'type' does not need to be escaped in argument list
 94 |                 return [.objectPath(result)]
 95 |             },
[489/501] Emitting module AvahiBrowse
[489/501] Write Objects.LinkFileList
[492/501] Compiling BleScanner bluez.dbus.swift
[493/501] Compiling BleScanner BleScanner.swift
[494/501] Emitting module BleScanner
[494/501] Write Objects.LinkFileList
[495/501] Linking AvahiBrowse
[496/501] Linking ExampleApp
[497/501] Applying AvahiBrowse
[498/501] Applying ExampleApp
[499/501] Linking BleScanner
[500/501] Applying BleScanner
Build complete! (66.35s)
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio.git
[1/6649] Fetching swift-log
[68/24085] Fetching swift-log, swift-crypto
[69/30604] Fetching swift-log, swift-crypto, swift-nio-extras
[15262/113823] Fetching swift-log, swift-crypto, swift-nio-extras, swift-nio
Fetched https://github.com/apple/swift-crypto.git from cache (2.59s)
[49785/96387] Fetching swift-log, swift-nio-extras, swift-nio
Fetched https://github.com/apple/swift-log.git from cache (5.84s)
Fetched https://github.com/apple/swift-nio.git from cache (5.84s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (5.84s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.34.0 (6.51s)
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-atomics.git
[1/1820] Fetching swift-atomics
[74/3623] Fetching swift-atomics, swift-asn1
[183/4666] Fetching swift-atomics, swift-asn1, swift-http-types
[452/11818] Fetching swift-atomics, swift-asn1, swift-http-types, swift-certificates
[939/18065] Fetching swift-atomics, swift-asn1, swift-http-types, swift-certificates, swift-async-algorithms
[2282/24123] Fetching swift-atomics, swift-asn1, swift-http-types, swift-certificates, swift-async-algorithms, swift-algorithms
[2664/26868] Fetching swift-atomics, swift-asn1, swift-http-types, swift-certificates, swift-async-algorithms, swift-algorithms, swift-service-lifecycle
Fetched https://github.com/apple/swift-http-types.git from cache (1.19s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.19s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.19s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.19s)
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetched https://github.com/apple/swift-atomics.git from cache (1.23s)
Fetched https://github.com/apple/swift-asn1.git from cache (1.23s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.23s)
[1/1242] Fetching swift-http-structured-headers
[1008/13350] Fetching swift-http-structured-headers, swift-nio-http2
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.83s)
[243/12108] Fetching swift-nio-http2
[486/27548] Fetching swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.55s)
[10500/15440] Fetching swift-nio-ssl
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.04s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (6.37s)
Fetching https://github.com/apple/swift-numerics.git
[1/6416] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.01s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.61s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.5.1 (0.55s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.11.0 (0.55s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.1.3 (0.65s)
Fetching https://github.com/apple/swift-collections.git
[1/23686] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (3.57s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.37.0 (4.20s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (0.53s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.7.0 (2.22s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.99.0 (0.74s)
Fetching https://github.com/apple/swift-system.git
[1/5601] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (1.09s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.19.0 (1.79s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.7.0 (0.55s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.56s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.1 (0.84s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.57s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.64s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.43.0 (0.56s)
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.43.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.7.0
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.5.1
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.11.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.34.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.1
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.1.3
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.19.0
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.7.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.37.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.99.0
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.15.1
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.4.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.70.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-nio-extras",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.26.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio-extras.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    }
  ],
  "manifest_display_name" : "DBUS",
  "name" : "DBUS",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "DBUS",
      "targets" : [
        "DBUS"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DBusCodegen",
      "targets" : [
        "DBusCodegen"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "dbus-codegen",
      "targets" : [
        "dbus-codegen"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "AvahiBrowse",
      "targets" : [
        "AvahiBrowse"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "BleScanner",
      "targets" : [
        "BleScanner"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "DBusCodegenPlugin",
      "targets" : [
        "DBusCodegenPlugin"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "ExampleApp",
      "targets" : [
        "ExampleApp"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "dbus_codegen",
      "module_type" : "SwiftTarget",
      "name" : "dbus-codegen",
      "path" : "Sources/dbus-codegen",
      "product_memberships" : [
        "dbus-codegen",
        "AvahiBrowse",
        "BleScanner",
        "DBusCodegenPlugin"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "DBusCodegen"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ExampleApp",
      "module_type" : "SwiftTarget",
      "name" : "ExampleApp",
      "path" : "Sources/ExampleApp",
      "product_memberships" : [
        "ExampleApp"
      ],
      "sources" : [
        "App.swift"
      ],
      "target_dependencies" : [
        "DBUS"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "DBusCodegenTests",
      "module_type" : "SwiftTarget",
      "name" : "DBusCodegenTests",
      "path" : "Tests/DBusCodegenTests",
      "sources" : [
        "ClientGeneratorTests.swift",
        "CodeWriterTests.swift",
        "IRTests.swift",
        "IntegrationTests.swift",
        "ParserTests.swift",
        "ServerGeneratorTests.swift",
        "SignalGeneratorTests.swift",
        "TypeMapperTests.swift"
      ],
      "target_dependencies" : [
        "DBusCodegen"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DBusCodegenPlugin",
      "module_type" : "PluginTarget",
      "name" : "DBusCodegenPlugin",
      "path" : "Plugins/DBusCodegenPlugin",
      "plugin_capability" : {
        "type" : "buildTool"
      },
      "product_memberships" : [
        "AvahiBrowse",
        "BleScanner",
        "DBusCodegenPlugin"
      ],
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "dbus-codegen"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "DBusCodegen",
      "module_type" : "SwiftTarget",
      "name" : "DBusCodegen",
      "path" : "Sources/DBusCodegen",
      "product_memberships" : [
        "DBusCodegen",
        "dbus-codegen",
        "AvahiBrowse",
        "BleScanner",
        "DBusCodegenPlugin"
      ],
      "sources" : [
        "ClientGenerator.swift",
        "CodeWriter.swift",
        "Codegen.swift",
        "DBusTypes.swift",
        "IR.swift",
        "Parser.swift",
        "ServerGenerator.swift",
        "SignalGenerator.swift",
        "TypeMapper.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DBUSTests",
      "module_type" : "SwiftTarget",
      "name" : "DBUSTests",
      "path" : "Tests/DBUSTests",
      "sources" : [
        "DBusAddressTests.swift",
        "DBusAuthenticationHandlerTests.swift",
        "DBusClientTests.swift",
        "DBusMessageCodecTests.swift",
        "DBusObjectServerTests.swift",
        "DBusValueTests.swift",
        "Test.swift",
        "TypeSignatureTests.swift"
      ],
      "target_dependencies" : [
        "DBUS"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DBUS",
      "module_type" : "SwiftTarget",
      "name" : "DBUS",
      "path" : "Sources/DBUS",
      "product_dependencies" : [
        "NIOCore",
        "NIOExtras",
        "Logging",
        "Crypto"
      ],
      "product_memberships" : [
        "DBUS",
        "AvahiBrowse",
        "BleScanner",
        "ExampleApp"
      ],
      "sources" : [
        "ByteBuffer+DBus.swift",
        "DBusAddress.swift",
        "DBusAuthMechanism.swift",
        "DBusAuthenticationHandler.swift",
        "DBusClient.swift",
        "DBusError.swift",
        "DBusMessageCodec.swift",
        "DBusObjectServer.swift",
        "DBusSerialGenerator.swift",
        "DBusServerConnection.swift",
        "Message/DBusMessage+Flags.swift",
        "Message/DBusMessage+MessageType.swift",
        "Message/DBusMessage.swift",
        "Message/DBusValidation.swift",
        "Message/HeaderField+Code.swift",
        "Message/HeaderField.swift",
        "Message/Primitives/DBusString.swift",
        "Message/Primitives/DBusType.swift",
        "Message/Primitives/DBusValue.swift",
        "Message/Primitives/DBusVariant.swift",
        "Message/Primitives/TypeSignature.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BleScanner",
      "module_type" : "SwiftTarget",
      "name" : "BleScanner",
      "path" : "Sources/BleScanner",
      "product_dependencies" : [
        "NIOCore"
      ],
      "product_memberships" : [
        "BleScanner"
      ],
      "sources" : [
        "BleScanner.swift"
      ],
      "target_dependencies" : [
        "DBUS",
        "DBusCodegenPlugin"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "AvahiBrowse",
      "module_type" : "SwiftTarget",
      "name" : "AvahiBrowse",
      "path" : "Sources/AvahiBrowse",
      "product_dependencies" : [
        "NIOCore"
      ],
      "product_memberships" : [
        "AvahiBrowse"
      ],
      "sources" : [
        "AvahiBrowse.swift"
      ],
      "target_dependencies" : [
        "DBUS",
        "DBusCodegenPlugin"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "6.0"
}
Done.