This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftSysctl with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 1441

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

1083 |     )
1084 |
1085 |     static let close_wait_timeout: NameOID = .init(
     |                |- warning: static property 'close_wait_timeout' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'close_wait_timeout' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1086 |         name: "close_wait_timeout",
1087 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1090:16: warning: static property 'active_count' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1088 |     )
1089 |
1090 |     static let active_count: NameOID = .init(
     |                |- warning: static property 'active_count' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'active_count' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1091 |         name: "active_count",
1092 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1095:16: warning: static property 'sock_attached_count' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1093 |     )
1094 |
1095 |     static let sock_attached_count: NameOID = .init(
     |                |- warning: static property 'sock_attached_count' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'sock_attached_count' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1096 |         name: "sock_attached_count",
1097 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1100:16: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1098 |     )
1099 |
1100 |     static let debug: NameOID = .init(
     |                |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1101 |         name: "debug",
1102 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1105:16: warning: static property 'log_stats' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1103 |     )
1104 |
1105 |     static let log_stats: NameOID = .init(
     |                |- warning: static property 'log_stats' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_stats' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1106 |         name: "log_stats",
1107 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1110:16: warning: static property 'log_data' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1108 |     )
1109 |
1110 |     static let log_data: NameOID = .init(
     |                |- warning: static property 'log_data' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_data' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1111 |         name: "log_data",
1112 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1115:16: warning: static property 'log_proto' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1113 |     )
1114 |
1115 |     static let log_proto: NameOID = .init(
     |                |- warning: static property 'log_proto' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_proto' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1116 |         name: "log_proto",
1117 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1120:16: warning: static property 'log_pid' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1118 |     )
1119 |
1120 |     static let log_pid: NameOID = .init(
     |                |- warning: static property 'log_pid' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_pid' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1121 |         name: "log_pid",
1122 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1125:16: warning: static property 'log_port' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1123 |     )
1124 |
1125 |     static let log_port: NameOID = .init(
     |                |- warning: static property 'log_port' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_port' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1126 |         name: "log_port",
1127 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1130:16: warning: static property 'log' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1128 |     )
1129 |
1130 |     static let log: NameOID = .init(
     |                |- warning: static property 'log' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1131 |         name: "log",
1132 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1141:16: warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1139 |
1140 | extension OID.Net.RestrictedPort {
1141 |     static let verbose: NameOID = .init(
     |                |- warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'verbose' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1142 |         name: "verbose",
1143 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1146:16: warning: static property 'enforced' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1144 |     )
1145 |
1146 |     static let enforced: NameOID = .init(
     |                |- warning: static property 'enforced' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'enforced' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1147 |         name: "enforced",
1148 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1151:16: warning: static property 'bitmap' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1149 |     )
1150 |
1151 |     static let bitmap: NameOID = .init(
     |                |- warning: static property 'bitmap' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'bitmap' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1152 |         name: "bitmap",
1153 |         format: ""
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1162:16: warning: static property 'enable_l4s' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1160 |
1161 | extension OID.Net.Classq {
1162 |     static let enable_l4s: NameOID = .init(
     |                |- warning: static property 'enable_l4s' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'enable_l4s' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1163 |         name: "enable_l4s",
1164 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1167:16: warning: static property 'll_l4s_update_interval' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1165 |     )
1166 |
1167 |     static let ll_l4s_update_interval: NameOID = .init(
     |                |- warning: static property 'll_l4s_update_interval' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'll_l4s_update_interval' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1168 |         name: "ll_l4s_update_interval",
1169 |         format: "Q"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1172:16: warning: static property 'll_l4s_target_qdelay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1170 |     )
1171 |
1172 |     static let ll_l4s_target_qdelay: NameOID = .init(
     |                |- warning: static property 'll_l4s_target_qdelay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'll_l4s_target_qdelay' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1173 |         name: "ll_l4s_target_qdelay",
1174 |         format: "Q"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1177:16: warning: static property 'll_c_update_interval' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1175 |     )
1176 |
1177 |     static let ll_c_update_interval: NameOID = .init(
     |                |- warning: static property 'll_c_update_interval' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'll_c_update_interval' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1178 |         name: "ll_c_update_interval",
1179 |         format: "Q"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1182:16: warning: static property 'll_c_target_qdelay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1180 |     )
1181 |
1182 |     static let ll_c_target_qdelay: NameOID = .init(
     |                |- warning: static property 'll_c_target_qdelay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'll_c_target_qdelay' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1183 |         name: "ll_c_target_qdelay",
1184 |         format: "Q"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1187:16: warning: static property 'def_l4s_update_interval' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1185 |     )
1186 |
1187 |     static let def_l4s_update_interval: NameOID = .init(
     |                |- warning: static property 'def_l4s_update_interval' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'def_l4s_update_interval' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1188 |         name: "def_l4s_update_interval",
1189 |         format: "Q"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1192:16: warning: static property 'def_l4s_target_qdelay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1190 |     )
1191 |
1192 |     static let def_l4s_target_qdelay: NameOID = .init(
     |                |- warning: static property 'def_l4s_target_qdelay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'def_l4s_target_qdelay' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1193 |         name: "def_l4s_target_qdelay",
1194 |         format: "Q"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1197:16: warning: static property 'def_c_update_interval' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1195 |     )
1196 |
1197 |     static let def_c_update_interval: NameOID = .init(
     |                |- warning: static property 'def_c_update_interval' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'def_c_update_interval' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1198 |         name: "def_c_update_interval",
1199 |         format: "Q"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1202:16: warning: static property 'def_c_target_qdelay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1200 |     )
1201 |
1202 |     static let def_c_target_qdelay: NameOID = .init(
     |                |- warning: static property 'def_c_target_qdelay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'def_c_target_qdelay' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1203 |         name: "def_c_target_qdelay",
1204 |         format: "Q"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1207:16: warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1205 |     )
1206 |
1207 |     static let verbose: NameOID = .init(
     |                |- warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'verbose' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1208 |         name: "verbose",
1209 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1218:16: warning: static property 'netem' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1216 |
1217 | extension OID.Net.Pktsched {
1218 |     static let netem: NameOID = .init(
     |                |- warning: static property 'netem' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'netem' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1219 |         name: "netem",
1220 |         format: "N"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1223:16: warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1221 |     )
1222 |
1223 |     static let verbose: NameOID = .init(
     |                |- warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'verbose' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1224 |         name: "verbose",
1225 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1234:16: warning: static property 'heap_size' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1232 |
1233 | extension OID.Net.Pktsched.Netem {
1234 |     static let heap_size: NameOID = .init(
     |                |- warning: static property 'heap_size' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'heap_size' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1235 |         name: "heap_size",
1236 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1239:16: warning: static property 'sched_output_ival_ms' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1237 |     )
1238 |
1239 |     static let sched_output_ival_ms: NameOID = .init(
     |                |- warning: static property 'sched_output_ival_ms' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'sched_output_ival_ms' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1240 |         name: "sched_output_ival_ms",
1241 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1250:16: warning: static property 'policy' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1248 |
1249 | extension OID.Net.Qos {
1250 |     static let policy: NameOID = .init(
     |                |- warning: static property 'policy' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'policy' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1251 |         name: "policy",
1252 |         format: "N"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1255:16: warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1253 |     )
1254 |
1255 |     static let verbose: NameOID = .init(
     |                |- warning: static property 'verbose' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'verbose' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1256 |         name: "verbose",
1257 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1260:16: warning: static property 'reset_dscp_to_wifi_ac_map' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1258 |     )
1259 |
1260 |     static let reset_dscp_to_wifi_ac_map: NameOID = .init(
     |                |- warning: static property 'reset_dscp_to_wifi_ac_map' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'reset_dscp_to_wifi_ac_map' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1261 |         name: "reset_dscp_to_wifi_ac_map",
1262 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1265:16: warning: static property 'dscp_to_wifi_ac_map' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1263 |     )
1264 |
1265 |     static let dscp_to_wifi_ac_map: NameOID = .init(
     |                |- warning: static property 'dscp_to_wifi_ac_map' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'dscp_to_wifi_ac_map' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1266 |         name: "dscp_to_wifi_ac_map",
1267 |         format: "S"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1270:16: warning: static property 'default_netsvctype_to_dscp_map' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1268 |     )
1269 |
1270 |     static let default_netsvctype_to_dscp_map: NameOID = .init(
     |                |- warning: static property 'default_netsvctype_to_dscp_map' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'default_netsvctype_to_dscp_map' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1271 |         name: "default_netsvctype_to_dscp_map",
1272 |         format: "S"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1281:16: warning: static property 'capable_enabled' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1279 |
1280 | extension OID.Net.Qos.Policy {
1281 |     static let capable_enabled: NameOID = .init(
     |                |- warning: static property 'capable_enabled' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'capable_enabled' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1282 |         name: "capable_enabled",
1283 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1286:16: warning: static property 'wifi_enabled' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1284 |     )
1285 |
1286 |     static let wifi_enabled: NameOID = .init(
     |                |- warning: static property 'wifi_enabled' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'wifi_enabled' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1287 |         name: "wifi_enabled",
1288 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1291:16: warning: static property 'restrict_avapps' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1289 |     )
1290 |
1291 |     static let restrict_avapps: NameOID = .init(
     |                |- warning: static property 'restrict_avapps' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'restrict_avapps' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1292 |         name: "restrict_avapps",
1293 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1296:16: warning: static property 'restricted' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1294 |     )
1295 |
1296 |     static let restricted: NameOID = .init(
     |                |- warning: static property 'restricted' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'restricted' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1297 |         name: "restricted",
1298 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1307:16: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1305 |
1306 | extension OID.Net.Mpklog {
1307 |     static let enabled: NameOID = .init(
     |                |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1308 |         name: "enabled",
1309 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1312:16: warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1310 |     )
1311 |
1312 |     static let type: NameOID = .init(
     |                |- warning: static property 'type' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'type' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1313 |         name: "type",
1314 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1317:16: warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1315 |     )
1316 |
1317 |     static let version: NameOID = .init(
     |                |- warning: static property 'version' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'version' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1318 |         name: "version",
1319 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1328:16: warning: static property 'sendspace' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1326 |
1327 | extension OID.Net.Vsock {
1328 |     static let sendspace: NameOID = .init(
     |                |- warning: static property 'sendspace' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'sendspace' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1329 |         name: "sendspace",
1330 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1333:16: warning: static property 'recvspace' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1331 |     )
1332 |
1333 |     static let recvspace: NameOID = .init(
     |                |- warning: static property 'recvspace' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'recvspace' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1334 |         name: "recvspace",
1335 |         format: "IU"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1338:16: warning: static property 'pcblist' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1336 |     )
1337 |
1338 |     static let pcblist: NameOID = .init(
     |                |- warning: static property 'pcblist' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'pcblist' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1339 |         name: "pcblist",
1340 |         format: "S,xvsockpcb"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1349:16: warning: static property 'log' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1347 |
1348 | extension OID.Net.Tracker {
1349 |     static let log: NameOID = .init(
     |                |- warning: static property 'log' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1350 |         name: "log",
1351 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1354:16: warning: static property 'idle_timeout' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1352 |     )
1353 |
1354 |     static let idle_timeout: NameOID = .init(
     |                |- warning: static property 'idle_timeout' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'idle_timeout' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1355 |         name: "idle_timeout",
1356 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1365:16: warning: static property 'log_level' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1363 |
1364 | extension OID.Net.Soflow {
1365 |     static let log_level: NameOID = .init(
     |                |- warning: static property 'log_level' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_level' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1366 |         name: "log_level",
1367 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1370:16: warning: static property 'log_port' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1368 |     )
1369 |
1370 |     static let log_port: NameOID = .init(
     |                |- warning: static property 'log_port' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_port' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1371 |         name: "log_port",
1372 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1375:16: warning: static property 'log_pid' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1373 |     )
1374 |
1375 |     static let log_pid: NameOID = .init(
     |                |- warning: static property 'log_pid' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_pid' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1376 |         name: "log_pid",
1377 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1380:16: warning: static property 'log_proto' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1378 |     )
1379 |
1380 |     static let log_proto: NameOID = .init(
     |                |- warning: static property 'log_proto' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'log_proto' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1381 |         name: "log_proto",
1382 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1385:16: warning: static property 'nstat_disable' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1383 |     )
1384 |
1385 |     static let nstat_disable: NameOID = .init(
     |                |- warning: static property 'nstat_disable' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'nstat_disable' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1386 |         name: "nstat_disable",
1387 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1390:16: warning: static property 'disable' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1388 |     )
1389 |
1390 |     static let disable: NameOID = .init(
     |                |- warning: static property 'disable' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'disable' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1391 |         name: "disable",
1392 |         format: "I"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1395:16: warning: static property 'count' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1393 |     )
1394 |
1395 |     static let count: NameOID = .init(
     |                |- warning: static property 'count' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'count' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1396 |         name: "count",
1397 |         format: "L"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift:1400:16: warning: static property 'high_water_mark' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
1398 |     )
1399 |
1400 |     static let high_water_mark: NameOID = .init(
     |                |- warning: static property 'high_water_mark' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: annotate 'high_water_mark' with '@MainActor' if property should only be accessed from the main actor
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1401 |         name: "high_water_mark",
1402 |         format: "L"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
[66/71] Compiling SwiftSysctl NodeProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:16:23: warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | extension OID.TopLevel {
16 |     public static let sysctl: OID = .init(
   |                       |- warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         name: "sysctl",
18 |         id: 0,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:11:12: warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | public let sysctl = SysctlNode()
   |            |- warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public let kern = KernNode()
13 | public let vm = VMNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:14:15: note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 12 |
 13 | // MARK: - Sysctl
 14 | public struct SysctlNode: TopNodeProtocol {
    |               `- note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 15 |     public typealias Child = Nodes.Sysctl
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:23:23: warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
21 |     )
22 |
23 |     public static let kern: OID = .init(
   |                       |- warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         name: "kern",
25 |         id: 1,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:12:12: warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
   |            |- warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:25:15: note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 23 |
 24 | // MARK: - Kern
 25 | public struct KernNode: TopNodeProtocol {
    |               `- note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 26 |     public typealias Child = Nodes.Kern
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:30:23: warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     )
29 |
30 |     public static let vm: OID = .init(
   |                       |- warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |         name: "vm",
32 |         id: 2,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:13:12: warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
13 | public let vm = VMNode()
   |            |- warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:36:15: note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 34 |
 35 | // MARK: - VM
 36 | public struct VMNode: TopNodeProtocol {
    |               `- note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 37 |     public typealias Child = Nodes.VM
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:37:23: warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
35 |     )
36 |
37 |     public static let vfs: OID = .init(
   |                       |- warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |         name: "vfs",
39 |         id: 3,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:14:12: warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
12 | public let kern = KernNode()
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
   |            |- warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public let net = NetNode()
16 | public let debug = DebugNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:47:15: note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 45 |
 46 | // MARK: - VFS
 47 | public struct VFSNode: TopNodeProtocol {
    |               `- note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 48 |     public typealias Child = Nodes.VFS
 49 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:44:23: warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
42 |     )
43 |
44 |     public static let net: OID = .init(
   |                       |- warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         name: "net",
46 |         id: 4,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:15:12: warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
   |            |- warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:58:15: note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 56 |
 57 | // MARK: - Net
 58 | public struct NetNode: TopNodeProtocol {
    |               `- note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 59 |     public typealias Child = Nodes.Net
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:51:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     )
50 |
51 |     public static let debug: OID = .init(
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |         name: "debug",
53 |         id: 5,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:16:12: warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
16 | public let debug = DebugNode()
   |            |- warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:69:15: note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 67 |
 68 | // MARK: - Debug
 69 | public struct DebugNode: TopNodeProtocol {
    |               `- note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 70 |     public typealias Child = Nodes.Debug
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:58:23: warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
56 |     )
57 |
58 |     public static let hw: OID = .init(
   |                       |- warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |         name: "hw",
60 |         id: 6,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:17:12: warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
15 | public let net = NetNode()
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
   |            |- warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:80:15: note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 78 |
 79 | // MARK: - HW
 80 | public struct HWNode: TopNodeProtocol {
    |               `- note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 81 |     public typealias Child = Nodes.HW
 82 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:65:23: warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
63 |     )
64 |
65 |     public static let machdep: OID = .init(
   |                       |- warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |         name: "machdep",
67 |         id: 7,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:18:12: warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
   |            |- warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | public let security = SecurityNode()
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:91:15: note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 89 |
 90 | // MARK: - MachDep
 91 | public struct MachDepNode: TopNodeProtocol {
    |               `- note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 92 |     public typealias Child = Nodes.MachDep
 93 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:72:23: warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
70 |     )
71 |
72 |     public static let security: NameOID = .init(
   |                       |- warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |         name: "security",
74 |         format: "N"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:19:12: warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
   |            |- warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:102:15: note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
100 |
101 | // MARK: - Security
102 | public struct SecurityNode: TopNodeProtocol {
    |               `- note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
103 |     public typealias Child = Nodes.Security
104 |
[67/71] Compiling SwiftSysctl SwiftSysctl.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:16:23: warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | extension OID.TopLevel {
16 |     public static let sysctl: OID = .init(
   |                       |- warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         name: "sysctl",
18 |         id: 0,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:11:12: warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | public let sysctl = SysctlNode()
   |            |- warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public let kern = KernNode()
13 | public let vm = VMNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:14:15: note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 12 |
 13 | // MARK: - Sysctl
 14 | public struct SysctlNode: TopNodeProtocol {
    |               `- note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 15 |     public typealias Child = Nodes.Sysctl
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:23:23: warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
21 |     )
22 |
23 |     public static let kern: OID = .init(
   |                       |- warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         name: "kern",
25 |         id: 1,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:12:12: warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
   |            |- warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:25:15: note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 23 |
 24 | // MARK: - Kern
 25 | public struct KernNode: TopNodeProtocol {
    |               `- note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 26 |     public typealias Child = Nodes.Kern
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:30:23: warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     )
29 |
30 |     public static let vm: OID = .init(
   |                       |- warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |         name: "vm",
32 |         id: 2,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:13:12: warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
13 | public let vm = VMNode()
   |            |- warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:36:15: note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 34 |
 35 | // MARK: - VM
 36 | public struct VMNode: TopNodeProtocol {
    |               `- note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 37 |     public typealias Child = Nodes.VM
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:37:23: warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
35 |     )
36 |
37 |     public static let vfs: OID = .init(
   |                       |- warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |         name: "vfs",
39 |         id: 3,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:14:12: warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
12 | public let kern = KernNode()
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
   |            |- warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public let net = NetNode()
16 | public let debug = DebugNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:47:15: note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 45 |
 46 | // MARK: - VFS
 47 | public struct VFSNode: TopNodeProtocol {
    |               `- note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 48 |     public typealias Child = Nodes.VFS
 49 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:44:23: warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
42 |     )
43 |
44 |     public static let net: OID = .init(
   |                       |- warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         name: "net",
46 |         id: 4,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:15:12: warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
   |            |- warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:58:15: note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 56 |
 57 | // MARK: - Net
 58 | public struct NetNode: TopNodeProtocol {
    |               `- note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 59 |     public typealias Child = Nodes.Net
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:51:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     )
50 |
51 |     public static let debug: OID = .init(
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |         name: "debug",
53 |         id: 5,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:16:12: warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
16 | public let debug = DebugNode()
   |            |- warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:69:15: note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 67 |
 68 | // MARK: - Debug
 69 | public struct DebugNode: TopNodeProtocol {
    |               `- note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 70 |     public typealias Child = Nodes.Debug
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:58:23: warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
56 |     )
57 |
58 |     public static let hw: OID = .init(
   |                       |- warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |         name: "hw",
60 |         id: 6,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:17:12: warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
15 | public let net = NetNode()
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
   |            |- warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:80:15: note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 78 |
 79 | // MARK: - HW
 80 | public struct HWNode: TopNodeProtocol {
    |               `- note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 81 |     public typealias Child = Nodes.HW
 82 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:65:23: warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
63 |     )
64 |
65 |     public static let machdep: OID = .init(
   |                       |- warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |         name: "machdep",
67 |         id: 7,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:18:12: warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
   |            |- warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | public let security = SecurityNode()
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:91:15: note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 89 |
 90 | // MARK: - MachDep
 91 | public struct MachDepNode: TopNodeProtocol {
    |               `- note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 92 |     public typealias Child = Nodes.MachDep
 93 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:72:23: warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
70 |     )
71 |
72 |     public static let security: NameOID = .init(
   |                       |- warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |         name: "security",
74 |         format: "N"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:19:12: warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
   |            |- warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:102:15: note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
100 |
101 | // MARK: - Security
102 | public struct SecurityNode: TopNodeProtocol {
    |               `- note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
103 |     public typealias Child = Nodes.Security
104 |
[68/71] Compiling SwiftSysctl SysctlError.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:16:23: warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | extension OID.TopLevel {
16 |     public static let sysctl: OID = .init(
   |                       |- warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         name: "sysctl",
18 |         id: 0,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:11:12: warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | public let sysctl = SysctlNode()
   |            |- warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public let kern = KernNode()
13 | public let vm = VMNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:14:15: note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 12 |
 13 | // MARK: - Sysctl
 14 | public struct SysctlNode: TopNodeProtocol {
    |               `- note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 15 |     public typealias Child = Nodes.Sysctl
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:23:23: warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
21 |     )
22 |
23 |     public static let kern: OID = .init(
   |                       |- warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         name: "kern",
25 |         id: 1,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:12:12: warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
   |            |- warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:25:15: note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 23 |
 24 | // MARK: - Kern
 25 | public struct KernNode: TopNodeProtocol {
    |               `- note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 26 |     public typealias Child = Nodes.Kern
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:30:23: warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     )
29 |
30 |     public static let vm: OID = .init(
   |                       |- warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |         name: "vm",
32 |         id: 2,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:13:12: warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
13 | public let vm = VMNode()
   |            |- warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:36:15: note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 34 |
 35 | // MARK: - VM
 36 | public struct VMNode: TopNodeProtocol {
    |               `- note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 37 |     public typealias Child = Nodes.VM
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:37:23: warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
35 |     )
36 |
37 |     public static let vfs: OID = .init(
   |                       |- warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |         name: "vfs",
39 |         id: 3,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:14:12: warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
12 | public let kern = KernNode()
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
   |            |- warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public let net = NetNode()
16 | public let debug = DebugNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:47:15: note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 45 |
 46 | // MARK: - VFS
 47 | public struct VFSNode: TopNodeProtocol {
    |               `- note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 48 |     public typealias Child = Nodes.VFS
 49 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:44:23: warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
42 |     )
43 |
44 |     public static let net: OID = .init(
   |                       |- warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         name: "net",
46 |         id: 4,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:15:12: warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
   |            |- warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:58:15: note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 56 |
 57 | // MARK: - Net
 58 | public struct NetNode: TopNodeProtocol {
    |               `- note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 59 |     public typealias Child = Nodes.Net
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:51:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     )
50 |
51 |     public static let debug: OID = .init(
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |         name: "debug",
53 |         id: 5,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:16:12: warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
16 | public let debug = DebugNode()
   |            |- warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:69:15: note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 67 |
 68 | // MARK: - Debug
 69 | public struct DebugNode: TopNodeProtocol {
    |               `- note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 70 |     public typealias Child = Nodes.Debug
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:58:23: warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
56 |     )
57 |
58 |     public static let hw: OID = .init(
   |                       |- warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |         name: "hw",
60 |         id: 6,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:17:12: warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
15 | public let net = NetNode()
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
   |            |- warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:80:15: note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 78 |
 79 | // MARK: - HW
 80 | public struct HWNode: TopNodeProtocol {
    |               `- note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 81 |     public typealias Child = Nodes.HW
 82 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:65:23: warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
63 |     )
64 |
65 |     public static let machdep: OID = .init(
   |                       |- warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |         name: "machdep",
67 |         id: 7,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:18:12: warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
   |            |- warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | public let security = SecurityNode()
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:91:15: note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 89 |
 90 | // MARK: - MachDep
 91 | public struct MachDepNode: TopNodeProtocol {
    |               `- note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 92 |     public typealias Child = Nodes.MachDep
 93 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:72:23: warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
70 |     )
71 |
72 |     public static let security: NameOID = .init(
   |                       |- warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |         name: "security",
74 |         format: "N"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:19:12: warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
   |            |- warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:102:15: note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
100 |
101 | // MARK: - Security
102 | public struct SecurityNode: TopNodeProtocol {
    |               `- note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
103 |     public typealias Child = Nodes.Security
104 |
[69/71] Compiling SwiftSysctl TopNodes.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:16:23: warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | extension OID.TopLevel {
16 |     public static let sysctl: OID = .init(
   |                       |- warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         name: "sysctl",
18 |         id: 0,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:11:12: warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | public let sysctl = SysctlNode()
   |            |- warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public let kern = KernNode()
13 | public let vm = VMNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:14:15: note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 12 |
 13 | // MARK: - Sysctl
 14 | public struct SysctlNode: TopNodeProtocol {
    |               `- note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 15 |     public typealias Child = Nodes.Sysctl
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:23:23: warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
21 |     )
22 |
23 |     public static let kern: OID = .init(
   |                       |- warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         name: "kern",
25 |         id: 1,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:12:12: warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
   |            |- warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:25:15: note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 23 |
 24 | // MARK: - Kern
 25 | public struct KernNode: TopNodeProtocol {
    |               `- note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 26 |     public typealias Child = Nodes.Kern
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:30:23: warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     )
29 |
30 |     public static let vm: OID = .init(
   |                       |- warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |         name: "vm",
32 |         id: 2,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:13:12: warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
13 | public let vm = VMNode()
   |            |- warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:36:15: note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 34 |
 35 | // MARK: - VM
 36 | public struct VMNode: TopNodeProtocol {
    |               `- note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 37 |     public typealias Child = Nodes.VM
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:37:23: warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
35 |     )
36 |
37 |     public static let vfs: OID = .init(
   |                       |- warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |         name: "vfs",
39 |         id: 3,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:14:12: warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
12 | public let kern = KernNode()
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
   |            |- warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public let net = NetNode()
16 | public let debug = DebugNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:47:15: note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 45 |
 46 | // MARK: - VFS
 47 | public struct VFSNode: TopNodeProtocol {
    |               `- note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 48 |     public typealias Child = Nodes.VFS
 49 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:44:23: warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
42 |     )
43 |
44 |     public static let net: OID = .init(
   |                       |- warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         name: "net",
46 |         id: 4,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:15:12: warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
   |            |- warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:58:15: note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 56 |
 57 | // MARK: - Net
 58 | public struct NetNode: TopNodeProtocol {
    |               `- note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 59 |     public typealias Child = Nodes.Net
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:51:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     )
50 |
51 |     public static let debug: OID = .init(
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |         name: "debug",
53 |         id: 5,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:16:12: warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
16 | public let debug = DebugNode()
   |            |- warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:69:15: note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 67 |
 68 | // MARK: - Debug
 69 | public struct DebugNode: TopNodeProtocol {
    |               `- note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 70 |     public typealias Child = Nodes.Debug
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:58:23: warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
56 |     )
57 |
58 |     public static let hw: OID = .init(
   |                       |- warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |         name: "hw",
60 |         id: 6,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:17:12: warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
15 | public let net = NetNode()
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
   |            |- warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:80:15: note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 78 |
 79 | // MARK: - HW
 80 | public struct HWNode: TopNodeProtocol {
    |               `- note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 81 |     public typealias Child = Nodes.HW
 82 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:65:23: warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
63 |     )
64 |
65 |     public static let machdep: OID = .init(
   |                       |- warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |         name: "machdep",
67 |         id: 7,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:18:12: warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
   |            |- warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | public let security = SecurityNode()
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:91:15: note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 89 |
 90 | // MARK: - MachDep
 91 | public struct MachDepNode: TopNodeProtocol {
    |               `- note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 92 |     public typealias Child = Nodes.MachDep
 93 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:72:23: warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
70 |     )
71 |
72 |     public static let security: NameOID = .init(
   |                       |- warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |         name: "security",
74 |         format: "N"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:19:12: warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
   |            |- warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:102:15: note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
100 |
101 | // MARK: - Security
102 | public struct SecurityNode: TopNodeProtocol {
    |               `- note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
103 |     public typealias Child = Nodes.Security
104 |
[70/71] Compiling SwiftSysctl Field.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:16:23: warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | extension OID.TopLevel {
16 |     public static let sysctl: OID = .init(
   |                       |- warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         name: "sysctl",
18 |         id: 0,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:11:12: warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | public let sysctl = SysctlNode()
   |            |- warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public let kern = KernNode()
13 | public let vm = VMNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:14:15: note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 12 |
 13 | // MARK: - Sysctl
 14 | public struct SysctlNode: TopNodeProtocol {
    |               `- note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 15 |     public typealias Child = Nodes.Sysctl
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:23:23: warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
21 |     )
22 |
23 |     public static let kern: OID = .init(
   |                       |- warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         name: "kern",
25 |         id: 1,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:12:12: warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
   |            |- warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:25:15: note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 23 |
 24 | // MARK: - Kern
 25 | public struct KernNode: TopNodeProtocol {
    |               `- note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 26 |     public typealias Child = Nodes.Kern
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:30:23: warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     )
29 |
30 |     public static let vm: OID = .init(
   |                       |- warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |         name: "vm",
32 |         id: 2,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:13:12: warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
13 | public let vm = VMNode()
   |            |- warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:36:15: note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 34 |
 35 | // MARK: - VM
 36 | public struct VMNode: TopNodeProtocol {
    |               `- note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 37 |     public typealias Child = Nodes.VM
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:37:23: warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
35 |     )
36 |
37 |     public static let vfs: OID = .init(
   |                       |- warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |         name: "vfs",
39 |         id: 3,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:14:12: warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
12 | public let kern = KernNode()
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
   |            |- warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public let net = NetNode()
16 | public let debug = DebugNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:47:15: note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 45 |
 46 | // MARK: - VFS
 47 | public struct VFSNode: TopNodeProtocol {
    |               `- note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 48 |     public typealias Child = Nodes.VFS
 49 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:44:23: warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
42 |     )
43 |
44 |     public static let net: OID = .init(
   |                       |- warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         name: "net",
46 |         id: 4,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:15:12: warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
   |            |- warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:58:15: note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 56 |
 57 | // MARK: - Net
 58 | public struct NetNode: TopNodeProtocol {
    |               `- note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 59 |     public typealias Child = Nodes.Net
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:51:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     )
50 |
51 |     public static let debug: OID = .init(
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |         name: "debug",
53 |         id: 5,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:16:12: warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
16 | public let debug = DebugNode()
   |            |- warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:69:15: note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 67 |
 68 | // MARK: - Debug
 69 | public struct DebugNode: TopNodeProtocol {
    |               `- note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 70 |     public typealias Child = Nodes.Debug
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:58:23: warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
56 |     )
57 |
58 |     public static let hw: OID = .init(
   |                       |- warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |         name: "hw",
60 |         id: 6,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:17:12: warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
15 | public let net = NetNode()
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
   |            |- warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:80:15: note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 78 |
 79 | // MARK: - HW
 80 | public struct HWNode: TopNodeProtocol {
    |               `- note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 81 |     public typealias Child = Nodes.HW
 82 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:65:23: warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
63 |     )
64 |
65 |     public static let machdep: OID = .init(
   |                       |- warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |         name: "machdep",
67 |         id: 7,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:18:12: warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
   |            |- warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | public let security = SecurityNode()
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:91:15: note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 89 |
 90 | // MARK: - MachDep
 91 | public struct MachDepNode: TopNodeProtocol {
    |               `- note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 92 |     public typealias Child = Nodes.MachDep
 93 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:72:23: warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
70 |     )
71 |
72 |     public static let security: NameOID = .init(
   |                       |- warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |         name: "security",
74 |         format: "N"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:19:12: warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
   |            |- warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:102:15: note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
100 |
101 | // MARK: - Security
102 | public struct SecurityNode: TopNodeProtocol {
    |               `- note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
103 |     public typealias Child = Nodes.Security
104 |
[71/71] Compiling SwiftSysctl Node.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:16:23: warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | extension OID.TopLevel {
16 |     public static let sysctl: OID = .init(
   |                       |- warning: static property 'sysctl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |         name: "sysctl",
18 |         id: 0,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:11:12: warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | public let sysctl = SysctlNode()
   |            |- warning: let 'sysctl' is not concurrency-safe because non-'Sendable' type 'SysctlNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'sysctl' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public let kern = KernNode()
13 | public let vm = VMNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:14:15: note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 12 |
 13 | // MARK: - Sysctl
 14 | public struct SysctlNode: TopNodeProtocol {
    |               `- note: consider making struct 'SysctlNode' conform to the 'Sendable' protocol
 15 |     public typealias Child = Nodes.Sysctl
 16 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:23:23: warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
21 |     )
22 |
23 |     public static let kern: OID = .init(
   |                       |- warning: static property 'kern' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |         name: "kern",
25 |         id: 1,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:12:12: warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
   |            |- warning: let 'kern' is not concurrency-safe because non-'Sendable' type 'KernNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'kern' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:25:15: note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 23 |
 24 | // MARK: - Kern
 25 | public struct KernNode: TopNodeProtocol {
    |               `- note: consider making struct 'KernNode' conform to the 'Sendable' protocol
 26 |     public typealias Child = Nodes.Kern
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:30:23: warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
28 |     )
29 |
30 |     public static let vm: OID = .init(
   |                       |- warning: static property 'vm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |         name: "vm",
32 |         id: 2,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:13:12: warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
11 | public let sysctl = SysctlNode()
12 | public let kern = KernNode()
13 | public let vm = VMNode()
   |            |- warning: let 'vm' is not concurrency-safe because non-'Sendable' type 'VMNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vm' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:36:15: note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 34 |
 35 | // MARK: - VM
 36 | public struct VMNode: TopNodeProtocol {
    |               `- note: consider making struct 'VMNode' conform to the 'Sendable' protocol
 37 |     public typealias Child = Nodes.VM
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:37:23: warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
35 |     )
36 |
37 |     public static let vfs: OID = .init(
   |                       |- warning: static property 'vfs' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |         name: "vfs",
39 |         id: 3,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:14:12: warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
12 | public let kern = KernNode()
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
   |            |- warning: let 'vfs' is not concurrency-safe because non-'Sendable' type 'VFSNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'vfs' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public let net = NetNode()
16 | public let debug = DebugNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:47:15: note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 45 |
 46 | // MARK: - VFS
 47 | public struct VFSNode: TopNodeProtocol {
    |               `- note: consider making struct 'VFSNode' conform to the 'Sendable' protocol
 48 |     public typealias Child = Nodes.VFS
 49 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:44:23: warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
42 |     )
43 |
44 |     public static let net: OID = .init(
   |                       |- warning: static property 'net' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |         name: "net",
46 |         id: 4,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:15:12: warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
13 | public let vm = VMNode()
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
   |            |- warning: let 'net' is not concurrency-safe because non-'Sendable' type 'NetNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'net' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:58:15: note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 56 |
 57 | // MARK: - Net
 58 | public struct NetNode: TopNodeProtocol {
    |               `- note: consider making struct 'NetNode' conform to the 'Sendable' protocol
 59 |     public typealias Child = Nodes.Net
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:51:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
49 |     )
50 |
51 |     public static let debug: OID = .init(
   |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |         name: "debug",
53 |         id: 5,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:16:12: warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
14 | public let vfs = VFSNode()
15 | public let net = NetNode()
16 | public let debug = DebugNode()
   |            |- warning: let 'debug' is not concurrency-safe because non-'Sendable' type 'DebugNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:69:15: note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 67 |
 68 | // MARK: - Debug
 69 | public struct DebugNode: TopNodeProtocol {
    |               `- note: consider making struct 'DebugNode' conform to the 'Sendable' protocol
 70 |     public typealias Child = Nodes.Debug
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:58:23: warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
56 |     )
57 |
58 |     public static let hw: OID = .init(
   |                       |- warning: static property 'hw' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |         name: "hw",
60 |         id: 6,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:17:12: warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
15 | public let net = NetNode()
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
   |            |- warning: let 'hw' is not concurrency-safe because non-'Sendable' type 'HWNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'hw' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:80:15: note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 78 |
 79 | // MARK: - HW
 80 | public struct HWNode: TopNodeProtocol {
    |               `- note: consider making struct 'HWNode' conform to the 'Sendable' protocol
 81 |     public typealias Child = Nodes.HW
 82 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:65:23: warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
63 |     )
64 |
65 |     public static let machdep: OID = .init(
   |                       |- warning: static property 'machdep' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 |         name: "machdep",
67 |         id: 7,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
14 | }
15 |
16 | public struct OID: OIDProtocol {
   |               `- note: consider making struct 'OID' conform to the 'Sendable' protocol
17 |     public let name: String
18 |     public let id: Int32
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:18:12: warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public let debug = DebugNode()
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
   |            |- warning: let 'machdep' is not concurrency-safe because non-'Sendable' type 'MachDepNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'machdep' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | public let security = SecurityNode()
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:91:15: note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 89 |
 90 | // MARK: - MachDep
 91 | public struct MachDepNode: TopNodeProtocol {
    |               `- note: consider making struct 'MachDepNode' conform to the 'Sendable' protocol
 92 |     public typealias Child = Nodes.MachDep
 93 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift:72:23: warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
70 |     )
71 |
72 |     public static let security: NameOID = .init(
   |                       |- warning: static property 'security' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 |         name: "security",
74 |         format: "N"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:39:15: note: consider making struct 'NameOID' conform to the 'Sendable' protocol
37 | }
38 |
39 | public struct NameOID: OIDProtocol {
   |               `- note: consider making struct 'NameOID' conform to the 'Sendable' protocol
40 |     public let name: String
41 |     public let format: String
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift:19:12: warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
17 | public let hw = HWNode()
18 | public let machdep = MachDepNode()
19 | public let security = SecurityNode()
   |            |- warning: let 'security' is not concurrency-safe because non-'Sendable' type 'SecurityNode' may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: annotate 'security' with '@MainActor' if property should only be accessed from the main actor
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift:102:15: note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
100 |
101 | // MARK: - Security
102 | public struct SecurityNode: TopNodeProtocol {
    |               `- note: consider making struct 'SecurityNode' conform to the 'Sendable' protocol
103 |     public typealias Child = Nodes.Security
104 |
Build complete! (23.24s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftSysctl",
  "name" : "SwiftSysctl",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftSysctl",
      "targets" : [
        "SwiftSysctl"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftSysctlTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftSysctlTests",
      "path" : "Tests/SwiftSysctlTests",
      "sources" : [
        "SwiftSysctlTests.swift"
      ],
      "target_dependencies" : [
        "SwiftSysctl"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftSysctl",
      "module_type" : "SwiftTarget",
      "name" : "SwiftSysctl",
      "path" : "Sources/SwiftSysctl",
      "product_memberships" : [
        "SwiftSysctl"
      ],
      "sources" : [
        "Extension/Sysctl+.swift",
        "Node/Node/Nodes+Debug.swift",
        "Node/Node/Nodes+HW.swift",
        "Node/Node/Nodes+Kern.swift",
        "Node/Node/Nodes+MachDep.swift",
        "Node/Node/Nodes+Net.swift",
        "Node/Node/Nodes+Security.swift",
        "Node/Node/Nodes+VFS.swift",
        "Node/Node/Nodes+VM.swift",
        "Node/Node/arm64/Nodes+Debug.arm64.swift",
        "Node/Node/arm64/Nodes+HW.arm64.swift",
        "Node/Node/arm64/Nodes+Kern.arm64.swift",
        "Node/Node/arm64/Nodes+MachDep.arm64.swift",
        "Node/Node/arm64/Nodes+Net.arm64.swift",
        "Node/Node/arm64/Nodes+Security.arm64.swift",
        "Node/Node/arm64/Nodes+Sysctl.arm64.swift",
        "Node/Node/arm64/Nodes+VFS.arm64.swift",
        "Node/Node/arm64/Nodes+VM.arm64.swift",
        "Node/Node/x86_64/Nodes+Debug.x86_64.swift",
        "Node/Node/x86_64/Nodes+HW.x86_64.swift",
        "Node/Node/x86_64/Nodes+Kern.x86_64.swift",
        "Node/Node/x86_64/Nodes+MachDep.x86_64.swift",
        "Node/Node/x86_64/Nodes+Net.x86_64.swift",
        "Node/Node/x86_64/Nodes+Security.x86_64.swift",
        "Node/Node/x86_64/Nodes+Sysctl.x86_64.swift",
        "Node/Node/x86_64/Nodes+VFS.x86_64.swift",
        "Node/Node/x86_64/Nodes+VM.x86_64.swift",
        "Node/Nodes+Sysctl.swift",
        "Node/Nodes.swift",
        "OID/Model/CtlKind.swift",
        "OID/Model/CtlType.swift",
        "OID/OID+Sysctl.swift",
        "OID/OID+TopLevel.swift",
        "OID/OID.swift",
        "OID/OID/OID+Debug.swift",
        "OID/OID/OID+HW.swift",
        "OID/OID/OID+Kern.swift",
        "OID/OID/OID+MachDep.swift",
        "OID/OID/OID+Net.swift",
        "OID/OID/OID+VFS.swift",
        "OID/OID/OID+VM.swift",
        "OID/OID/arm64/OID+Debug.arm64.swift",
        "OID/OID/arm64/OID+HW.arm64.swift",
        "OID/OID/arm64/OID+Kern.arm64.swift",
        "OID/OID/arm64/OID+MachDep.arm64.swift",
        "OID/OID/arm64/OID+Net.arm64.swift",
        "OID/OID/arm64/OID+Security.arm64.swift",
        "OID/OID/arm64/OID+Sysctl.arm64.swift",
        "OID/OID/arm64/OID+VFS.arm64.swift",
        "OID/OID/arm64/OID+VM.arm64.swift",
        "OID/OID/x86_64/OID+Debug.x86_64.swift",
        "OID/OID/x86_64/OID+HW.x86_64.swift",
        "OID/OID/x86_64/OID+Kern.x86_64.swift",
        "OID/OID/x86_64/OID+MachDep.x86_64.swift",
        "OID/OID/x86_64/OID+Net.x86_64.swift",
        "OID/OID/x86_64/OID+Security.x86_64.swift",
        "OID/OID/x86_64/OID+Sysctl.x86_64.swift",
        "OID/OID/x86_64/OID+VFS.x86_64.swift",
        "OID/OID/x86_64/OID+VM.x86_64.swift",
        "Protocol/BitFlags.swift",
        "Protocol/FieldProtocol.swift",
        "Protocol/NodeCollection.swift",
        "Protocol/NodeProtocol.swift",
        "SwiftSysctl.swift",
        "SysctlError.swift",
        "TopNodes.swift",
        "Util/Field.swift",
        "Util/Node.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.