Build Information
Successful build of ChouTi, reference master (e3ae73), with Swift 6.2 for macOS (SPM) on 18 Jun 2025 11:44:37 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Ch0uti/ChouTi.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Ch0uti/ChouTi
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at e3ae731 Update README.md
Cloned https://github.com/Ch0uti/ChouTi.git
Revision (git rev-parse @):
e3ae7313892ff07ddb034a4348feb88c233650fb
SUCCESS checkout https://github.com/Ch0uti/ChouTi.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/Ch0uti/ChouTi.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/25] Emitting module ChouTi
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/String+Extensions.swift:192:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
190 | // MARK: - Error
191 |
192 | extension String: Error {}
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
193 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/AsyncOperation.swift:48:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
46 | /// Check `isCancelled` during the executing if needed.
47 | /// - Overriding `cancel()`: Call `super.cancel()` first then do the cancellation. No need to call `finish()`.
48 | open class AsyncOperation: Operation {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
49 | /// Allows us to asynchronously track changes of the operation state
50 | public enum State: String {
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:16:14: warning: class 'OutputTask' must restate inherited '@unchecked Sendable' conformance
14 | /// A task that only generates an output.
15 | /// ... -> output
16 | public class OutputTask<Output>: Operation, OutputTaskType {
| `- warning: class 'OutputTask' must restate inherited '@unchecked Sendable' conformance
17 | /// The output. Before finishing, it's the default value.
18 | public var output: Output
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:38:14: warning: class 'PipeTask' must restate inherited '@unchecked Sendable' conformance
36 | /// A task that can consume an input and generates an output.
37 | /// input -> ... -> output
38 | public class PipeTask<Input, Output, DependencyTask: OutputTaskType>: Operation, OutputTaskType where DependencyTask.Output == Input {
| `- warning: class 'PipeTask' must restate inherited '@unchecked Sendable' conformance
39 | /// The dependency task that provides an input for this task.
40 | public let dependencyTask: DependencyTask
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:67:14: warning: class 'InputTask' must restate inherited '@unchecked Sendable' conformance
65 | /// A task that consumes an input.
66 | /// input -> ...
67 | public class InputTask<Input, DependencyTask: OutputTaskType>: Operation where DependencyTask.Output == Input {
| `- warning: class 'InputTask' must restate inherited '@unchecked Sendable' conformance
68 | typealias Finish = () -> Void
69 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:94:14: warning: class 'AsyncOutputTask' must restate inherited '@unchecked Sendable' conformance
92 | /// An async task that only generates an output.
93 | /// ... -> output
94 | public class AsyncOutputTask<Output>: AsyncOperation, OutputTaskType {
| `- warning: class 'AsyncOutputTask' must restate inherited '@unchecked Sendable' conformance
95 | public typealias Finish = (Output) -> Void
96 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:121:14: warning: class 'AsyncPipeOperation' must restate inherited '@unchecked Sendable' conformance
119 | /// An async task that can consume an input and generates an output.
120 | /// input -> ... -> output
121 | public class AsyncPipeOperation<Input, Output, DependencyTask: OutputTaskType>: AsyncOperation, OutputTaskType where DependencyTask.Output == Input {
| `- warning: class 'AsyncPipeOperation' must restate inherited '@unchecked Sendable' conformance
122 | public typealias Finish = (Output) -> Void
123 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:155:14: warning: class 'AsyncInputTask' must restate inherited '@unchecked Sendable' conformance
153 | /// An async task that consumes an input.
154 | /// input -> ...
155 | public class AsyncInputTask<Input, DependencyTask: OutputTaskType>: AsyncOperation where DependencyTask.Output == Input {
| `- warning: class 'AsyncInputTask' must restate inherited '@unchecked Sendable' conformance
156 | public typealias Finish = () -> Void
157 |
[4/27] Compiling ChouTi Data+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/Date+Extensions.swift:174:5: warning: switch must be exhaustive
172 |
173 | var components = calendar.dateComponents(in: timeZone, from: self)
174 | switch component {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.isLeapMonth'
| |- note: add missing case: '.dayOfYear'
| `- note: add missing cases
175 | case .era:
176 | components.era = newValue
[5/27] Compiling ChouTi Date+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/Date+Extensions.swift:174:5: warning: switch must be exhaustive
172 |
173 | var components = calendar.dateComponents(in: timeZone, from: self)
174 | switch component {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.isLeapMonth'
| |- note: add missing case: '.dayOfYear'
| `- note: add missing cases
175 | case .era:
176 | components.era = newValue
[6/27] Compiling ChouTi Decimal+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/Date+Extensions.swift:174:5: warning: switch must be exhaustive
172 |
173 | var components = calendar.dateComponents(in: timeZone, from: self)
174 | switch component {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.isLeapMonth'
| |- note: add missing case: '.dayOfYear'
| `- note: add missing cases
175 | case .era:
176 | components.era = newValue
[7/27] Compiling ChouTi OrderedDictionary.swift
[8/27] Compiling ChouTi Queue.swift
[9/27] Compiling ChouTi DelayTask.swift
[10/27] Compiling ChouTi AsyncOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/AsyncOperation.swift:48:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
46 | /// Check `isCancelled` during the executing if needed.
47 | /// - Overriding `cancel()`: Call `super.cancel()` first then do the cancellation. No need to call `finish()`.
48 | open class AsyncOperation: Operation {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
49 | /// Allows us to asynchronously track changes of the operation state
50 | public enum State: String {
[11/27] Compiling ChouTi OperationQueue.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/AsyncOperation.swift:48:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
46 | /// Check `isCancelled` during the executing if needed.
47 | /// - Overriding `cancel()`: Call `super.cancel()` first then do the cancellation. No need to call `finish()`.
48 | open class AsyncOperation: Operation {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
49 | /// Allows us to asynchronously track changes of the operation state
50 | public enum State: String {
[12/27] Compiling ChouTi SequenceType+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/String+Extensions.swift:192:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
190 | // MARK: - Error
191 |
192 | extension String: Error {}
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
193 |
[13/27] Compiling ChouTi String+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/String+Extensions.swift:192:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
190 | // MARK: - Error
191 |
192 | extension String: Error {}
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
193 |
[14/27] Compiling ChouTi Calendar+Extensions.swift
[15/27] Compiling ChouTi Codable+Extensions.swift
[16/27] Compiling ChouTi Collection+Extensions.swift
[17/27] Compiling ChouTi TimeZone+Extensions.swift
[18/27] Compiling ChouTi Math.swift
[19/27] Compiling ChouTi NSObject+AssociatedObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/NSObject+AssociatedObject.swift:15:49: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
13 | /// Strong referenced associated object
14 | public var associatedObject: Any? {
15 | get { return objc_getAssociatedObject(self, &zhAssociateObjectKey.Key) }
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
16 | set { objc_setAssociatedObject(self, &zhAssociateObjectKey.Key, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
17 | }
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/NSObject+AssociatedObject.swift:16:42: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
14 | public var associatedObject: Any? {
15 | get { return objc_getAssociatedObject(self, &zhAssociateObjectKey.Key) }
16 | set { objc_setAssociatedObject(self, &zhAssociateObjectKey.Key, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
17 | }
18 |
[20/27] Compiling ChouTi Numbers+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/NSObject+AssociatedObject.swift:15:49: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
13 | /// Strong referenced associated object
14 | public var associatedObject: Any? {
15 | get { return objc_getAssociatedObject(self, &zhAssociateObjectKey.Key) }
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
16 | set { objc_setAssociatedObject(self, &zhAssociateObjectKey.Key, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
17 | }
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Extensions/NSObject+AssociatedObject.swift:16:42: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
14 | public var associatedObject: Any? {
15 | get { return objc_getAssociatedObject(self, &zhAssociateObjectKey.Key) }
16 | set { objc_setAssociatedObject(self, &zhAssociateObjectKey.Key, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
| `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
17 | }
18 |
[21/27] Compiling ChouTi Dictionary+Extensions.swift
[22/27] Compiling ChouTi DispatchQueue+Extensions.swift
[23/27] Compiling ChouTi PipeOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:16:14: warning: class 'OutputTask' must restate inherited '@unchecked Sendable' conformance
14 | /// A task that only generates an output.
15 | /// ... -> output
16 | public class OutputTask<Output>: Operation, OutputTaskType {
| `- warning: class 'OutputTask' must restate inherited '@unchecked Sendable' conformance
17 | /// The output. Before finishing, it's the default value.
18 | public var output: Output
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:38:14: warning: class 'PipeTask' must restate inherited '@unchecked Sendable' conformance
36 | /// A task that can consume an input and generates an output.
37 | /// input -> ... -> output
38 | public class PipeTask<Input, Output, DependencyTask: OutputTaskType>: Operation, OutputTaskType where DependencyTask.Output == Input {
| `- warning: class 'PipeTask' must restate inherited '@unchecked Sendable' conformance
39 | /// The dependency task that provides an input for this task.
40 | public let dependencyTask: DependencyTask
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:67:14: warning: class 'InputTask' must restate inherited '@unchecked Sendable' conformance
65 | /// A task that consumes an input.
66 | /// input -> ...
67 | public class InputTask<Input, DependencyTask: OutputTaskType>: Operation where DependencyTask.Output == Input {
| `- warning: class 'InputTask' must restate inherited '@unchecked Sendable' conformance
68 | typealias Finish = () -> Void
69 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:94:14: warning: class 'AsyncOutputTask' must restate inherited '@unchecked Sendable' conformance
92 | /// An async task that only generates an output.
93 | /// ... -> output
94 | public class AsyncOutputTask<Output>: AsyncOperation, OutputTaskType {
| `- warning: class 'AsyncOutputTask' must restate inherited '@unchecked Sendable' conformance
95 | public typealias Finish = (Output) -> Void
96 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:121:14: warning: class 'AsyncPipeOperation' must restate inherited '@unchecked Sendable' conformance
119 | /// An async task that can consume an input and generates an output.
120 | /// input -> ... -> output
121 | public class AsyncPipeOperation<Input, Output, DependencyTask: OutputTaskType>: AsyncOperation, OutputTaskType where DependencyTask.Output == Input {
| `- warning: class 'AsyncPipeOperation' must restate inherited '@unchecked Sendable' conformance
122 | public typealias Finish = (Output) -> Void
123 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:155:14: warning: class 'AsyncInputTask' must restate inherited '@unchecked Sendable' conformance
153 | /// An async task that consumes an input.
154 | /// input -> ...
155 | public class AsyncInputTask<Input, DependencyTask: OutputTaskType>: AsyncOperation where DependencyTask.Output == Input {
| `- warning: class 'AsyncInputTask' must restate inherited '@unchecked Sendable' conformance
156 | public typealias Finish = () -> Void
157 |
[24/27] Compiling ChouTi Operators.swift
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:16:14: warning: class 'OutputTask' must restate inherited '@unchecked Sendable' conformance
14 | /// A task that only generates an output.
15 | /// ... -> output
16 | public class OutputTask<Output>: Operation, OutputTaskType {
| `- warning: class 'OutputTask' must restate inherited '@unchecked Sendable' conformance
17 | /// The output. Before finishing, it's the default value.
18 | public var output: Output
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:38:14: warning: class 'PipeTask' must restate inherited '@unchecked Sendable' conformance
36 | /// A task that can consume an input and generates an output.
37 | /// input -> ... -> output
38 | public class PipeTask<Input, Output, DependencyTask: OutputTaskType>: Operation, OutputTaskType where DependencyTask.Output == Input {
| `- warning: class 'PipeTask' must restate inherited '@unchecked Sendable' conformance
39 | /// The dependency task that provides an input for this task.
40 | public let dependencyTask: DependencyTask
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:67:14: warning: class 'InputTask' must restate inherited '@unchecked Sendable' conformance
65 | /// A task that consumes an input.
66 | /// input -> ...
67 | public class InputTask<Input, DependencyTask: OutputTaskType>: Operation where DependencyTask.Output == Input {
| `- warning: class 'InputTask' must restate inherited '@unchecked Sendable' conformance
68 | typealias Finish = () -> Void
69 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:94:14: warning: class 'AsyncOutputTask' must restate inherited '@unchecked Sendable' conformance
92 | /// An async task that only generates an output.
93 | /// ... -> output
94 | public class AsyncOutputTask<Output>: AsyncOperation, OutputTaskType {
| `- warning: class 'AsyncOutputTask' must restate inherited '@unchecked Sendable' conformance
95 | public typealias Finish = (Output) -> Void
96 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:121:14: warning: class 'AsyncPipeOperation' must restate inherited '@unchecked Sendable' conformance
119 | /// An async task that can consume an input and generates an output.
120 | /// input -> ... -> output
121 | public class AsyncPipeOperation<Input, Output, DependencyTask: OutputTaskType>: AsyncOperation, OutputTaskType where DependencyTask.Output == Input {
| `- warning: class 'AsyncPipeOperation' must restate inherited '@unchecked Sendable' conformance
122 | public typealias Finish = (Output) -> Void
123 |
/Users/admin/builder/spi-builder-workspace/Sources/ChouTi/Operations/PipeOperation.swift:155:14: warning: class 'AsyncInputTask' must restate inherited '@unchecked Sendable' conformance
153 | /// An async task that consumes an input.
154 | /// input -> ...
155 | public class AsyncInputTask<Input, DependencyTask: OutputTaskType>: AsyncOperation where DependencyTask.Output == Input {
| `- warning: class 'AsyncInputTask' must restate inherited '@unchecked Sendable' conformance
156 | public typealias Finish = () -> Void
157 |
[25/27] Compiling ChouTi Array+Extensions.swift
[26/27] Compiling ChouTi CGPoint+Extensions.swift
[27/27] Compiling ChouTi CGRect+Extensions.swift
Build complete! (11.32s)
Fetching https://github.com/Quick/Quick
Fetching https://github.com/Quick/Nimble
[1/14759] Fetching quick
[2215/34343] Fetching quick, nimble
Fetched https://github.com/Quick/Quick from cache (2.15s)
Fetched https://github.com/Quick/Nimble from cache (2.15s)
Computing version for https://github.com/Quick/Nimble
Computed https://github.com/Quick/Nimble at 8.0.2 (2.66s)
Computing version for https://github.com/Quick/Quick
Computed https://github.com/Quick/Quick at 2.2.1 (0.48s)
Creating working copy for https://github.com/Quick/Nimble
Working copy of https://github.com/Quick/Nimble resolved at 8.0.2
Creating working copy for https://github.com/Quick/Quick
Working copy of https://github.com/Quick/Quick resolved at 2.2.1
Build complete.
{
"dependencies" : [
{
"identity" : "quick",
"requirement" : {
"range" : [
{
"lower_bound" : "2.2.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Quick"
},
{
"identity" : "nimble",
"requirement" : {
"exact" : [
"8.0.2"
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Nimble"
}
],
"manifest_display_name" : "ChouTi",
"name" : "ChouTi",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "ChouTi",
"targets" : [
"ChouTi"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ChouTiTests",
"module_type" : "SwiftTarget",
"name" : "ChouTiTests",
"path" : "Tests/ChouTiTests",
"product_dependencies" : [
"Quick",
"Nimble"
],
"sources" : [
"DataStructure/OrderedDictionaryTests.swift",
"DataStructure/QueueTests.swift",
"DelayTaskTests.swift",
"Extensions/Array+ExtensionsTests.swift",
"Extensions/CGPoint+ExtensionsTests.swift",
"Extensions/CGRect+ExtensionsTests.swift",
"Extensions/Calendar+ExtensionsTests.swift",
"Extensions/Codable+ExtensionsTests.swift",
"Extensions/CollectionType+ExtensionsTests.swift",
"Extensions/Data+ExtensionsTests.swift",
"Extensions/Date+ExtensionsTests.swift",
"Extensions/Decimal+ExtensionsTests.swift",
"Extensions/Dictionary+ExtensionsTests.swift",
"Extensions/DispatchQueue+ExtensionsTests.swift",
"Extensions/NSObject+AssociatedObjectTests.swift",
"Extensions/Numbers+ExtensionsTests.swift",
"Extensions/SequenceType+ExtensionsTests.swift",
"Extensions/String+ExtensionsTests.swift",
"Extensions/TimeZone+ExtensionsTests.swift",
"MathTests.swift",
"Operations/AsyncOperationTests.swift",
"Operations/PipeOperationTests.swift",
"OperatorsTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"ChouTi"
],
"type" : "test"
},
{
"c99name" : "ChouTi",
"module_type" : "SwiftTarget",
"name" : "ChouTi",
"path" : "Sources/ChouTi",
"product_memberships" : [
"ChouTi"
],
"sources" : [
"DataStructures/OrderedDictionary.swift",
"DataStructures/Queue.swift",
"DelayTask.swift",
"Extensions/Array+Extensions.swift",
"Extensions/CGPoint+Extensions.swift",
"Extensions/CGRect+Extensions.swift",
"Extensions/Calendar+Extensions.swift",
"Extensions/Codable+Extensions.swift",
"Extensions/Collection+Extensions.swift",
"Extensions/Data+Extensions.swift",
"Extensions/Date+Extensions.swift",
"Extensions/Decimal+Extensions.swift",
"Extensions/Dictionary+Extensions.swift",
"Extensions/DispatchQueue+Extensions.swift",
"Extensions/NSObject+AssociatedObject.swift",
"Extensions/Numbers+Extensions.swift",
"Extensions/SequenceType+Extensions.swift",
"Extensions/String+Extensions.swift",
"Extensions/TimeZone+Extensions.swift",
"Math.swift",
"Operations/AsyncOperation.swift",
"Operations/OperationQueue.swift",
"Operations/PipeOperation.swift",
"Operators.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Done.