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, reference 0.8.0 (644057), with Swift 6.0 for macOS (SPM) on 7 Jan 2025 19:20:42 UTC.

Swift 6 data race errors: 1512

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

    |                |- note: annotate 'ctlbyfsid' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |         name: "ctlbyfsid",
 38 |         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+VFS.arm64.swift:41:16: warning: static property 'nfs' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |     )
 40 |
 41 |     static let nfs: NameOID = .init(
    |                |- warning: static property 'nfs' 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 'nfs' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |         name: "nfs",
 43 |         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+VFS.arm64.swift:46:16: warning: static property 'noremotehang' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
 44 |     )
 45 |
 46 |     static let noremotehang: NameOID = .init(
    |                |- warning: static property 'noremotehang' 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 'noremotehang' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |         name: "noremotehang",
 48 |         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+VFS.arm64.swift:51:16: warning: static property 'root_unmounted_cleanly' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |     )
 50 |
 51 |     static let root_unmounted_cleanly: NameOID = .init(
    |                |- warning: static property 'root_unmounted_cleanly' 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 'root_unmounted_cleanly' with '@MainActor' 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: "root_unmounted_cleanly",
 53 |         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+VFS.arm64.swift:56:16: warning: static property 'sync_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
 54 |     )
 55 |
 56 |     static let sync_timeout: NameOID = .init(
    |                |- warning: static property 'sync_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 'sync_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
 57 |         name: "sync_timeout",
 58 |         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+VFS.arm64.swift:61:16: warning: static property 'trace_paths' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |     )
 60 |
 61 |     static let trace_paths: NameOID = .init(
    |                |- warning: static property 'trace_paths' 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 'trace_paths' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 |         name: "trace_paths",
 63 |         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+VFS.arm64.swift:66:16: warning: static property 'vfsidlist' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
 64 |     )
 65 |
 66 |     static let vfsidlist: NameOID = .init(
    |                |- warning: static property 'vfsidlist' 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 'vfsidlist' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |         name: "vfsidlist",
 68 |         format: "S,fsid"
/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+VFS.arm64.swift:71:16: warning: static property 'xattr_doubleagent_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
 69 |     )
 70 |
 71 |     static let xattr_doubleagent_enabled: NameOID = .init(
    |                |- warning: static property 'xattr_doubleagent_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 'xattr_doubleagent_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
 72 |         name: "xattr_doubleagent_enabled",
 73 |         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+VFS.arm64.swift:82:16: warning: static property 'server' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
 80 |
 81 | extension OID.VFS.Generic.Nfs {
 82 |     static let server: NameOID = .init(
    |                |- warning: static property 'server' 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 'server' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |         name: "server",
 84 |         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+VFS.arm64.swift:93:16: warning: static property 'async' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | extension OID.VFS.Generic.Nfs.Server {
 93 |     static let async: NameOID = .init(
    |                |- warning: static property 'async' 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 'async' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |         name: "async",
 95 |         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+VFS.arm64.swift:98:16: warning: static property 'debug_ctl' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
 96 |     )
 97 |
 98 |     static let debug_ctl: NameOID = .init(
    |                |- warning: static property 'debug_ctl' 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_ctl' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |         name: "debug_ctl",
100 |         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+VFS.arm64.swift:103:16: warning: static property 'export_hash_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
101 |     )
102 |
103 |     static let export_hash_size: NameOID = .init(
    |                |- warning: static property 'export_hash_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 'export_hash_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
104 |         name: "export_hash_size",
105 |         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+VFS.arm64.swift:108:16: warning: static property 'fsevents' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
106 |     )
107 |
108 |     static let fsevents: NameOID = .init(
    |                |- warning: static property 'fsevents' 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 'fsevents' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |         name: "fsevents",
110 |         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+VFS.arm64.swift:113:16: warning: static property 'gss_context_ttl' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
111 |     )
112 |
113 |     static let gss_context_ttl: NameOID = .init(
    |                |- warning: static property 'gss_context_ttl' 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 'gss_context_ttl' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |         name: "gss_context_ttl",
115 |         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+VFS.arm64.swift:118:16: warning: static property 'nfsd_sock_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
116 |     )
117 |
118 |     static let nfsd_sock_idle_timeout: NameOID = .init(
    |                |- warning: static property 'nfsd_sock_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 'nfsd_sock_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
119 |         name: "nfsd_sock_idle_timeout",
120 |         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+VFS.arm64.swift:123:16: warning: static property 'nfsd_tcp_connections' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
121 |     )
122 |
123 |     static let nfsd_tcp_connections: NameOID = .init(
    |                |- warning: static property 'nfsd_tcp_connections' 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 'nfsd_tcp_connections' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |         name: "nfsd_tcp_connections",
125 |         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+VFS.arm64.swift:128:16: warning: static property 'nfsd_thread_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
126 |     )
127 |
128 |     static let nfsd_thread_count: NameOID = .init(
    |                |- warning: static property 'nfsd_thread_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 'nfsd_thread_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
129 |         name: "nfsd_thread_count",
130 |         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+VFS.arm64.swift:133:16: warning: static property 'nfsd_thread_max' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
131 |     )
132 |
133 |     static let nfsd_thread_max: NameOID = .init(
    |                |- warning: static property 'nfsd_thread_max' 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 'nfsd_thread_max' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |         name: "nfsd_thread_max",
135 |         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+VFS.arm64.swift:138:16: warning: static property 'reqcache_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
136 |     )
137 |
138 |     static let reqcache_size: NameOID = .init(
    |                |- warning: static property 'reqcache_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 'reqcache_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
139 |         name: "reqcache_size",
140 |         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+VFS.arm64.swift:143:16: warning: static property 'request_queue_length' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     )
142 |
143 |     static let request_queue_length: NameOID = .init(
    |                |- warning: static property 'request_queue_length' 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 'request_queue_length' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
144 |         name: "request_queue_length",
145 |         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+VFS.arm64.swift:148:16: warning: static property 'require_resv_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
146 |     )
147 |
148 |     static let require_resv_port: NameOID = .init(
    |                |- warning: static property 'require_resv_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 'require_resv_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
149 |         name: "require_resv_port",
150 |         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+VFS.arm64.swift:153:16: warning: static property 'unprocessed_rpc_current' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
151 |     )
152 |
153 |     static let unprocessed_rpc_current: NameOID = .init(
    |                |- warning: static property 'unprocessed_rpc_current' 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 'unprocessed_rpc_current' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         name: "unprocessed_rpc_current",
155 |         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+VFS.arm64.swift:158:16: warning: static property 'unprocessed_rpc_max' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
156 |     )
157 |
158 |     static let unprocessed_rpc_max: NameOID = .init(
    |                |- warning: static property 'unprocessed_rpc_max' 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 'unprocessed_rpc_max' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |         name: "unprocessed_rpc_max",
160 |         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+VFS.arm64.swift:163:16: warning: static property 'upcall_queue_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
161 |     )
162 |
163 |     static let upcall_queue_count: NameOID = .init(
    |                |- warning: static property 'upcall_queue_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 'upcall_queue_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
164 |         name: "upcall_queue_count",
165 |         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+VFS.arm64.swift:168:16: warning: static property 'upcall_queue_limit' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
166 |     )
167 |
168 |     static let upcall_queue_limit: NameOID = .init(
    |                |- warning: static property 'upcall_queue_limit' 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 'upcall_queue_limit' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
169 |         name: "upcall_queue_limit",
170 |         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+VFS.arm64.swift:173:16: warning: static property 'upcall_queue_max_seen' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
171 |     )
172 |
173 |     static let upcall_queue_max_seen: NameOID = .init(
    |                |- warning: static property 'upcall_queue_max_seen' 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 'upcall_queue_max_seen' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
174 |         name: "upcall_queue_max_seen",
175 |         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+VFS.arm64.swift:178:16: warning: static property 'use_upcall_svc' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
176 |     )
177 |
178 |     static let use_upcall_svc: NameOID = .init(
    |                |- warning: static property 'use_upcall_svc' 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 'use_upcall_svc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 |         name: "use_upcall_svc",
180 |         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+VFS.arm64.swift:183:16: warning: static property 'user_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
181 |     )
182 |
183 |     static let user_stats: NameOID = .init(
    |                |- warning: static property 'user_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 'user_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
184 |         name: "user_stats",
185 |         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+VFS.arm64.swift:188:16: warning: static property 'wg_delay' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
186 |     )
187 |
188 |     static let wg_delay: NameOID = .init(
    |                |- warning: static property 'wg_delay' 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 'wg_delay' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 |         name: "wg_delay",
190 |         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+VFS.arm64.swift:193:16: warning: static property 'wg_delay_v3' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
191 |     )
192 |
193 |     static let wg_delay_v3: NameOID = .init(
    |                |- warning: static property 'wg_delay_v3' 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 'wg_delay_v3' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
194 |         name: "wg_delay_v3",
195 |         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+VFS.arm64.swift:204:16: warning: static property 'nc_smr_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
202 |
203 | extension OID.VFS.Ncstats {
204 |     static let nc_smr_enabled: NameOID = .init(
    |                |- warning: static property 'nc_smr_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 'nc_smr_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
205 |         name: "nc_smr_enabled",
206 |         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+VFS.arm64.swift:215:16: warning: static property 'complete' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
213 |
214 | extension OID.VFS.Nspace {
215 |     static let complete: NameOID = .init(
    |                |- warning: static property 'complete' 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 'complete' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
216 |         name: "complete",
217 |         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+VFS.arm64.swift:220:16: warning: static property 'prevent_materialization' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
218 |     )
219 |
220 |     static let prevent_materialization: NameOID = .init(
    |                |- warning: static property 'prevent_materialization' 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 'prevent_materialization' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 |         name: "prevent_materialization",
222 |         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+VFS.arm64.swift:225:16: warning: static property 'resolver' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
223 |     )
224 |
225 |     static let resolver: NameOID = .init(
    |                |- warning: static property 'resolver' 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 'resolver' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |         name: "resolver",
227 |         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+VFS.arm64.swift:230:16: warning: static property 'thread_prevent_materialization' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
228 |     )
229 |
230 |     static let thread_prevent_materialization: NameOID = .init(
    |                |- warning: static property 'thread_prevent_materialization' 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 'thread_prevent_materialization' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 |         name: "thread_prevent_materialization",
232 |         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+VFS.arm64.swift:241:16: warning: static property 'desired_vnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
239 |
240 | extension OID.VFS.Vnstats {
241 |     static let desired_vnodes: NameOID = .init(
    |                |- warning: static property 'desired_vnodes' 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 'desired_vnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
242 |         name: "desired_vnodes",
243 |         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+VFS.arm64.swift:246:16: warning: static property 'num_allocedvnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
244 |     )
245 |
246 |     static let num_allocedvnodes: NameOID = .init(
    |                |- warning: static property 'num_allocedvnodes' 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 'num_allocedvnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
247 |         name: "num_allocedvnodes",
248 |         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+VFS.arm64.swift:251:16: warning: static property 'num_async_work_vnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
249 |     )
250 |
251 |     static let num_async_work_vnodes: NameOID = .init(
    |                |- warning: static property 'num_async_work_vnodes' 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 'num_async_work_vnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 |         name: "num_async_work_vnodes",
253 |         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+VFS.arm64.swift:256:16: warning: static property 'num_dead_vnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
254 |     )
255 |
256 |     static let num_dead_vnodes: NameOID = .init(
    |                |- warning: static property 'num_dead_vnodes' 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 'num_dead_vnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 |         name: "num_dead_vnodes",
258 |         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+VFS.arm64.swift:261:16: warning: static property 'num_dead_vnodes_to_dealloc' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
259 |     )
260 |
261 |     static let num_dead_vnodes_to_dealloc: NameOID = .init(
    |                |- warning: static property 'num_dead_vnodes_to_dealloc' 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 'num_dead_vnodes_to_dealloc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
262 |         name: "num_dead_vnodes_to_dealloc",
263 |         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+VFS.arm64.swift:266:16: warning: static property 'num_deallocable_busy_vnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
264 |     )
265 |
266 |     static let num_deallocable_busy_vnodes: NameOID = .init(
    |                |- warning: static property 'num_deallocable_busy_vnodes' 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 'num_deallocable_busy_vnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
267 |         name: "num_deallocable_busy_vnodes",
268 |         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+VFS.arm64.swift:271:16: warning: static property 'num_deallocable_vnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
269 |     )
270 |
271 |     static let num_deallocable_vnodes: NameOID = .init(
    |                |- warning: static property 'num_deallocable_vnodes' 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 'num_deallocable_vnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
272 |         name: "num_deallocable_vnodes",
273 |         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+VFS.arm64.swift:276:16: warning: static property 'num_deallocedvnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
274 |     )
275 |
276 |     static let num_deallocedvnodes: NameOID = .init(
    |                |- warning: static property 'num_deallocedvnodes' 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 'num_deallocedvnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
277 |         name: "num_deallocedvnodes",
278 |         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+VFS.arm64.swift:281:16: warning: static property 'num_free_vnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
279 |     )
280 |
281 |     static let num_free_vnodes: NameOID = .init(
    |                |- warning: static property 'num_free_vnodes' 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 'num_free_vnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 |         name: "num_free_vnodes",
283 |         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+VFS.arm64.swift:286:16: warning: static property 'num_newvnode_calls' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
284 |     )
285 |
286 |     static let num_newvnode_calls: NameOID = .init(
    |                |- warning: static property 'num_newvnode_calls' 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 'num_newvnode_calls' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 |         name: "num_newvnode_calls",
288 |         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+VFS.arm64.swift:291:16: warning: static property 'num_newvnode_calls_nodead' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
289 |     )
290 |
291 |     static let num_newvnode_calls_nodead: NameOID = .init(
    |                |- warning: static property 'num_newvnode_calls_nodead' 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 'num_newvnode_calls_nodead' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
292 |         name: "num_newvnode_calls_nodead",
293 |         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+VFS.arm64.swift:296:16: warning: static property 'num_rapid_aging_vnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
294 |     )
295 |
296 |     static let num_rapid_aging_vnodes: NameOID = .init(
    |                |- warning: static property 'num_rapid_aging_vnodes' 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 'num_rapid_aging_vnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
297 |         name: "num_rapid_aging_vnodes",
298 |         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+VFS.arm64.swift:301:16: warning: static property 'num_recycledvnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
299 |     )
300 |
301 |     static let num_recycledvnodes: NameOID = .init(
    |                |- warning: static property 'num_recycledvnodes' 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 'num_recycledvnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
302 |         name: "num_recycledvnodes",
303 |         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+VFS.arm64.swift:306:16: warning: static property 'num_vnodes' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
304 |     )
305 |
306 |     static let num_vnodes: NameOID = .init(
    |                |- warning: static property 'num_vnodes' 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 'num_vnodes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
307 |         name: "num_vnodes",
308 |         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+VFS.arm64.swift:311:16: warning: static property 'num_vnodes_max' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
309 |     )
310 |
311 |     static let num_vnodes_max: NameOID = .init(
    |                |- warning: static property 'num_vnodes_max' 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 'num_vnodes_max' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
312 |         name: "num_vnodes_max",
313 |         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+VFS.arm64.swift:316:16: warning: static property 'num_vnodes_min' is not concurrency-safe because non-'Sendable' type 'NameOID' may have shared mutable state; this is an error in the Swift 6 language mode
314 |     )
315 |
316 |     static let num_vnodes_min: NameOID = .init(
    |                |- warning: static property 'num_vnodes_min' 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 'num_vnodes_min' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 |         name: "num_vnodes_min",
318 |         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+VFS.arm64.swift:321:16: warning: static property 'vn_dealloc_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
319 |     )
320 |
321 |     static let vn_dealloc_level: NameOID = .init(
    |                |- warning: static property 'vn_dealloc_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 'vn_dealloc_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
322 |         name: "vn_dealloc_level",
323 |         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
[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! (18.17s)
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.