The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Geometria, reference main (17db23), with Swift 6.0 for Linux on 14 Oct 2024 06:34:02 UTC.

Swift 6 data race errors: 3

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[144/273] Compiling Geometria LineMultiplicative.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[145/273] Compiling Geometria LineReal.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[146/273] Compiling Geometria LineSigned.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[147/273] Compiling Geometria LineType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[148/273] Compiling Geometria LineIntersectablePlaneType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[149/273] Compiling Geometria PlaneType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[150/273] Compiling Geometria PointProjectablePlaneType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[151/273] Compiling Geometria AdditiveRectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[152/273] Compiling Geometria ConstructableRectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[153/273] Compiling Geometria DivisibleRectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[154/273] Compiling Geometria RectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[155/273] Compiling Geometria SelfIntersectableRectangleType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[156/273] Compiling Geometria VectorAdditive.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[157/273] Compiling Geometria VectorComparable.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[158/273] Compiling Geometria VectorDivisible.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[159/292] Compiling Geometria LineSegment.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[160/292] Compiling Geometria NCapsule.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[161/292] Compiling Geometria NRectangle.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[162/292] Compiling Geometria NSphere.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[163/292] Compiling Geometria NSquare.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[164/292] Compiling Geometria PairLineIntersection.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[165/292] Compiling Geometria PointCloud.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[166/292] Compiling Geometria PointNormal.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[167/292] Compiling Geometria PointNormalPlane.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[168/292] Compiling Geometria ProjectiveSpace.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[169/292] Compiling Geometria UnitVector.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[170/292] Compiling Geometria BoundableType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[171/292] Compiling Geometria ConvexType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[172/292] Compiling Geometria GeometricType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[173/292] Compiling Geometria LineIntersectableType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[174/292] Compiling Geometria PointProjectableType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[175/292] Compiling Geometria SignedDistanceMeasurableType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[176/292] Compiling Geometria VolumetricType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[177/292] Compiling Geometria DivisibleArithmetic.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[178/292] Compiling Geometria Vector2+Double.swift
[179/292] Compiling Geometria Vector2+Float.swift
[180/292] Compiling Geometria Vector2.swift
[181/292] Compiling Geometria AABB3.swift
[182/292] Compiling Geometria Capsule3.swift
[183/292] Compiling Geometria Cube3.swift
[184/292] Compiling Geometria Cylinder3.swift
[185/292] Compiling Geometria DirectionalRay3.swift
[186/292] Compiling Geometria Disk3.swift
[187/292] Compiling Geometria Ellipse3.swift
[188/292] Compiling Geometria Hyperplane3.swift
[189/292] Compiling Geometria Line3.swift
[190/292] Compiling Geometria LineSegment3.swift
[191/292] Compiling Geometria Orientation3.swift
[192/292] Compiling Geometria PointCloud3.swift
[193/292] Compiling Geometria PointNormalPlane3.swift
[194/292] Compiling Geometria PlaneProjectiveSpace.swift
[195/292] Compiling Geometria SphereCoordinates.swift
[196/292] Compiling Geometria SphereProjectiveSpace.swift
[197/292] Compiling Geometria ProjectivePointNormalPlane3.swift
[198/292] Compiling Geometria Convex3Type.swift
[199/292] Compiling Geometria Line3IntersectableType.swift
[200/292] Compiling Geometria VolumetricType+3D.swift
[201/292] Compiling Geometria Line3FloatingPoint.swift
[202/292] Compiling Geometria Line3Type.swift
[203/292] Compiling Geometria Plane3Type.swift
[204/292] Compiling Geometria PlaneIntersectablePlane3Type.swift
[205/292] Compiling Geometria Vector3Additive.swift
[206/292] Compiling Geometria Vector3FloatingPoint.swift
[207/292] Compiling Geometria Vector3Multiplicative.swift
[208/292] Compiling Geometria Vector3Real.swift
[209/292] Compiling Geometria Vector3Type.swift
[210/292] Compiling Geometria Ray3.swift
[211/292] Compiling Geometria RotationMatrix3.swift
[212/292] Compiling Geometria RotationOrder3.swift
[213/292] Compiling Geometria SIMD3+Double.swift
[214/292] Compiling Geometria Sphere3.swift
[215/292] Compiling Geometria Torus3.swift
[216/292] Compiling Geometria AABB2.swift
[217/292] Compiling Geometria Circle2.swift
[218/292] Compiling Geometria CircleArc2.swift
[219/292] Compiling Geometria ClosedShape2Intersection.swift
[220/292] Compiling Geometria DirectionalRay2.swift
[221/292] Compiling Geometria EdgeInsets2.swift
[222/292] Compiling Geometria Ellipse2.swift
[223/292] Compiling Geometria Hyperplane2.swift
[224/292] Compiling Geometria Line2.swift
[225/292] Compiling Geometria LineIntersectionResult.swift
[226/292] Compiling Geometria LinePolygon2.swift
[227/292] Compiling Geometria LineSegment2.swift
[228/292] Compiling Geometria PointCloud2.swift
[229/292] Compiling Geometria PointNormalPlane2.swift
[230/292] Compiling Geometria Convex2Type.swift
[231/292] Compiling Geometria VolumetricType+2D.swift
[232/292] Compiling Geometria Line2FloatingPoint.swift
[233/292] Compiling Geometria Line2Multiplicative.swift
[234/292] Compiling Geometria Line2Real.swift
[235/292] Emitting module Geometria
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' 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
43 | }
44 |
[236/292] Compiling Geometria Line2Signed.swift
[237/292] Compiling Geometria Line2Type.swift
[238/292] Compiling Geometria PlaneIntersectablePlane2Type.swift
[239/292] Compiling Geometria ConstructableRectangleType+2D.swift
[240/292] Compiling Geometria DivisibleRectangleType+2D.swift
[241/292] Compiling Geometria RectangleType+2D.swift
[242/292] Compiling Geometria Vector2Additive.swift
[243/292] Compiling Geometria Vector2FloatingPoint.swift
[244/292] Compiling Geometria Vector2Multiplicative.swift
[245/292] Compiling Geometria Vector2Real.swift
[246/292] Compiling Geometria Vector2Signed.swift
[247/292] Compiling Geometria Vector2Type.swift
[248/292] Compiling Geometria Ray2.swift
[249/292] Compiling Geometria Rectangle2.swift
[250/292] Compiling Geometria RoundRectangle2.swift
[251/292] Compiling Geometria SIMD2+Double.swift
[252/292] Compiling Geometria Square2.swift
[253/292] Compiling Geometria Stadium2.swift
[254/292] Compiling Geometria Triangle2.swift
[255/292] Compiling Geometria Triangle3.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[256/292] Compiling Geometria Vector3.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[257/292] Compiling Geometria Hyperplane4.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[258/292] Compiling Geometria Vector4Additive.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[259/292] Compiling Geometria Vector4FloatingPoint.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[260/292] Compiling Geometria Vector4Type.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[261/292] Compiling Geometria SIMD4+Double.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[262/292] Compiling Geometria Vector4.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[263/292] Compiling Geometria Angle.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[264/292] Compiling Geometria AngleSweep.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[265/292] Compiling Geometria AABB.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[266/292] Compiling Geometria ConvexLineIntersection.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[267/292] Compiling Geometria DirectionalRay.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[268/292] Compiling Geometria Ellipsoid.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[269/292] Compiling Geometria Hyperplane.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[270/292] Compiling Geometria Line.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[271/292] Compiling Geometria LineIntersection.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[272/292] Compiling Geometria LineIntersectionPointNormal.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[273/292] Compiling Geometria LinePolygon.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' 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
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[274/292] Compiling Geometria VectorFloatingPoint.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[275/292] Compiling Geometria VectorMultiplicative.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[276/292] Compiling Geometria VectorReal.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[277/292] Compiling Geometria VectorSigned.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[278/292] Compiling Geometria VectorTakeable.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[279/292] Compiling Geometria VectorType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[280/292] Compiling Geometria Ray.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[281/292] Compiling Geometria RoundNRectangle.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[282/292] Compiling Geometria Triangle+Coordinates.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[283/292] Compiling Geometria Triangle.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[284/292] Compiling Geometria Matrix2x2.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[285/292] Compiling Geometria Matrix3x2.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[286/292] Compiling Geometria Matrix3x3.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[287/292] Compiling Geometria Matrix4x4.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[288/292] Compiling Geometria MatrixType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[289/292] Compiling Geometria SquareMatrixType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[290/292] Compiling Geometria TransposableMatrixType.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[291/292] Compiling Geometria Comparable+Clamp.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[292/292] Compiling Geometria SignedNumeric+Sign.swift
/host/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' 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
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[294/301] Compiling GeometriaAlgorithms Octree.swift
[295/301] Compiling GeometriaAlgorithms PointCloud2.swift
[296/301] Emitting module GeometriaAlgorithms
[297/301] Compiling GeometriaAlgorithms SpatialTree.swift
[298/301] Compiling GeometriaAlgorithms SpatialTreeType.swift
[299/301] Compiling GeometriaAlgorithms QuadTree.swift
[300/301] Compiling GeometriaAlgorithms KDTree.swift
[301/301] Compiling GeometriaAlgorithms Ellipse2.swift
[303/326] Compiling GeometriaClipping ParametricClipGeometry.swift
[304/326] Compiling GeometriaClipping ParametricSimplex.swift
[305/326] Compiling GeometriaClipping FloatingPoint+Ext.swift
[306/329] Compiling GeometriaClipping Boolean2Parametric.swift
[307/329] Compiling GeometriaClipping Parametric2Simplex.swift
[308/329] Compiling GeometriaClipping ParametricClip2Geometry.swift
[309/329] Compiling GeometriaClipping OrderedSet+Ext.swift
[310/329] Compiling GeometriaClipping Set+Ext.swift
[311/329] Compiling GeometriaClipping Vector2FloatingPoint+Ext.swift
[312/329] Compiling GeometriaClipping ContourManager.swift
[313/329] Compiling GeometriaClipping ExclusiveDisjunction2Parametric.swift
[314/329] Compiling GeometriaClipping Intersection2Parametric.swift
[315/329] Compiling GeometriaClipping Subtraction2Parametric.swift
[316/329] Compiling GeometriaClipping Union2Parametric.swift
[317/329] Compiling GeometriaClipping Capsule2Parametric.swift
[318/329] Compiling GeometriaClipping Circle2Parametric.swift
[319/329] Compiling GeometriaClipping Compound2Periodic.swift
[320/329] Compiling GeometriaClipping LinePolygon2Parametric.swift
[321/329] Compiling GeometriaClipping Simplex2Graph+Creation.swift
[322/329] Compiling GeometriaClipping Simplex2Graph+Recombining.swift
[323/329] Emitting module GeometriaClipping
[324/329] Compiling GeometriaClipping ParametricClip2Intersection.swift
[325/329] Compiling GeometriaClipping CircleArc2Simplex.swift
[326/329] Compiling GeometriaClipping LineSegment2Simplex.swift
[327/329] Compiling GeometriaClipping Simplex2Graph.swift
[328/329] Compiling GeometriaClipping Parametric2Contour.swift
[329/329] Compiling GeometriaClipping Parametric2GeometrySimplex.swift
[331/345] Compiling TestCommons GeometriaClipping+Visualizable.swift
[332/345] Compiling TestCommons TestFixture+AssertionWrapper.swift
[333/347] Compiling TestCommons P5Printer.swift
[334/347] Compiling TestCommons Geometria+Visualizable.swift
[335/347] Compiling TestCommons MersenneTwister.swift
[336/347] Compiling TestCommons P5Printer+Clipping.swift
[337/347] Compiling TestCommons StringBufferConsolePrintTarget.swift
[338/347] Compiling TestCommons MersenneTwister+Geometria.swift
[339/347] Emitting module TestCommons
[340/347] Compiling TestCommons ConsolePrintTarget.swift
[341/347] Compiling TestCommons StandardOutputConsolePrintTarget.swift
[342/347] Compiling TestCommons Assertions.swift
[343/347] Compiling TestCommons ConsolePrintBuffer+Clipping.swift
[344/347] Compiling TestCommons Console+Colors.swift
[345/347] Compiling TestCommons ConsolePrintBuffer.swift
[346/347] Compiling TestCommons TestFixture+Clipping.swift
[347/347] Compiling TestCommons TestFixture.swift
Build complete! (87.43s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-numerics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-numerics.git"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    },
    {
      "identity" : "minip5printer",
      "requirement" : {
        "exact" : [
          "0.0.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/LuizZak/MiniP5Printer.git"
    },
    {
      "identity" : "minidigraph",
      "requirement" : {
        "exact" : [
          "0.8.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/LuizZak/MiniDigraph.git"
    }
  ],
  "manifest_display_name" : "Geometria",
  "name" : "Geometria",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Geometria",
      "targets" : [
        "Geometria"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "GeometriaAlgorithms",
      "targets" : [
        "GeometriaAlgorithms"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "GeometriaClipping",
      "targets" : [
        "GeometriaClipping"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TestCommons",
      "module_type" : "SwiftTarget",
      "name" : "TestCommons",
      "path" : "Sources/TestCommons",
      "product_dependencies" : [
        "MiniP5Printer"
      ],
      "sources" : [
        "Assertions.swift",
        "Console+Clipping/ConsolePrintBuffer+Clipping.swift",
        "Console/Console+Colors.swift",
        "Console/ConsolePrintBuffer.swift",
        "Console/ConsolePrintTarget.swift",
        "Console/StandardOutputConsolePrintTarget.swift",
        "Console/StringBufferConsolePrintTarget.swift",
        "MersenneTwister+Geometria.swift",
        "MersenneTwister.swift",
        "P5Printer+Clipping.swift",
        "P5Printer.swift",
        "TestFixture/Geometria+Visualizable.swift",
        "TestFixture/GeometriaClipping+Visualizable.swift",
        "TestFixture/TestFixture+AssertionWrapper.swift",
        "TestFixture/TestFixture+Clipping.swift",
        "TestFixture/TestFixture.swift"
      ],
      "target_dependencies" : [
        "Geometria",
        "GeometriaAlgorithms",
        "GeometriaClipping"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GeometriaTests",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaTests",
      "path" : "Tests/GeometriaTests",
      "sources" : [
        "2D/AABB2Tests.swift",
        "2D/Circle2Tests.swift",
        "2D/CircleArc2Tests.swift",
        "2D/DirectionalRay2Tests.swift",
        "2D/EdgeInsets2Tests.swift",
        "2D/Ellipse2Tests.swift",
        "2D/Hyperplane2Tests.swift",
        "2D/Line2Tests.swift",
        "2D/LinePolygon2Tests.swift",
        "2D/LineSegment2Tests.swift",
        "2D/Protocols/BaseGeometry/VolumetricType+2DTests.swift",
        "2D/Protocols/Line/Line2FloatingPointTests.swift",
        "2D/Protocols/Line/Line2RealTests.swift",
        "2D/Protocols/Line/Line2SignedTests.swift",
        "2D/Protocols/Plane/PlaneIntersectablePlane2TypeTests.swift",
        "2D/Protocols/Rectangle/ConstructableRectangleType+2DTests.swift",
        "2D/Protocols/Rectangle/DivisibleRectangleType+2DTests.swift",
        "2D/Protocols/Rectangle/RectangleType+2DTests.swift",
        "2D/Protocols/Vector/Vector2FloatingPointTests.swift",
        "2D/Protocols/Vector/Vector2MultiplicativeTests.swift",
        "2D/Protocols/Vector/Vector2TypeTests.swift",
        "2D/Ray2Tests.swift",
        "2D/Rectangle2Tests.swift",
        "2D/RoundRectangle2Tests.swift",
        "2D/SIMD/SIMD2+DoubleTests.swift",
        "2D/Square2Tests.swift",
        "2D/Triangle2Tests.swift",
        "2D/Vector2+DoubleTests.swift",
        "2D/Vector2+FloatTests.swift",
        "2D/Vector2Tests.swift",
        "3D/Capsule3Tests.swift",
        "3D/Cube3Tests.swift",
        "3D/Cylinder3Tests.swift",
        "3D/DirectionalRay3Tests.swift",
        "3D/Disk3Tests.swift",
        "3D/Ellipse3Tests.swift",
        "3D/Hyperplane3Tests.swift",
        "3D/Line3Tests.swift",
        "3D/LineSegment3Tests.swift",
        "3D/ProjectivePointNormalPlane3Tests.swift",
        "3D/Protocols/BaseGeometry/VolumetricType+3DTests.swift",
        "3D/Protocols/Line/Line3FloatingPointTests.swift",
        "3D/Protocols/Plane/PlaneIntersectablePlane3TypeTests.swift",
        "3D/Protocols/Vector/Vector3AdditiveTests.swift",
        "3D/Protocols/Vector/Vector3FloatingPointTests.swift",
        "3D/Protocols/Vector/Vector3MultiplicativeTests.swift",
        "3D/Protocols/Vector/Vector3TypeTests.swift",
        "3D/Ray3Tests.swift",
        "3D/RotationMatrix3Tests.swift",
        "3D/SIMD/SIMD3+DoubleTests.swift",
        "3D/Sphere3Tests.swift",
        "3D/Torus3Tests.swift",
        "3D/Triangle3Tests.swift",
        "3D/Vector3Tests.swift",
        "4D/Protocols/Vector/Vector4AdditiveTests.swift",
        "4D/Protocols/Vector/Vector4FloatingPointTests.swift",
        "4D/Protocols/Vector/Vector4TypeTests.swift",
        "4D/SIMD/SIMD4+DoubleTests.swift",
        "4D/Vector4Tests.swift",
        "Angles/AngleSweepTests.swift",
        "Angles/AngleTests.swift",
        "Generalized/AABBTests.swift",
        "Generalized/ConvexLineIntersectionTests.swift",
        "Generalized/DirectionalRayTests.swift",
        "Generalized/EllipsoidTests.swift",
        "Generalized/HyperplaneTests.swift",
        "Generalized/LinePolygonTests.swift",
        "Generalized/LineSegmentTests.swift",
        "Generalized/LineTests.swift",
        "Generalized/NCapsuleTests.swift",
        "Generalized/NRectangleTests.swift",
        "Generalized/NSphereTests.swift",
        "Generalized/NSquareTests.swift",
        "Generalized/PointCloudTests.swift",
        "Generalized/PointNormalPlaneTests.swift",
        "Generalized/PointNormalTests.swift",
        "Generalized/Property Wrappers/UnitVectorTests.swift",
        "Generalized/Protocols/Geometry/PointProjectableTypeTests.swift",
        "Generalized/Protocols/Geometry/VolumetricTypeTests.swift",
        "Generalized/Protocols/Line/LineCategoryTests.swift",
        "Generalized/Protocols/Line/LineDivisibleTests.swift",
        "Generalized/Protocols/Line/LineFloatingPointTests.swift",
        "Generalized/Protocols/Plane/LineIntersectablePlaneTypeTests.swift",
        "Generalized/Protocols/Plane/PointProjectablePlaneTypeTests.swift",
        "Generalized/Protocols/Rectangle/AdditiveRectangleTypeTests.swift",
        "Generalized/Protocols/Rectangle/ConstructableRectangleTypeTests.swift",
        "Generalized/Protocols/Rectangle/DivisibleRectangleTypeTests.swift",
        "Generalized/Protocols/Vector/VectorAdditiveTests.swift",
        "Generalized/Protocols/Vector/VectorComparableTests.swift",
        "Generalized/Protocols/Vector/VectorDivisibleTests.swift",
        "Generalized/Protocols/Vector/VectorFloatingPointTests.swift",
        "Generalized/Protocols/Vector/VectorMultiplicativeTests.swift",
        "Generalized/Protocols/Vector/VectorSignedTests.swift",
        "Generalized/Protocols/Vector/VectorTakeableTests.swift",
        "Generalized/RayTests.swift",
        "Generalized/RoundNRectangleTests.swift",
        "Generalized/Triangle+CoordinatesTests.swift",
        "Generalized/TriangleTests.swift",
        "Matrices/Matrix2x2Tests.swift",
        "Matrices/Matrix3x2Tests.swift",
        "Matrices/Matrix3x3Tests.swift",
        "Matrices/Matrix4x4Tests.swift",
        "Matrices/Protocols/MatrixTypeTests.swift",
        "PerformanceTests.swift",
        "Utils/Comparable+ClampTests.swift",
        "Utils/SignedNumeric+SignTests.swift"
      ],
      "target_dependencies" : [
        "Geometria",
        "TestCommons"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GeometriaClippingTests",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaClippingTests",
      "path" : "Tests/GeometriaClippingTests",
      "product_dependencies" : [
        "Numerics"
      ],
      "sources" : [
        "2D/Boolean/ExclusiveDisjunction2ParametricTests.swift",
        "2D/Boolean/Intersection2ParametricTests.swift",
        "2D/Boolean/Subtraction2ParametricTests.swift",
        "2D/Boolean/Union2ParametricTests.swift",
        "2D/Geometry/Capsule2ParametricTests.swift",
        "2D/Geometry/Circle2ParametricTests.swift",
        "2D/Geometry/Compound2ParametricTests.swift",
        "2D/Geometry/LinePolygon2ParametricTests.swift",
        "2D/Graph/Simplex2Graph+CreationTests.swift",
        "2D/Parametric2ContourTests.swift",
        "2D/Parametric2GeometrySimplexTests.swift",
        "2D/Protocols/ParametricClip2GeometryTests.swift",
        "2D/Simplexes/CircleArc2SimplexTests.swift",
        "2D/Simplexes/LineSegment2SimplexTests.swift",
        "TestSupport/Capsule2Parametric+Tests.swift",
        "TestSupport/Circle2Parametric+Tests.swift",
        "TestSupport/LinePolygon2Parametric+Tests.swift",
        "Utils/OrderedSet+ExtTests.swift",
        "Utils/Set+ExtTests.swift"
      ],
      "target_dependencies" : [
        "GeometriaClipping",
        "TestCommons"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GeometriaClipping",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaClipping",
      "path" : "Sources/GeometriaClipping",
      "product_dependencies" : [
        "Numerics",
        "MiniDigraph",
        "OrderedCollections"
      ],
      "product_memberships" : [
        "GeometriaClipping"
      ],
      "sources" : [
        "2D/Boolean/ContourManager.swift",
        "2D/Boolean/ExclusiveDisjunction2Parametric.swift",
        "2D/Boolean/Intersection2Parametric.swift",
        "2D/Boolean/Subtraction2Parametric.swift",
        "2D/Boolean/Union2Parametric.swift",
        "2D/Geometry/Capsule2Parametric.swift",
        "2D/Geometry/Circle2Parametric.swift",
        "2D/Geometry/Compound2Periodic.swift",
        "2D/Geometry/LinePolygon2Parametric.swift",
        "2D/Graph/Simplex2Graph+Creation.swift",
        "2D/Graph/Simplex2Graph+Recombining.swift",
        "2D/Graph/Simplex2Graph.swift",
        "2D/Parametric2Contour.swift",
        "2D/Parametric2GeometrySimplex.swift",
        "2D/Protocols/Boolean/Boolean2Parametric.swift",
        "2D/Protocols/Parametric2Simplex.swift",
        "2D/Protocols/ParametricClip2Geometry.swift",
        "2D/Protocols/ParametricClip2Intersection.swift",
        "2D/Simplexes/CircleArc2Simplex.swift",
        "2D/Simplexes/LineSegment2Simplex.swift",
        "Generalized/Protocols/ParametricClipGeometry.swift",
        "Generalized/Protocols/ParametricSimplex.swift",
        "Utils/FloatingPoint+Ext.swift",
        "Utils/OrderedSet+Ext.swift",
        "Utils/Set+Ext.swift",
        "Utils/Vector2FloatingPoint+Ext.swift"
      ],
      "target_dependencies" : [
        "Geometria",
        "GeometriaAlgorithms"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GeometriaAlgorithmsTests",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaAlgorithmsTests",
      "path" : "Tests/GeometriaAlgorithmsTests",
      "product_dependencies" : [
        "Numerics"
      ],
      "sources" : [
        "2D/Ellipse2Tests.swift",
        "2D/PointCloud2Tests.swift",
        "SpatialPartitioning/KDTree/KDTreeTests.swift",
        "SpatialPartitioning/SpatialTree/SpatialTreeTests.swift",
        "TestUtils.swift",
        "TestUtils/MersenneTwister+Geometria.swift",
        "TestUtils/MersenneTwister.swift",
        "TestUtils/SequenceAsserter.swift"
      ],
      "target_dependencies" : [
        "GeometriaAlgorithms",
        "TestCommons"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GeometriaAlgorithms",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaAlgorithms",
      "path" : "Sources/GeometriaAlgorithms",
      "product_dependencies" : [
        "Numerics"
      ],
      "product_memberships" : [
        "GeometriaAlgorithms",
        "GeometriaClipping"
      ],
      "sources" : [
        "2D/Ellipse2.swift",
        "2D/PointCloud2.swift",
        "2D/SpatialPartitioning/QuadTree.swift",
        "3D/SpatialPartitioning/Octree.swift",
        "SpatialPartitioning/KDTree/KDTree.swift",
        "SpatialPartitioning/SpatialTree/Protocols/SpatialTreeType.swift",
        "SpatialPartitioning/SpatialTree/SpatialTree.swift"
      ],
      "target_dependencies" : [
        "Geometria"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Geometria",
      "module_type" : "SwiftTarget",
      "name" : "Geometria",
      "path" : "Sources/Geometria",
      "product_dependencies" : [
        "Numerics"
      ],
      "product_memberships" : [
        "Geometria",
        "GeometriaAlgorithms",
        "GeometriaClipping"
      ],
      "sources" : [
        "2D/AABB2.swift",
        "2D/Circle2.swift",
        "2D/CircleArc2.swift",
        "2D/ClosedShape2Intersection.swift",
        "2D/DirectionalRay2.swift",
        "2D/EdgeInsets2.swift",
        "2D/Ellipse2.swift",
        "2D/Hyperplane2.swift",
        "2D/Line2.swift",
        "2D/LineIntersectionResult.swift",
        "2D/LinePolygon2.swift",
        "2D/LineSegment2.swift",
        "2D/PointCloud2.swift",
        "2D/PointNormalPlane2.swift",
        "2D/Protocols/BaseGeometry/Convex2Type.swift",
        "2D/Protocols/BaseGeometry/VolumetricType+2D.swift",
        "2D/Protocols/Line/Line2FloatingPoint.swift",
        "2D/Protocols/Line/Line2Multiplicative.swift",
        "2D/Protocols/Line/Line2Real.swift",
        "2D/Protocols/Line/Line2Signed.swift",
        "2D/Protocols/Line/Line2Type.swift",
        "2D/Protocols/Plane/PlaneIntersectablePlane2Type.swift",
        "2D/Protocols/Rectangle/ConstructableRectangleType+2D.swift",
        "2D/Protocols/Rectangle/DivisibleRectangleType+2D.swift",
        "2D/Protocols/Rectangle/RectangleType+2D.swift",
        "2D/Protocols/Vector/Vector2Additive.swift",
        "2D/Protocols/Vector/Vector2FloatingPoint.swift",
        "2D/Protocols/Vector/Vector2Multiplicative.swift",
        "2D/Protocols/Vector/Vector2Real.swift",
        "2D/Protocols/Vector/Vector2Signed.swift",
        "2D/Protocols/Vector/Vector2Type.swift",
        "2D/Ray2.swift",
        "2D/Rectangle2.swift",
        "2D/RoundRectangle2.swift",
        "2D/SIMD/SIMD2+Double.swift",
        "2D/Square2.swift",
        "2D/Stadium2.swift",
        "2D/Triangle2.swift",
        "2D/Vector2+Double.swift",
        "2D/Vector2+Float.swift",
        "2D/Vector2.swift",
        "3D/AABB3.swift",
        "3D/Capsule3.swift",
        "3D/Cube3.swift",
        "3D/Cylinder3.swift",
        "3D/DirectionalRay3.swift",
        "3D/Disk3.swift",
        "3D/Ellipse3.swift",
        "3D/Hyperplane3.swift",
        "3D/Line3.swift",
        "3D/LineSegment3.swift",
        "3D/Orientation3.swift",
        "3D/PointCloud3.swift",
        "3D/PointNormalPlane3.swift",
        "3D/Projection/PlaneProjectiveSpace.swift",
        "3D/Projection/SphereCoordinates.swift",
        "3D/Projection/SphereProjectiveSpace.swift",
        "3D/ProjectivePointNormalPlane3.swift",
        "3D/Protocols/BaseGeometry/Convex3Type.swift",
        "3D/Protocols/BaseGeometry/Line3IntersectableType.swift",
        "3D/Protocols/BaseGeometry/VolumetricType+3D.swift",
        "3D/Protocols/Line/Line3FloatingPoint.swift",
        "3D/Protocols/Line/Line3Type.swift",
        "3D/Protocols/Plane/Plane3Type.swift",
        "3D/Protocols/Plane/PlaneIntersectablePlane3Type.swift",
        "3D/Protocols/Vector/Vector3Additive.swift",
        "3D/Protocols/Vector/Vector3FloatingPoint.swift",
        "3D/Protocols/Vector/Vector3Multiplicative.swift",
        "3D/Protocols/Vector/Vector3Real.swift",
        "3D/Protocols/Vector/Vector3Type.swift",
        "3D/Ray3.swift",
        "3D/RotationMatrix3.swift",
        "3D/RotationOrder3.swift",
        "3D/SIMD/SIMD3+Double.swift",
        "3D/Sphere3.swift",
        "3D/Torus3.swift",
        "3D/Triangle3.swift",
        "3D/Vector3.swift",
        "4D/Hyperplane4.swift",
        "4D/Protocols/Vector/Vector4Additive.swift",
        "4D/Protocols/Vector/Vector4FloatingPoint.swift",
        "4D/Protocols/Vector/Vector4Type.swift",
        "4D/SIMD/SIMD4+Double.swift",
        "4D/Vector4.swift",
        "Angles/Angle.swift",
        "Angles/AngleSweep.swift",
        "Generalized/AABB.swift",
        "Generalized/ConvexLineIntersection.swift",
        "Generalized/DirectionalRay.swift",
        "Generalized/Ellipsoid.swift",
        "Generalized/Hyperplane.swift",
        "Generalized/Line.swift",
        "Generalized/LineIntersection.swift",
        "Generalized/LineIntersectionPointNormal.swift",
        "Generalized/LinePolygon.swift",
        "Generalized/LineSegment.swift",
        "Generalized/NCapsule.swift",
        "Generalized/NRectangle.swift",
        "Generalized/NSphere.swift",
        "Generalized/NSquare.swift",
        "Generalized/PairLineIntersection.swift",
        "Generalized/PointCloud.swift",
        "Generalized/PointNormal.swift",
        "Generalized/PointNormalPlane.swift",
        "Generalized/Projection/Protocols/ProjectiveSpace.swift",
        "Generalized/Property Wrappers/UnitVector.swift",
        "Generalized/Protocols/BaseGeometry/BoundableType.swift",
        "Generalized/Protocols/BaseGeometry/ConvexType.swift",
        "Generalized/Protocols/BaseGeometry/GeometricType.swift",
        "Generalized/Protocols/BaseGeometry/LineIntersectableType.swift",
        "Generalized/Protocols/BaseGeometry/PointProjectableType.swift",
        "Generalized/Protocols/BaseGeometry/SignedDistanceMeasurableType.swift",
        "Generalized/Protocols/BaseGeometry/VolumetricType.swift",
        "Generalized/Protocols/DivisibleArithmetic.swift",
        "Generalized/Protocols/Line/LineAdditive.swift",
        "Generalized/Protocols/Line/LineCategory.swift",
        "Generalized/Protocols/Line/LineDivisible.swift",
        "Generalized/Protocols/Line/LineFloatingPoint.swift",
        "Generalized/Protocols/Line/LineMultiplicative.swift",
        "Generalized/Protocols/Line/LineReal.swift",
        "Generalized/Protocols/Line/LineSigned.swift",
        "Generalized/Protocols/Line/LineType.swift",
        "Generalized/Protocols/Plane/LineIntersectablePlaneType.swift",
        "Generalized/Protocols/Plane/PlaneType.swift",
        "Generalized/Protocols/Plane/PointProjectablePlaneType.swift",
        "Generalized/Protocols/Rectangle/AdditiveRectangleType.swift",
        "Generalized/Protocols/Rectangle/ConstructableRectangleType.swift",
        "Generalized/Protocols/Rectangle/DivisibleRectangleType.swift",
        "Generalized/Protocols/Rectangle/RectangleType.swift",
        "Generalized/Protocols/Rectangle/SelfIntersectableRectangleType.swift",
        "Generalized/Protocols/Vector/VectorAdditive.swift",
        "Generalized/Protocols/Vector/VectorComparable.swift",
        "Generalized/Protocols/Vector/VectorDivisible.swift",
        "Generalized/Protocols/Vector/VectorFloatingPoint.swift",
        "Generalized/Protocols/Vector/VectorMultiplicative.swift",
        "Generalized/Protocols/Vector/VectorReal.swift",
        "Generalized/Protocols/Vector/VectorSigned.swift",
        "Generalized/Protocols/Vector/VectorTakeable.swift",
        "Generalized/Protocols/Vector/VectorType.swift",
        "Generalized/Ray.swift",
        "Generalized/RoundNRectangle.swift",
        "Generalized/Triangle+Coordinates.swift",
        "Generalized/Triangle.swift",
        "Matrices/Matrix2x2.swift",
        "Matrices/Matrix3x2.swift",
        "Matrices/Matrix3x3.swift",
        "Matrices/Matrix4x4.swift",
        "Matrices/Protocols/MatrixType.swift",
        "Matrices/Protocols/SquareMatrixType.swift",
        "Matrices/Protocols/TransposableMatrixType.swift",
        "Utils/Comparable+Clamp.swift",
        "Utils/SignedNumeric+Sign.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:b1f5b321a5d74ef5eaf6f5f3afbfebaaa54c7954de6f859009c18a90e0e1c3b4
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.