Build Information
Successful build of SwiftDraw, reference main (bf943c
), with Swift 6.0 for macOS (SPM) on 5 Nov 2024 07:34:27 UTC.
Swift 6 data race errors: 11
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[6/88] Compiling SwiftDraw DOM.PresentationAttributes.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[7/88] Compiling SwiftDraw DOM.RadialGradient.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[8/88] Compiling SwiftDraw DOM.SVG.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[9/88] Compiling SwiftDraw DOM.Switch.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[10/88] Compiling SwiftDraw DOM.Text.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[11/88] Compiling SwiftDraw DOM.Use.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[12/88] Compiling SwiftDraw DOM.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[13/88] Compiling SwiftDraw Image+CoreGraphics.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[14/88] Compiling SwiftDraw Parser.XML.Element.swift
[15/88] Compiling SwiftDraw Parser.XML.Filter.swift
[16/88] Compiling SwiftDraw Parser.XML.Image.swift
[17/88] Compiling SwiftDraw Parser.XML.LinearGradient.swift
[18/88] Compiling SwiftDraw Parser.XML.Path.swift
[19/88] Compiling SwiftDraw Parser.XML.Pattern.swift
[20/88] Compiling SwiftDraw Parser.XML.RadialGradient.swift
[21/88] Compiling SwiftDraw Parser.XML.SVG.swift
[22/88] Compiling SwiftDraw CoordinateFormatter.swift
[23/88] Compiling SwiftDraw DOM.Color.swift
[24/88] Compiling SwiftDraw DOM.Element.swift
[25/88] Compiling SwiftDraw DOM.Filter.swift
[26/88] Compiling SwiftDraw DOM.Image.swift
[27/88] Compiling SwiftDraw DOM.LinearGradient.swift
[28/88] Compiling SwiftDraw DOM.Path.swift
[29/88] Compiling SwiftDraw DOM.Pattern.swift
[30/88] Compiling SwiftDraw Parser.XML.Scanner.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
[31/88] Compiling SwiftDraw Parser.XML.StyleSheet.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
[32/88] Compiling SwiftDraw Parser.XML.Text.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
[33/88] Compiling SwiftDraw Parser.XML.Transform.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
[34/88] Compiling SwiftDraw Parser.XML.Use.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
[35/88] Compiling SwiftDraw Parser.XML.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
[36/88] Compiling SwiftDraw Renderer.CGText+Path.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
[37/88] Compiling SwiftDraw Renderer.CGText.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Parser.XML.swift:36:10: warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
34 | case invalid
35 | case missingAttribute(name: String)
36 | case invalidAttribute(name: String, value: Any)
| `- warning: associated value 'invalidAttribute(name:value:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
37 | case invalidElement(name: String, error: Swift.Error, line: Int?, column: Int?)
38 | case invalidDocument(error: Swift.Error?, element: String?, line: Int, column: Int)
[38/88] Compiling SwiftDraw Image.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[39/88] Compiling SwiftDraw LayerTree.Builder.Layer.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[40/88] Compiling SwiftDraw LayerTree.Builder.Path.Arc.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[41/88] Compiling SwiftDraw LayerTree.Builder.Path.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[42/88] Compiling SwiftDraw LayerTree.Builder.Shape.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[43/88] Compiling SwiftDraw LayerTree.Builder.Text.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[44/88] Compiling SwiftDraw LayerTree.Builder.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[45/88] Compiling SwiftDraw LayerTree.Color.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[46/88] Compiling SwiftDraw LayerTree.CommandGenerator.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[47/88] Compiling SwiftDraw LayerTree.CommandOptimizer.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[48/88] Compiling SwiftDraw LayerTree.Gradient.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[49/88] Compiling SwiftDraw LayerTree.Image.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[50/88] Compiling SwiftDraw LayerTree.Layer.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[51/88] Compiling SwiftDraw LayerTree.Path+Bounds.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[52/88] Compiling SwiftDraw LayerTree.Path+Reversed.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[53/88] Compiling SwiftDraw LayerTree.Path+Subpath.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[54/88] Compiling SwiftDraw LayerTree.Path.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[55/88] Compiling SwiftDraw LayerTree.Pattern.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[56/88] Compiling SwiftDraw LayerTree.Shape.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[57/88] Compiling SwiftDraw LayerTree.Transform.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[58/88] Compiling SwiftDraw LayerTree.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[59/88] Compiling SwiftDraw NSImage+Image.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[60/88] Compiling SwiftDraw Parser.XML.Attributes.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[61/88] Compiling SwiftDraw Parser.XML.Color.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.swift:43:14: warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
41 |
42 | enum Error: Swift.Error {
43 | case unsupported(Any)
| `- warning: associated value 'unsupported' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
44 | case invalid(String)
45 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
[62/88] Compiling SwiftDraw CGImage+Mask.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
[63/88] Compiling SwiftDraw CGPath+Segment.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
[64/88] Compiling SwiftDraw CGPattern+Closure.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
[65/88] Compiling SwiftDraw CGTextRenderer+Code.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
[66/88] Compiling SwiftDraw CommandLine+Process.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
[67/88] Compiling SwiftDraw CommandLine.Arguments.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
[68/88] Compiling SwiftDraw CommandLine.Configuration.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
[69/88] Compiling SwiftDraw CommandLine.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:252:16: warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
252 | static let commandLine = Self(rawValue: 1 << 9)
| |- warning: static property 'commandLine' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'commandLine' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | }
254 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/CommandLine.Configuration.swift:251:16: warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | extension SVG.Options {
251 | static let disableTransparencyLayers = Self(rawValue: 1 << 8)
| |- warning: static property 'disableTransparencyLayers' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'disableTransparencyLayers' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 | static let commandLine = Self(rawValue: 1 << 9)
253 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:64:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:170:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |
164 | struct Insets: Equatable {
| `- note: consider making struct 'Insets' conform to the 'Sendable' protocol
165 | public var top: CGFloat
166 | public var left: CGFloat
:
168 | public var right: CGFloat
169 |
170 | public static let zero = Insets(top: 0, left: 0, bottom: 0, right: 0)
| |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'SVG.Insets' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
171 | }
172 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:72:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
71 |
72 | public static let `default`: Options = []
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | }
74 | }
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Image.swift:70:27: warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
62 | }
63 |
64 | public struct Options: OptionSet {
| `- note: consider making struct 'Options' conform to the 'Sendable' protocol
65 | public let rawValue: Int
66 | public init(rawValue: Int) {
:
68 | }
69 |
70 | public static let hideUnsupportedFilters = Options(rawValue: 1 << 0)
| |- warning: static property 'hideUnsupportedFilters' is not concurrency-safe because non-'Sendable' type 'SVG.Options' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hideUnsupportedFilters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | public static let `default`: Options = []
[70/88] Compiling SwiftDraw Renderer.CoreGraphics.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[71/88] Compiling SwiftDraw Renderer.LayerTree.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[72/88] Compiling SwiftDraw Renderer.SFSymbol+CGPath.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[73/88] Compiling SwiftDraw Renderer.SFSymbol.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[74/88] Compiling SwiftDraw Renderer.SVG.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[75/88] Compiling SwiftDraw Renderer.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[76/88] Compiling SwiftDraw Stack.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[77/88] Compiling SwiftDraw UIImage+Image.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/LayerTree.Layer.swift:135:24: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
127 | }
128 |
129 | enum Fill: Equatable {
| `- note: consider making enum 'Fill' conform to the 'Sendable' protocol
130 | case color(Color)
131 | case pattern(Pattern)
:
133 | case radialGradient(RadialGradient)
134 |
135 | static let none = Fill.color(.none)
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LayerTree.FillAttributes.Fill' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 | }
137 | }
[78/88] Compiling SwiftDraw URL+Data.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[79/88] Compiling SwiftDraw URL+Fragment.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[80/88] Compiling SwiftDraw PairedSequence.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[81/88] Compiling SwiftDraw TextOutputStream+StandardError.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[82/88] Compiling SwiftDraw XML.Element.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[83/88] Compiling SwiftDraw XML.Formatter.SVG.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[84/88] Compiling SwiftDraw XML.Formatter.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[85/88] Compiling SwiftDraw XML.SAXParser.swift
/Users/admin/builder/spi-builder-workspace/SwiftDraw/Utilities/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/SwiftDraw/XML.Formatter.SVG.swift:37:14: warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
35 |
36 | enum Error: Swift.Error {
37 | case unsupportedGraphicsElement(DOM.GraphicsElement)
| `- warning: associated value 'unsupportedGraphicsElement' of 'Sendable'-conforming enum 'Error' has non-sendable type 'DOM.GraphicsElement'; this is an error in the Swift 6 language mode
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/SwiftDraw/DOM.Element.swift:47:11: note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
45 | class Element {}
46 |
47 | class GraphicsElement: Element, ElementAttributes {
| `- note: class 'GraphicsElement' does not conform to the 'Sendable' protocol
48 | var id: String?
49 | var `class`: String?
[86/92] Compiling CommandLine TextOutputStream+StandardError.swift
/Users/admin/builder/spi-builder-workspace/CommandLine/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
[87/92] Emitting module CommandLine
/Users/admin/builder/spi-builder-workspace/CommandLine/TextOutputStream+StandardError.swift:47:28: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | struct StandardErrorStream: TextOutputStream {
46 |
47 | fileprivate static var shared = StandardErrorStream()
| |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | func write(_ string: String) {
[88/92] Compiling CommandLine CommandLine.swift
[89/92] Compiling CommandLine main.swift
[89/92] Write Objects.LinkFileList
[90/92] Linking swiftdraw
[91/92] Applying swiftdraw
Build complete! (22.44s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SwiftDraw",
"name" : "SwiftDraw",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "swiftdraw",
"targets" : [
"CommandLine"
],
"type" : {
"executable" : null
}
},
{
"name" : "SwiftDraw",
"targets" : [
"SwiftDraw"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftDrawTests",
"module_type" : "SwiftTarget",
"name" : "SwiftDrawTests",
"path" : "SwiftDrawTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/SwiftDrawTests/Test.bundle",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Bundle+Extensions.swift",
"CGPath+SegmentTests.swift",
"CGRendererTests.swift",
"CommandLine.ArgumentsTests.swift",
"CommandLine.ConfigurationTests.swift",
"CoordinateTests.swift",
"DOM+Extensions.swift",
"DOM.ElementTests.swift",
"DOM.PresentationAttributesTests.swift",
"GradientTests.swift",
"Image+CoreGraphicsTests.swift",
"ImageTests.swift",
"LayerTree.Builder.LayerTests.swift",
"LayerTree.Builder.ShapeTests.swift",
"LayerTree.BuilderTests.swift",
"LayerTree.ColorTests.swift",
"LayerTree.CommandGeneratorTests.swift",
"LayerTree.ImageTests.swift",
"LayerTree.LayerTests.swift",
"LayerTree.Path+BoundsTests.swift",
"LayerTree.Path+ReversedTests.swift",
"LayerTree.Path+SubpathTests.swift",
"LayerTree.PathTests.swift",
"LayerTree.ShapeTests.swift",
"LayerTree.TransformTests.swift",
"MockRenderer.swift",
"NSBitmapImageRep+Extensions.swift",
"NSImage+ImageTests.swift",
"Parser.AttributesTests.swift",
"Parser.GraphicAttributeTests.swift",
"Parser.SVGTests.swift",
"Parser.XML.ColorTests.swift",
"Parser.XML.ElementTests.swift",
"Parser.XML.FilterTests.swift",
"Parser.XML.ImageTests.swift",
"Parser.XML.LinearGradientTests.swift",
"Parser.XML.PathTests.swift",
"Parser.XML.PatternTests.swift",
"Parser.XML.RadialGradientTests.swift",
"Parser.XML.StyleSheetTests.swift",
"Parser.XML.TextTests.swift",
"Parser.XML.TransformTests.swift",
"ParserSVGImageTests.swift",
"Renderer.CGTextTests.swift",
"Renderer.CoreGraphicsTypesTests.swift",
"Renderer.LayerTreeProviderTests.swift",
"Renderer.SFSymbolTests.swift",
"Renderer.SVGTests.swift",
"RendererTests.swift",
"StackTests.swift",
"StyleTests.swift",
"UIImage+ImageTests.swift",
"URL+DataTests.swift",
"UseTests.swift",
"Utilities/PairedSequenceTests.swift",
"ValueParserTests.swift",
"XML.FormatterTests.swift",
"XML.Parser.ScannerTests.swift",
"XML.SAXParserTests.swift"
],
"target_dependencies" : [
"SwiftDraw"
],
"type" : "test"
},
{
"c99name" : "SwiftDraw",
"module_type" : "SwiftTarget",
"name" : "SwiftDraw",
"path" : "SwiftDraw",
"product_memberships" : [
"swiftdraw",
"SwiftDraw"
],
"sources" : [
"CGImage+Mask.swift",
"CGPath+Segment.swift",
"CGPattern+Closure.swift",
"CGTextRenderer+Code.swift",
"CommandLine+Process.swift",
"CommandLine.Arguments.swift",
"CommandLine.Configuration.swift",
"CommandLine.swift",
"CoordinateFormatter.swift",
"DOM.Color.swift",
"DOM.Element.swift",
"DOM.Filter.swift",
"DOM.Image.swift",
"DOM.LinearGradient.swift",
"DOM.Path.swift",
"DOM.Pattern.swift",
"DOM.PresentationAttributes.swift",
"DOM.RadialGradient.swift",
"DOM.SVG.swift",
"DOM.Switch.swift",
"DOM.Text.swift",
"DOM.Use.swift",
"DOM.swift",
"Image+CoreGraphics.swift",
"Image.swift",
"LayerTree.Builder.Layer.swift",
"LayerTree.Builder.Path.Arc.swift",
"LayerTree.Builder.Path.swift",
"LayerTree.Builder.Shape.swift",
"LayerTree.Builder.Text.swift",
"LayerTree.Builder.swift",
"LayerTree.Color.swift",
"LayerTree.CommandGenerator.swift",
"LayerTree.CommandOptimizer.swift",
"LayerTree.Gradient.swift",
"LayerTree.Image.swift",
"LayerTree.Layer.swift",
"LayerTree.Path+Bounds.swift",
"LayerTree.Path+Reversed.swift",
"LayerTree.Path+Subpath.swift",
"LayerTree.Path.swift",
"LayerTree.Pattern.swift",
"LayerTree.Shape.swift",
"LayerTree.Transform.swift",
"LayerTree.swift",
"NSImage+Image.swift",
"Parser.XML.Attributes.swift",
"Parser.XML.Color.swift",
"Parser.XML.Element.swift",
"Parser.XML.Filter.swift",
"Parser.XML.Image.swift",
"Parser.XML.LinearGradient.swift",
"Parser.XML.Path.swift",
"Parser.XML.Pattern.swift",
"Parser.XML.RadialGradient.swift",
"Parser.XML.SVG.swift",
"Parser.XML.Scanner.swift",
"Parser.XML.StyleSheet.swift",
"Parser.XML.Text.swift",
"Parser.XML.Transform.swift",
"Parser.XML.Use.swift",
"Parser.XML.swift",
"Renderer.CGText+Path.swift",
"Renderer.CGText.swift",
"Renderer.CoreGraphics.swift",
"Renderer.LayerTree.swift",
"Renderer.SFSymbol+CGPath.swift",
"Renderer.SFSymbol.swift",
"Renderer.SVG.swift",
"Renderer.swift",
"Stack.swift",
"UIImage+Image.swift",
"URL+Data.swift",
"URL+Fragment.swift",
"Utilities/PairedSequence.swift",
"Utilities/TextOutputStream+StandardError.swift",
"XML.Element.swift",
"XML.Formatter.SVG.swift",
"XML.Formatter.swift",
"XML.SAXParser.swift"
],
"type" : "library"
},
{
"c99name" : "CommandLine",
"module_type" : "SwiftTarget",
"name" : "CommandLine",
"path" : "CommandLine",
"product_memberships" : [
"swiftdraw"
],
"sources" : [
"CommandLine.swift",
"TextOutputStream+StandardError.swift",
"main.swift"
],
"target_dependencies" : [
"SwiftDraw"
],
"type" : "executable"
}
],
"tools_version" : "5.7"
}
Done.