The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftRuleEngine, reference main (095706), with Swift 6.1 for Linux on 15 Jun 2025 03:22:17 UTC.

Swift 6 data race errors: 36

Build Command

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

Build Log

14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[285/335] Compiling SwiftRuleEngine Equal.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[286/335] Compiling SwiftRuleEngine GreaterThan.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[287/335] Compiling SwiftRuleEngine GreaterThanInclusive.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[288/338] Compiling SwiftRuleEngine JSONPath.swift
[289/338] Compiling SwiftRuleEngine MultiCondition.swift
[290/338] Compiling SwiftRuleEngine Contains.swift
[291/338] Compiling SwiftRuleEngine ContainsRegex.swift
[292/338] Compiling SwiftRuleEngine StartsWith.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContainsRegex.swift:11:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct NotContainsRegex: Operator {
11 |     static let id = OperatorID(rawValue: "not_contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     private let regex: NSRegularExpression
13 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotEqual.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotEqual: Operator {
12 |     static let id = OperatorID(rawValue: "not_equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotIn.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotIn: Operator {
12 |     static let id = OperatorID(rawValue: "not_in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[293/338] Compiling SwiftRuleEngine Rule.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContainsRegex.swift:11:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct NotContainsRegex: Operator {
11 |     static let id = OperatorID(rawValue: "not_contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     private let regex: NSRegularExpression
13 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotEqual.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotEqual: Operator {
12 |     static let id = OperatorID(rawValue: "not_equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotIn.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotIn: Operator {
12 |     static let id = OperatorID(rawValue: "not_in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[294/338] Compiling SwiftRuleEngine RuleDecoder.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContainsRegex.swift:11:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct NotContainsRegex: Operator {
11 |     static let id = OperatorID(rawValue: "not_contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     private let regex: NSRegularExpression
13 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotEqual.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotEqual: Operator {
12 |     static let id = OperatorID(rawValue: "not_equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotIn.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotIn: Operator {
12 |     static let id = OperatorID(rawValue: "not_in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[295/338] Compiling SwiftRuleEngine NotRegex.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct StartsWith: Operator {
12 |     static let id = OperatorID(rawValue: "startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotStartsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[296/338] Compiling SwiftRuleEngine Operator.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct StartsWith: Operator {
12 |     static let id = OperatorID(rawValue: "startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotStartsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[297/338] Compiling SwiftRuleEngine Regex.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct StartsWith: Operator {
12 |     static let id = OperatorID(rawValue: "startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotStartsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[298/338] Compiling SwiftRuleEngine NotContains.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[299/338] Compiling SwiftRuleEngine NotContainsRegex.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[300/338] Compiling SwiftRuleEngine NotEqual.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[301/338] Compiling SwiftRuleEngine NotIn.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[302/338] Compiling SwiftRuleEngine Dictionary+StringSubscriptable.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[303/338] Compiling SwiftRuleEngine In.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[304/338] Compiling SwiftRuleEngine LessThan.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[305/338] Compiling SwiftRuleEngine LessThanInclusive.swift
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
[306/338] Compiling SwiftRuleEngine RuleEngine.swift
[307/338] Compiling SwiftRuleEngine SimpleCondition.swift
[308/338] Compiling SwiftRuleEngine StringSubscriptable.swift
[309/338] Emitting module SwiftRuleEngine
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContainsRegex.swift:11:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct NotContainsRegex: Operator {
11 |     static let id = OperatorID(rawValue: "not_contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     private let regex: NSRegularExpression
13 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotEqual.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotEqual: Operator {
12 |     static let id = OperatorID(rawValue: "not_equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotIn.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotIn: Operator {
12 |     static let id = OperatorID(rawValue: "not_in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotRegex: Operator {
12 |     static let id = OperatorID(rawValue: "not_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Regex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Regex: Operator {
12 |     static let id = OperatorID(rawValue: "regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct StartsWith: Operator {
12 |     static let id = OperatorID(rawValue: "startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotStartsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotRegex: Operator {
12 |     static let id = OperatorID(rawValue: "not_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Regex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Regex: Operator {
12 |     static let id = OperatorID(rawValue: "regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotRegex: Operator {
12 |     static let id = OperatorID(rawValue: "not_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Regex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Regex: Operator {
12 |     static let id = OperatorID(rawValue: "regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotRegex: Operator {
12 |     static let id = OperatorID(rawValue: "not_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Regex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Regex: Operator {
12 |     static let id = OperatorID(rawValue: "regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContainsRegex.swift:11:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct NotContainsRegex: Operator {
11 |     static let id = OperatorID(rawValue: "not_contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     private let regex: NSRegularExpression
13 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotEqual.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotEqual: Operator {
12 |     static let id = OperatorID(rawValue: "not_equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotIn.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotIn: Operator {
12 |     static let id = OperatorID(rawValue: "not_in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContainsRegex.swift:11:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct NotContainsRegex: Operator {
11 |     static let id = OperatorID(rawValue: "not_contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     private let regex: NSRegularExpression
13 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotEqual.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotEqual: Operator {
12 |     static let id = OperatorID(rawValue: "not_equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotIn.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotIn: Operator {
12 |     static let id = OperatorID(rawValue: "not_in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContainsRegex.swift:11:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct NotContainsRegex: Operator {
11 |     static let id = OperatorID(rawValue: "not_contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     private let regex: NSRegularExpression
13 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotEqual.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotEqual: Operator {
12 |     static let id = OperatorID(rawValue: "not_equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotIn.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotIn: Operator {
12 |     static let id = OperatorID(rawValue: "not_in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct StartsWith: Operator {
12 |     static let id = OperatorID(rawValue: "startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotStartsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct StartsWith: Operator {
12 |     static let id = OperatorID(rawValue: "startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotStartsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct StartsWith: Operator {
12 |     static let id = OperatorID(rawValue: "startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotStartsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct EndsWith: Operator {
12 |     static let id = OperatorID(rawValue: "endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/EndsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotEndsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_endswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Equal.swift:13:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | struct Equal: Operator {
13 |     static let id = OperatorID(rawValue: "equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     private let value: AnyCodable
15 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThan: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/GreaterThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct GreaterThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "greater_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/In.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct In: Operator {
12 |     static let id = OperatorID(rawValue: "in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThan.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThan: Operator {
12 |     static let id = OperatorID(rawValue: "less_than")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/LessThanInclusive.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct LessThanInclusive: Operator {
12 |     static let id = OperatorID(rawValue: "less_than_inclusive")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotContains: Operator {
12 |     static let id = OperatorID(rawValue: "not_contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotContainsRegex.swift:11:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | struct NotContainsRegex: Operator {
11 |     static let id = OperatorID(rawValue: "not_contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     private let regex: NSRegularExpression
13 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotEqual.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotEqual: Operator {
12 |     static let id = OperatorID(rawValue: "not_equal")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotIn.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotIn: Operator {
12 |     static let id = OperatorID(rawValue: "not_in")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: Any
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/NotRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct NotRegex: Operator {
12 |     static let id = OperatorID(rawValue: "not_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Regex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Regex: Operator {
12 |     static let id = OperatorID(rawValue: "regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct StartsWith: Operator {
12 |     static let id = OperatorID(rawValue: "startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: String
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/StartsWith.swift:35:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | struct NotStartsWith: Operator {
35 |     static let id = OperatorID(rawValue: "not_startswith")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     private let value: String
37 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Contains.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct Contains: Operator {
12 |     static let id = OperatorID(rawValue: "contains")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let value: AnyCodable
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/ContainsRegex.swift:12:16: warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct ContainsRegex: Operator {
12 |     static let id = OperatorID(rawValue: "contains_regex")
   |                |- warning: static property 'id' is not concurrency-safe because non-'Sendable' type 'OperatorID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'id' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     private let regex: NSRegularExpression
14 |
/host/spi-builder-workspace/Sources/SwiftRuleEngine/Operators/Operator.swift:20:15: note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
18 |
19 |
20 | public struct OperatorID: RawRepresentable, Hashable, Equatable, Decodable {
   |               `- note: consider making struct 'OperatorID' conform to the 'Sendable' protocol
21 |     public var rawValue: String
22 |
Build complete! (132.14s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "600.0.0-prerelease-2024-06-12",
            "upper_bound" : "601.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "SwiftRuleEngine",
  "name" : "SwiftRuleEngine",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "SwiftRuleEngine",
      "targets" : [
        "SwiftRuleEngine"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftRuleEngineMacros",
      "targets" : [
        "SwiftRuleEngineMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftRuleEngineTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftRuleEngineTests",
      "path" : "Tests/SwiftRuleEngineTests",
      "sources" : [
        "JSONPathTests.swift",
        "OperatorTests/ContainsOperatorTests.swift",
        "OperatorTests/ContainsRegexOperatorTests.swift",
        "OperatorTests/EndsWithOperatorTests.swift",
        "OperatorTests/EqualOperatorTests.swift",
        "OperatorTests/GreaterThanInclusiveOperatorTests.swift",
        "OperatorTests/GreaterThanOperatorTests.swift",
        "OperatorTests/InOperatorTests.swift",
        "OperatorTests/LessThanInclusiveOperatorTests.swift",
        "OperatorTests/LessThanOperatorTests.swift",
        "OperatorTests/NotContainsOperatorTests.swift",
        "OperatorTests/NotContainsRegexOperatorTests.swift",
        "OperatorTests/NotEndsWithOperatorTests.swift",
        "OperatorTests/NotEqualOperatorTests.swift",
        "OperatorTests/NotInOperatorTests.swift",
        "OperatorTests/NotRegexOperatorTests.swift",
        "OperatorTests/NotStartsWithOperatorTests.swift",
        "OperatorTests/RegexOperatorTests.swift",
        "OperatorTests/StartsWithOperatorTests.swift",
        "RuleDecoderTests.swift",
        "RuleEnginePerformanceTests.swift",
        "RuleEngineTests/RuleEngineDictionaryTests.swift",
        "RuleEngineTests/RuleEngineSubscriptableTests.swift",
        "SimpleConditionTests.swift"
      ],
      "target_dependencies" : [
        "SwiftRuleEngine"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftRuleEngineMacrosTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftRuleEngineMacrosTests",
      "path" : "Tests/SwiftRuleEngineMacrosTests",
      "product_dependencies" : [
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "StringSubscriptableMacroTests.swift"
      ],
      "target_dependencies" : [
        "SwiftRuleEngineMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftRuleEngineMacros",
      "module_type" : "SwiftTarget",
      "name" : "SwiftRuleEngineMacros",
      "path" : "Sources/SwiftRuleEngineMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftRuleEngine",
        "SwiftRuleEngineMacros"
      ],
      "sources" : [
        "CompilerPluginMain.swift",
        "StringSubscriptableMacro.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "SwiftRuleEngine",
      "module_type" : "SwiftTarget",
      "name" : "SwiftRuleEngine",
      "path" : "Sources/SwiftRuleEngine",
      "product_memberships" : [
        "SwiftRuleEngine"
      ],
      "sources" : [
        "AnyCodable.swift",
        "CodableExtension.swift",
        "Condition.swift",
        "Dictionary+StringSubscriptable.swift",
        "JSONPath.swift",
        "MultiCondition.swift",
        "Operators/Contains.swift",
        "Operators/ContainsRegex.swift",
        "Operators/EndsWith.swift",
        "Operators/Equal.swift",
        "Operators/GreaterThan.swift",
        "Operators/GreaterThanInclusive.swift",
        "Operators/In.swift",
        "Operators/LessThan.swift",
        "Operators/LessThanInclusive.swift",
        "Operators/NotContains.swift",
        "Operators/NotContainsRegex.swift",
        "Operators/NotEqual.swift",
        "Operators/NotIn.swift",
        "Operators/NotRegex.swift",
        "Operators/Operator.swift",
        "Operators/Regex.swift",
        "Operators/StartsWith.swift",
        "Rule.swift",
        "RuleDecoder.swift",
        "RuleEngine.swift",
        "SimpleCondition.swift",
        "StringSubscriptable.swift"
      ],
      "target_dependencies" : [
        "SwiftRuleEngineMacros"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:96978cfc7c1f56c0b12d561b3402e65f41ab79b9797a4fd5965b5c0d586dcecc
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.