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

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftSysctl with Swift 6.0 for tvOS using Xcode 16.0.

Swift 6 data race errors: 1441

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme SwiftSysctl -destination generic/platform=tvos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:631:27: warning: static property '_shared' is not concurrency-safe because non-'Sendable' type 'Nodes.Net.Inet6.Ip6.Addrctlpolicy' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let _shared: Addrctlpolicy = .init()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:630:19: note: consider making struct 'Addrctlpolicy' conform to the 'Sendable' protocol
    public struct Addrctlpolicy: NodeCollection {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:631:27: note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
        public static let _shared: Addrctlpolicy = .init()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:631:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let _shared: Addrctlpolicy = .init()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:637:27: warning: static property '_shared' is not concurrency-safe because non-'Sendable' type 'Nodes.Net.Inet6.Ipsec6' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let _shared: Ipsec6 = .init()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:636:19: note: consider making struct 'Ipsec6' conform to the 'Sendable' protocol
    public struct Ipsec6: NodeCollection {
                  ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:637:27: note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
        public static let _shared: Ipsec6 = .init()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:637:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let _shared: Ipsec6 = .init()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:679:27: warning: static property '_shared' is not concurrency-safe because non-'Sendable' type 'Nodes.Net.Inet6.Icmp6' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let _shared: Icmp6 = .init()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:678:19: note: consider making struct 'Icmp6' conform to the 'Sendable' protocol
    public struct Icmp6: NodeCollection {
                  ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:679:27: note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
        public static let _shared: Icmp6 = .init()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:679:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let _shared: Icmp6 = .init()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:753:27: warning: static property '_shared' is not concurrency-safe because non-'Sendable' type 'Nodes.Net.Systm' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let _shared: Systm = .init()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:752:19: note: consider making struct 'Systm' conform to the 'Sendable' protocol
    public struct Systm: NodeCollection {
                  ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:753:27: note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
        public static let _shared: Systm = .init()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift:753:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let _shared: Systm = .init()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:16:16: warning: static property 'local' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let local: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:16:16: note: annotate 'local' with '@MainActor' if property should only be accessed from the main actor
    static let local: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:16:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let local: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:23:16: warning: static property 'inet' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let inet: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:23:16: note: annotate 'inet' with '@MainActor' if property should only be accessed from the main actor
    static let inet: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let inet: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:30:16: warning: static property 'routetable' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let routetable: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:30:16: note: annotate 'routetable' with '@MainActor' if property should only be accessed from the main actor
    static let routetable: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:30:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let routetable: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:37:16: warning: static property 'link' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let link: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:37:16: note: annotate 'link' with '@MainActor' if property should only be accessed from the main actor
    static let link: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:37:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let link: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:44:16: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let key: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:44:16: note: annotate 'key' with '@MainActor' if property should only be accessed from the main actor
    static let key: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:44:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let key: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:51:16: warning: static property 'inet6' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let inet6: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:51:16: note: annotate 'inet6' with '@MainActor' if property should only be accessed from the main actor
    static let inet6: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let inet6: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:58:16: warning: static property 'systm' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let systm: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:58:16: note: annotate 'systm' with '@MainActor' if property should only be accessed from the main actor
    static let systm: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:58:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let systm: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:71:16: warning: static property 'stream' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stream: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:71:16: note: annotate 'stream' with '@MainActor' if property should only be accessed from the main actor
    static let stream: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:71:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stream: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:78:16: warning: static property 'dgram' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dgram: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:78:16: note: annotate 'dgram' with '@MainActor' if property should only be accessed from the main actor
    static let dgram: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:78:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dgram: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:91:16: warning: static property 'ip' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ip: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:91:16: note: annotate 'ip' with '@MainActor' if property should only be accessed from the main actor
    static let ip: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:91:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ip: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:98:16: warning: static property 'icmp' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let icmp: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:98:16: note: annotate 'icmp' with '@MainActor' if property should only be accessed from the main actor
    static let icmp: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let icmp: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:105:16: warning: static property 'igmp' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let igmp: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:105:16: note: annotate 'igmp' with '@MainActor' if property should only be accessed from the main actor
    static let igmp: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:105:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let igmp: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:112:16: warning: static property 'tcp' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tcp: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:112:16: note: annotate 'tcp' with '@MainActor' if property should only be accessed from the main actor
    static let tcp: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:112:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tcp: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:119:16: warning: static property 'udp' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let udp: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:119:16: note: annotate 'udp' with '@MainActor' if property should only be accessed from the main actor
    static let udp: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:119:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let udp: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:126:16: warning: static property 'ipsec' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ipsec: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:126:16: note: annotate 'ipsec' with '@MainActor' if property should only be accessed from the main actor
    static let ipsec: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:126:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ipsec: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:139:16: warning: static property 'portrange' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let portrange: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:139:16: note: annotate 'portrange' with '@MainActor' if property should only be accessed from the main actor
    static let portrange: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:139:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let portrange: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:146:16: warning: static property 'forwarding' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let forwarding: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:146:16: note: annotate 'forwarding' with '@MainActor' if property should only be accessed from the main actor
    static let forwarding: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:146:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let forwarding: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:153:16: warning: static property 'redirect' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redirect: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:153:16: note: annotate 'redirect' with '@MainActor' if property should only be accessed from the main actor
    static let redirect: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:153:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redirect: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:160:16: warning: static property 'ttl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ttl: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:160:16: note: annotate 'ttl' with '@MainActor' if property should only be accessed from the main actor
    static let ttl: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:160:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ttl: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:167:16: warning: static property 'rtexpire' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rtexpire: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:167:16: note: annotate 'rtexpire' with '@MainActor' if property should only be accessed from the main actor
    static let rtexpire: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:167:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rtexpire: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:174:16: warning: static property 'rtminexpire' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rtminexpire: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:174:16: note: annotate 'rtminexpire' with '@MainActor' if property should only be accessed from the main actor
    static let rtminexpire: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:174:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rtminexpire: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:181:16: warning: static property 'rtmaxcache' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rtmaxcache: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:181:16: note: annotate 'rtmaxcache' with '@MainActor' if property should only be accessed from the main actor
    static let rtmaxcache: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:181:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rtmaxcache: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:188:16: warning: static property 'sourceroute' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sourceroute: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:188:16: note: annotate 'sourceroute' with '@MainActor' if property should only be accessed from the main actor
    static let sourceroute: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:188:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sourceroute: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:195:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:195:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:195:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:202:16: warning: static property 'accept_sourceroute' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept_sourceroute: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:202:16: note: annotate 'accept_sourceroute' with '@MainActor' if property should only be accessed from the main actor
    static let accept_sourceroute: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:202:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept_sourceroute: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:209:16: warning: static property 'gifttl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gifttl: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:209:16: note: annotate 'gifttl' with '@MainActor' if property should only be accessed from the main actor
    static let gifttl: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:209:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gifttl: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:222:16: warning: static property 'maskrepl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let maskrepl: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:222:16: note: annotate 'maskrepl' with '@MainActor' if property should only be accessed from the main actor
    static let maskrepl: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:222:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let maskrepl: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:229:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:229:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:229:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:236:16: warning: static property 'timestamp' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let timestamp: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:236:16: note: annotate 'timestamp' with '@MainActor' if property should only be accessed from the main actor
    static let timestamp: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:236:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let timestamp: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:249:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:249:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:249:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:262:16: warning: static property 'mssdflt' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mssdflt: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:262:16: note: annotate 'mssdflt' with '@MainActor' if property should only be accessed from the main actor
    static let mssdflt: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:262:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mssdflt: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:269:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:269:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:269:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:276:16: warning: static property 'keepidle' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let keepidle: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:276:16: note: annotate 'keepidle' with '@MainActor' if property should only be accessed from the main actor
    static let keepidle: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:276:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let keepidle: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:283:16: warning: static property 'keepintvl' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let keepintvl: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:283:16: note: annotate 'keepintvl' with '@MainActor' if property should only be accessed from the main actor
    static let keepintvl: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:283:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let keepintvl: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:290:16: warning: static property 'sendspace' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sendspace: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:290:16: note: annotate 'sendspace' with '@MainActor' if property should only be accessed from the main actor
    static let sendspace: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:290:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sendspace: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:297:16: warning: static property 'recvspace' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let recvspace: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:297:16: note: annotate 'recvspace' with '@MainActor' if property should only be accessed from the main actor
    static let recvspace: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:297:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let recvspace: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:304:16: warning: static property 'keepinit' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let keepinit: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:304:16: note: annotate 'keepinit' with '@MainActor' if property should only be accessed from the main actor
    static let keepinit: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:304:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let keepinit: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:311:16: warning: static property 'pcblist' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let pcblist: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:311:16: note: annotate 'pcblist' with '@MainActor' if property should only be accessed from the main actor
    static let pcblist: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:311:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pcblist: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:318:16: warning: static property 'v6mssdflt' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let v6mssdflt: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:318:16: note: annotate 'v6mssdflt' with '@MainActor' if property should only be accessed from the main actor
    static let v6mssdflt: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:318:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let v6mssdflt: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:331:16: warning: static property 'checksum' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let checksum: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:331:16: note: annotate 'checksum' with '@MainActor' if property should only be accessed from the main actor
    static let checksum: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:331:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let checksum: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:338:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:338:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:338:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:345:16: warning: static property 'maxdgram' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let maxdgram: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:345:16: note: annotate 'maxdgram' with '@MainActor' if property should only be accessed from the main actor
    static let maxdgram: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:345:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let maxdgram: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:352:16: warning: static property 'recvspace' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let recvspace: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:352:16: note: annotate 'recvspace' with '@MainActor' if property should only be accessed from the main actor
    static let recvspace: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:352:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let recvspace: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:359:16: warning: static property 'pcblist' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let pcblist: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:359:16: note: annotate 'pcblist' with '@MainActor' if property should only be accessed from the main actor
    static let pcblist: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:359:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pcblist: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:372:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:372:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:372:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:379:16: warning: static property 'def_policy' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let def_policy: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:379:16: note: annotate 'def_policy' with '@MainActor' if property should only be accessed from the main actor
    static let def_policy: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:379:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let def_policy: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:386:16: warning: static property 'esp_trans_deflev' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let esp_trans_deflev: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:386:16: note: annotate 'esp_trans_deflev' with '@MainActor' if property should only be accessed from the main actor
    static let esp_trans_deflev: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:386:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let esp_trans_deflev: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:393:16: warning: static property 'esp_net_deflev' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let esp_net_deflev: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:393:16: note: annotate 'esp_net_deflev' with '@MainActor' if property should only be accessed from the main actor
    static let esp_net_deflev: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:393:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let esp_net_deflev: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:400:16: warning: static property 'ah_trans_deflev' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ah_trans_deflev: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:400:16: note: annotate 'ah_trans_deflev' with '@MainActor' if property should only be accessed from the main actor
    static let ah_trans_deflev: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:400:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ah_trans_deflev: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:407:16: warning: static property 'ah_net_deflev' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ah_net_deflev: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:407:16: note: annotate 'ah_net_deflev' with '@MainActor' if property should only be accessed from the main actor
    static let ah_net_deflev: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:407:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ah_net_deflev: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:414:16: warning: static property 'ah_cleartos' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ah_cleartos: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:414:16: note: annotate 'ah_cleartos' with '@MainActor' if property should only be accessed from the main actor
    static let ah_cleartos: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:414:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ah_cleartos: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:421:16: warning: static property 'ah_offsetmask' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ah_offsetmask: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:421:16: note: annotate 'ah_offsetmask' with '@MainActor' if property should only be accessed from the main actor
    static let ah_offsetmask: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:421:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ah_offsetmask: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:428:16: warning: static property 'dfbit' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dfbit: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:428:16: note: annotate 'dfbit' with '@MainActor' if property should only be accessed from the main actor
    static let dfbit: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:428:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dfbit: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:435:16: warning: static property 'ecn' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ecn: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:435:16: note: annotate 'ecn' with '@MainActor' if property should only be accessed from the main actor
    static let ecn: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:435:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ecn: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:442:16: 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
    static let debug: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:442:16: note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
    static let debug: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:442:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let debug: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:449:16: warning: static property 'esp_randpad' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let esp_randpad: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:449:16: note: annotate 'esp_randpad' with '@MainActor' if property should only be accessed from the main actor
    static let esp_randpad: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:449:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let esp_randpad: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:462:16: warning: static property 'generic' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let generic: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:462:16: note: annotate 'generic' with '@MainActor' if property should only be accessed from the main actor
    static let generic: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:462:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let generic: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:469:16: warning: static property 'ether' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ether: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:469:16: note: annotate 'ether' with '@MainActor' if property should only be accessed from the main actor
    static let ether: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:469:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ether: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:482:16: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let system: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:482:16: note: annotate 'system' with '@MainActor' if property should only be accessed from the main actor
    static let system: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:482:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let system: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:489:16: warning: static property 'ifdata' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ifdata: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:489:16: note: annotate 'ifdata' with '@MainActor' if property should only be accessed from the main actor
    static let ifdata: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:489:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ifdata: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:496:16: warning: static property 'ifalldata' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ifalldata: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:496:16: note: annotate 'ifalldata' with '@MainActor' if property should only be accessed from the main actor
    static let ifalldata: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:496:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ifalldata: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:509:16: warning: static property 'ifcount' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ifcount: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:509:16: note: annotate 'ifcount' with '@MainActor' if property should only be accessed from the main actor
    static let ifcount: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:509:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ifcount: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:522:16: warning: static property 'inet' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let inet: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:522:16: note: annotate 'inet' with '@MainActor' if property should only be accessed from the main actor
    static let inet: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:522:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let inet: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:535:16: 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
    static let debug: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:535:16: note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
    static let debug: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:535:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let debug: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:542:16: warning: static property 'spi_trycnt' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spi_trycnt: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:542:16: note: annotate 'spi_trycnt' with '@MainActor' if property should only be accessed from the main actor
    static let spi_trycnt: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:542:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spi_trycnt: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:549:16: warning: static property 'spi_minval' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spi_minval: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:549:16: note: annotate 'spi_minval' with '@MainActor' if property should only be accessed from the main actor
    static let spi_minval: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:549:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spi_minval: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:556:16: warning: static property 'spi_maxval' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spi_maxval: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:556:16: note: annotate 'spi_maxval' with '@MainActor' if property should only be accessed from the main actor
    static let spi_maxval: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:556:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spi_maxval: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:563:16: warning: static property 'int_random' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let int_random: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:563:16: note: annotate 'int_random' with '@MainActor' if property should only be accessed from the main actor
    static let int_random: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:563:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let int_random: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:570:16: warning: static property 'larval_lifetime' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let larval_lifetime: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:570:16: note: annotate 'larval_lifetime' with '@MainActor' if property should only be accessed from the main actor
    static let larval_lifetime: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:570:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let larval_lifetime: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:577:16: warning: static property 'blockacq_count' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blockacq_count: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:577:16: note: annotate 'blockacq_count' with '@MainActor' if property should only be accessed from the main actor
    static let blockacq_count: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:577:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blockacq_count: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:584:16: warning: static property 'blockacq_lifetime' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blockacq_lifetime: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:584:16: note: annotate 'blockacq_lifetime' with '@MainActor' if property should only be accessed from the main actor
    static let blockacq_lifetime: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:584:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blockacq_lifetime: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:591:16: warning: static property 'esp_keymin' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let esp_keymin: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:591:16: note: annotate 'esp_keymin' with '@MainActor' if property should only be accessed from the main actor
    static let esp_keymin: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:591:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let esp_keymin: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:598:16: warning: static property 'esp_auth' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let esp_auth: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:598:16: note: annotate 'esp_auth' with '@MainActor' if property should only be accessed from the main actor
    static let esp_auth: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:598:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let esp_auth: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:605:16: warning: static property 'ah_keymin' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ah_keymin: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:605:16: note: annotate 'ah_keymin' with '@MainActor' if property should only be accessed from the main actor
    static let ah_keymin: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:605:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ah_keymin: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:612:16: warning: static property 'prefered_oldsa' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let prefered_oldsa: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:612:16: note: annotate 'prefered_oldsa' with '@MainActor' if property should only be accessed from the main actor
    static let prefered_oldsa: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:612:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let prefered_oldsa: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:619:16: warning: static property 'natt_keepalive_interval' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let natt_keepalive_interval: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:619:16: note: annotate 'natt_keepalive_interval' with '@MainActor' if property should only be accessed from the main actor
    static let natt_keepalive_interval: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:619:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let natt_keepalive_interval: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:626:16: warning: static property 'pfkeystat' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let pfkeystat: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:626:16: note: annotate 'pfkeystat' with '@MainActor' if property should only be accessed from the main actor
    static let pfkeystat: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:626:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let pfkeystat: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:639:16: warning: static property 'tcp6' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tcp6: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:639:16: note: annotate 'tcp6' with '@MainActor' if property should only be accessed from the main actor
    static let tcp6: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:639:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tcp6: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:646:16: warning: static property 'udp6' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let udp6: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:646:16: note: annotate 'udp6' with '@MainActor' if property should only be accessed from the main actor
    static let udp6: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:646:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let udp6: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:653:16: warning: static property 'ip6' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ip6: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:653:16: note: annotate 'ip6' with '@MainActor' if property should only be accessed from the main actor
    static let ip6: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:653:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ip6: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:660:16: warning: static property 'ipsec6' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ipsec6: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:660:16: note: annotate 'ipsec6' with '@MainActor' if property should only be accessed from the main actor
    static let ipsec6: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:660:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ipsec6: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:667:16: warning: static property 'icmp6' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let icmp6: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:667:16: note: annotate 'icmp6' with '@MainActor' if property should only be accessed from the main actor
    static let icmp6: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:667:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let icmp6: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:680:16: warning: static property 'forwarding' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let forwarding: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:680:16: note: annotate 'forwarding' with '@MainActor' if property should only be accessed from the main actor
    static let forwarding: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:680:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let forwarding: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:687:16: warning: static property 'redirect' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redirect: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:687:16: note: annotate 'redirect' with '@MainActor' if property should only be accessed from the main actor
    static let redirect: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:687:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redirect: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:694:16: warning: static property 'hlim' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let hlim: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:694:16: note: annotate 'hlim' with '@MainActor' if property should only be accessed from the main actor
    static let hlim: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:694:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let hlim: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:701:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:701:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:701:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:708:16: warning: static property 'maxfragpackets' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let maxfragpackets: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:708:16: note: annotate 'maxfragpackets' with '@MainActor' if property should only be accessed from the main actor
    static let maxfragpackets: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:708:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let maxfragpackets: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:715:16: warning: static property 'accept_rtadv' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let accept_rtadv: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:715:16: note: annotate 'accept_rtadv' with '@MainActor' if property should only be accessed from the main actor
    static let accept_rtadv: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:715:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let accept_rtadv: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:722:16: warning: static property 'keepfaith' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let keepfaith: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:722:16: note: annotate 'keepfaith' with '@MainActor' if property should only be accessed from the main actor
    static let keepfaith: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:722:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let keepfaith: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:729:16: warning: static property 'log_interval' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let log_interval: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:729:16: note: annotate 'log_interval' with '@MainActor' if property should only be accessed from the main actor
    static let log_interval: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:729:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let log_interval: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:736:16: warning: static property 'hdrnestlimit' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let hdrnestlimit: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:736:16: note: annotate 'hdrnestlimit' with '@MainActor' if property should only be accessed from the main actor
    static let hdrnestlimit: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:736:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let hdrnestlimit: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:743:16: warning: static property 'dad_count' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dad_count: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:743:16: note: annotate 'dad_count' with '@MainActor' if property should only be accessed from the main actor
    static let dad_count: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:743:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dad_count: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:750:16: warning: static property 'auto_flowlabel' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let auto_flowlabel: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:750:16: note: annotate 'auto_flowlabel' with '@MainActor' if property should only be accessed from the main actor
    static let auto_flowlabel: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:750:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let auto_flowlabel: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:757:16: warning: static property 'defmcasthlim' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defmcasthlim: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:757:16: note: annotate 'defmcasthlim' with '@MainActor' if property should only be accessed from the main actor
    static let defmcasthlim: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:757:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defmcasthlim: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:764:16: warning: static property 'gifhlim' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let gifhlim: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:764:16: note: annotate 'gifhlim' with '@MainActor' if property should only be accessed from the main actor
    static let gifhlim: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:764:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let gifhlim: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:771:16: warning: static property 'kame_version' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let kame_version: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:771:16: note: annotate 'kame_version' with '@MainActor' if property should only be accessed from the main actor
    static let kame_version: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:771:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let kame_version: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:778:16: warning: static property 'use_deprecated' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let use_deprecated: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:778:16: note: annotate 'use_deprecated' with '@MainActor' if property should only be accessed from the main actor
    static let use_deprecated: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:778:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let use_deprecated: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:785:16: warning: static property 'rr_prune' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rr_prune: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:785:16: note: annotate 'rr_prune' with '@MainActor' if property should only be accessed from the main actor
    static let rr_prune: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:785:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rr_prune: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:792:16: warning: static property 'v6only' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let v6only: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:792:16: note: annotate 'v6only' with '@MainActor' if property should only be accessed from the main actor
    static let v6only: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:792:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let v6only: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:799:16: warning: static property 'rtexpire' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rtexpire: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:799:16: note: annotate 'rtexpire' with '@MainActor' if property should only be accessed from the main actor
    static let rtexpire: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:799:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rtexpire: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:806:16: warning: static property 'rtminexpire' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rtminexpire: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:806:16: note: annotate 'rtminexpire' with '@MainActor' if property should only be accessed from the main actor
    static let rtminexpire: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:806:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rtminexpire: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:813:16: warning: static property 'rtmaxcache' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rtmaxcache: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:813:16: note: annotate 'rtmaxcache' with '@MainActor' if property should only be accessed from the main actor
    static let rtmaxcache: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:813:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rtmaxcache: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:820:16: warning: static property 'use_tempaddr' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let use_tempaddr: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:820:16: note: annotate 'use_tempaddr' with '@MainActor' if property should only be accessed from the main actor
    static let use_tempaddr: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:820:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let use_tempaddr: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:827:16: warning: static property 'temppltime' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let temppltime: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:827:16: note: annotate 'temppltime' with '@MainActor' if property should only be accessed from the main actor
    static let temppltime: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:827:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let temppltime: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:834:16: warning: static property 'tempvltime' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let tempvltime: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:834:16: note: annotate 'tempvltime' with '@MainActor' if property should only be accessed from the main actor
    static let tempvltime: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:834:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let tempvltime: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:841:16: warning: static property 'auto_linklocal' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let auto_linklocal: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:841:16: note: annotate 'auto_linklocal' with '@MainActor' if property should only be accessed from the main actor
    static let auto_linklocal: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:841:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let auto_linklocal: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:848:16: warning: static property 'rip6stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rip6stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:848:16: note: annotate 'rip6stats' with '@MainActor' if property should only be accessed from the main actor
    static let rip6stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:848:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rip6stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:855:16: warning: static property 'prefer_tempaddr' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let prefer_tempaddr: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:855:16: note: annotate 'prefer_tempaddr' with '@MainActor' if property should only be accessed from the main actor
    static let prefer_tempaddr: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:855:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let prefer_tempaddr: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:862:16: warning: static property 'addrctlpolicy' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let addrctlpolicy: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:862:16: note: annotate 'addrctlpolicy' with '@MainActor' if property should only be accessed from the main actor
    static let addrctlpolicy: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:862:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let addrctlpolicy: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:869:16: warning: static property 'use_defaultzone' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let use_defaultzone: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:869:16: note: annotate 'use_defaultzone' with '@MainActor' if property should only be accessed from the main actor
    static let use_defaultzone: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:869:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let use_defaultzone: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:876:16: warning: static property 'maxfrags' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let maxfrags: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:876:16: note: annotate 'maxfrags' with '@MainActor' if property should only be accessed from the main actor
    static let maxfrags: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:876:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let maxfrags: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:883:16: warning: static property 'mcast_pmtu' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mcast_pmtu: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:883:16: note: annotate 'mcast_pmtu' with '@MainActor' if property should only be accessed from the main actor
    static let mcast_pmtu: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:883:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mcast_pmtu: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:890:16: warning: static property 'neighborgcthresh' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let neighborgcthresh: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:890:16: note: annotate 'neighborgcthresh' with '@MainActor' if property should only be accessed from the main actor
    static let neighborgcthresh: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:890:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let neighborgcthresh: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:897:16: warning: static property 'maxifprefixes' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let maxifprefixes: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:897:16: note: annotate 'maxifprefixes' with '@MainActor' if property should only be accessed from the main actor
    static let maxifprefixes: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:897:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let maxifprefixes: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:904:16: warning: static property 'maxifdefrouters' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let maxifdefrouters: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:904:16: note: annotate 'maxifdefrouters' with '@MainActor' if property should only be accessed from the main actor
    static let maxifdefrouters: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:904:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let maxifdefrouters: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:911:16: warning: static property 'maxdynroutes' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let maxdynroutes: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:911:16: note: annotate 'maxdynroutes' with '@MainActor' if property should only be accessed from the main actor
    static let maxdynroutes: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:911:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let maxdynroutes: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:918:16: warning: static property 'ula_use_tempaddr' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ula_use_tempaddr: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:918:16: note: annotate 'ula_use_tempaddr' with '@MainActor' if property should only be accessed from the main actor
    static let ula_use_tempaddr: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:918:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ula_use_tempaddr: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:931:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:931:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:931:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:938:16: warning: static property 'def_policy' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let def_policy: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:938:16: note: annotate 'def_policy' with '@MainActor' if property should only be accessed from the main actor
    static let def_policy: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:938:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let def_policy: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:945:16: warning: static property 'esp_trans_deflev' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let esp_trans_deflev: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:945:16: note: annotate 'esp_trans_deflev' with '@MainActor' if property should only be accessed from the main actor
    static let esp_trans_deflev: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:945:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let esp_trans_deflev: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:952:16: warning: static property 'esp_net_deflev' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let esp_net_deflev: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:952:16: note: annotate 'esp_net_deflev' with '@MainActor' if property should only be accessed from the main actor
    static let esp_net_deflev: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:952:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let esp_net_deflev: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:959:16: warning: static property 'ah_trans_deflev' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ah_trans_deflev: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:959:16: note: annotate 'ah_trans_deflev' with '@MainActor' if property should only be accessed from the main actor
    static let ah_trans_deflev: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:959:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ah_trans_deflev: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:966:16: warning: static property 'ah_net_deflev' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ah_net_deflev: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:966:16: note: annotate 'ah_net_deflev' with '@MainActor' if property should only be accessed from the main actor
    static let ah_net_deflev: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:966:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ah_net_deflev: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:973:16: warning: static property 'ecn' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let ecn: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:973:16: note: annotate 'ecn' with '@MainActor' if property should only be accessed from the main actor
    static let ecn: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:973:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let ecn: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:980:16: 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
    static let debug: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:980:16: note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
    static let debug: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:980:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let debug: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:987:16: warning: static property 'esp_randpad' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let esp_randpad: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:987:16: note: annotate 'esp_randpad' with '@MainActor' if property should only be accessed from the main actor
    static let esp_randpad: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:987:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let esp_randpad: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1000:16: warning: static property 'stats' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let stats: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1000:16: note: annotate 'stats' with '@MainActor' if property should only be accessed from the main actor
    static let stats: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1000:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let stats: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1007:16: warning: static property 'rediraccept' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let rediraccept: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1007:16: note: annotate 'rediraccept' with '@MainActor' if property should only be accessed from the main actor
    static let rediraccept: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1007:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let rediraccept: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1014:16: warning: static property 'redirtimeout' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redirtimeout: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1014:16: note: annotate 'redirtimeout' with '@MainActor' if property should only be accessed from the main actor
    static let redirtimeout: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1014:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redirtimeout: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1021:16: warning: static property 'nd6_prune' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_prune: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1021:16: note: annotate 'nd6_prune' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_prune: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1021:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_prune: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1028:16: warning: static property 'nd6_delay' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_delay: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1028:16: note: annotate 'nd6_delay' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_delay: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1028:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_delay: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1035:16: warning: static property 'nd6_umaxtries' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_umaxtries: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1035:16: note: annotate 'nd6_umaxtries' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_umaxtries: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1035:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_umaxtries: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1042:16: warning: static property 'nd6_mmaxtries' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_mmaxtries: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1042:16: note: annotate 'nd6_mmaxtries' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_mmaxtries: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1042:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_mmaxtries: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1049:16: warning: static property 'nd6_useloopback' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_useloopback: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1049:16: note: annotate 'nd6_useloopback' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_useloopback: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1049:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_useloopback: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1056:16: warning: static property 'nodeinfo' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nodeinfo: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1056:16: note: annotate 'nodeinfo' with '@MainActor' if property should only be accessed from the main actor
    static let nodeinfo: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1056:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nodeinfo: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1063:16: warning: static property 'errppslimit' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let errppslimit: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1063:16: note: annotate 'errppslimit' with '@MainActor' if property should only be accessed from the main actor
    static let errppslimit: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1063:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let errppslimit: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1070:16: warning: static property 'nd6_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
    static let nd6_debug: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1070:16: note: annotate 'nd6_debug' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_debug: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1070:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_debug: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1077:16: warning: static property 'nd6_drlist' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_drlist: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1077:16: note: annotate 'nd6_drlist' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_drlist: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1077:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_drlist: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1084:16: warning: static property 'nd6_prlist' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_prlist: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1084:16: note: annotate 'nd6_prlist' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_prlist: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1084:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_prlist: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1091:16: warning: static property 'nd6_accept_6to4' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_accept_6to4: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1091:16: note: annotate 'nd6_accept_6to4' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_accept_6to4: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1091:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_accept_6to4: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1098:16: warning: static property 'nd6_optimistic_dad' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_optimistic_dad: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1098:16: note: annotate 'nd6_optimistic_dad' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_optimistic_dad: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1098:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_optimistic_dad: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1105:16: warning: static property 'errppslimit_random_incr' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let errppslimit_random_incr: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1105:16: note: annotate 'errppslimit_random_incr' with '@MainActor' if property should only be accessed from the main actor
    static let errppslimit_random_incr: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1105:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let errppslimit_random_incr: OID = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1112:16: warning: static property 'nd6_onlink_ns_rfc4861' is not concurrency-safe because non-'Sendable' type 'OID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let nd6_onlink_ns_rfc4861: OID = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift:16:15: note: consider making struct 'OID' conform to the 'Sendable' protocol
public struct OID: OIDProtocol {
              ^
                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1112:16: note: annotate 'nd6_onlink_ns_rfc4861' with '@MainActor' if property should only be accessed from the main actor
    static let nd6_onlink_ns_rfc4861: OID = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift:1112:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let nd6_onlink_ns_rfc4861: OID = .init(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Security.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Extension/Sysctl+.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Debug.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+HW.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Kern.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+MachDep.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Net.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Security.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+VFS.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+VM.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+Debug.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+HW.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+Kern.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+MachDep.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+Net.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+Security.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+Sysctl.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+VFS.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/arm64/Nodes+VM.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+Debug.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+HW.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+Kern.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+MachDep.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+Net.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+Security.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+Sysctl.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+VFS.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/x86_64/Nodes+VM.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes+Sysctl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Nodes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/Model/CtlKind.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/Model/CtlType.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+Sysctl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID+TopLevel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Debug.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+HW.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Kern.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+MachDep.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+Net.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+VFS.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/OID+VM.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Debug.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+HW.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Kern.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+MachDep.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Net.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Security.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+Sysctl.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+VFS.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/arm64/OID+VM.arm64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+Debug.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+HW.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+Kern.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+MachDep.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+Net.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+Security.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+Sysctl.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+VFS.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/OID/OID/x86_64/OID+VM.x86_64.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Protocol/BitFlags.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Protocol/FieldProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Protocol/NodeCollection.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Protocol/NodeProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/SwiftSysctl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/SysctlError.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/TopNodes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Util/Field.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Util/Node.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftSysctl -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Sysctl+.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+Debug.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+HW.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+Kern.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+MachDep.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+Net.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+Security.o -index-unit-output-path /SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Sysctl+.o -index-unit-output-path /SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+Debug.o -index-unit-output-path /SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+HW.o -index-unit-output-path /SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+Kern.o -index-unit-output-path /SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+MachDep.o -index-unit-output-path /SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+Net.o -index-unit-output-path /SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/Nodes+Security.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Security.swift:13:27: warning: static property '_shared' is not concurrency-safe because non-'Sendable' type 'Nodes.Security' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let _shared: Security = .init()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Security.swift:12:19: note: consider making struct 'Security' conform to the 'Sendable' protocol
    public struct Security: NodeCollection {
                  ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Security.swift:13:27: note: annotate '_shared' with '@MainActor' if property should only be accessed from the main actor
        public static let _shared: Security = .init()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftSysctl/Node/Node/Nodes+Security.swift:13:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let _shared: Security = .init()
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftSysctl (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriver\ Compilation\ Requirements SwiftSysctl normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name SwiftSysctl -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling OID+Sysctl.x86_64.swift, OID+VFS.x86_64.swift, OID+VM.x86_64.swift, BitFlags.swift, FieldProtocol.swift, NodeCollection.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SwiftSysctl-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl-Swift.h (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SwiftSysctl-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling Nodes+MachDep.x86_64.swift, Nodes+Net.x86_64.swift, Nodes+Security.x86_64.swift, Nodes+Sysctl.x86_64.swift, Nodes+VFS.x86_64.swift, Nodes+VM.x86_64.swift, Nodes+Sysctl.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftmodule (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftdoc (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.abi.json (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftsourceinfo (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling NodeProtocol.swift, SwiftSysctl.swift, SysctlError.swift, TopNodes.swift, Field.swift, Node.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriverJobDiscovery normal arm64 Compiling Nodes.swift, CtlKind.swift, CtlType.swift, OID+Sysctl.swift, OID+TopLevel.swift, OID.swift, OID+Debug.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriverJobDiscovery normal arm64 Compiling OID+VM.arm64.swift, OID+Debug.x86_64.swift, OID+HW.x86_64.swift, OID+Kern.x86_64.swift, OID+MachDep.x86_64.swift, OID+Net.x86_64.swift, OID+Security.x86_64.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriverJobDiscovery normal arm64 Compiling OID+HW.swift, OID+Kern.swift, OID+MachDep.swift, OID+Net.swift, OID+VFS.swift, OID+VM.swift, OID+Debug.arm64.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriverJobDiscovery normal arm64 Compiling Nodes+Security.arm64.swift, Nodes+Sysctl.arm64.swift, Nodes+VFS.arm64.swift, Nodes+VM.arm64.swift, Nodes+Debug.x86_64.swift, Nodes+HW.x86_64.swift, Nodes+Kern.x86_64.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriverJobDiscovery normal arm64 Compiling Nodes+VFS.swift, Nodes+VM.swift, Nodes+Debug.arm64.swift, Nodes+HW.arm64.swift, Nodes+Kern.arm64.swift, Nodes+MachDep.arm64.swift, Nodes+Net.arm64.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriverJobDiscovery normal arm64 Compiling OID+HW.arm64.swift, OID+Kern.arm64.swift, OID+MachDep.arm64.swift, OID+Net.arm64.swift, OID+Security.arm64.swift, OID+Sysctl.arm64.swift, OID+VFS.arm64.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriverJobDiscovery normal arm64 Compiling Sysctl+.swift, Nodes+Debug.swift, Nodes+HW.swift, Nodes+Kern.swift, Nodes+MachDep.swift, Nodes+Net.swift, Nodes+Security.swift (in target 'SwiftSysctl' from project 'SwiftSysctl')
SwiftDriver\ Compilation SwiftSysctl normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name SwiftSysctl -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.o normal (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftSysctl.build/Debug-appletvos/SwiftSysctl.build/Objects-normal/arm64/SwiftSysctl_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.o (in target 'SwiftSysctl' from project 'SwiftSysctl')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftSysctl.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'SwiftSysctl' from project 'SwiftSysctl')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftSysctl",
  "name" : "SwiftSysctl",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftSysctl",
      "targets" : [
        "SwiftSysctl"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftSysctlTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftSysctlTests",
      "path" : "Tests/SwiftSysctlTests",
      "sources" : [
        "SwiftSysctlTests.swift"
      ],
      "target_dependencies" : [
        "SwiftSysctl"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftSysctl",
      "module_type" : "SwiftTarget",
      "name" : "SwiftSysctl",
      "path" : "Sources/SwiftSysctl",
      "product_memberships" : [
        "SwiftSysctl"
      ],
      "sources" : [
        "Extension/Sysctl+.swift",
        "Node/Node/Nodes+Debug.swift",
        "Node/Node/Nodes+HW.swift",
        "Node/Node/Nodes+Kern.swift",
        "Node/Node/Nodes+MachDep.swift",
        "Node/Node/Nodes+Net.swift",
        "Node/Node/Nodes+Security.swift",
        "Node/Node/Nodes+VFS.swift",
        "Node/Node/Nodes+VM.swift",
        "Node/Node/arm64/Nodes+Debug.arm64.swift",
        "Node/Node/arm64/Nodes+HW.arm64.swift",
        "Node/Node/arm64/Nodes+Kern.arm64.swift",
        "Node/Node/arm64/Nodes+MachDep.arm64.swift",
        "Node/Node/arm64/Nodes+Net.arm64.swift",
        "Node/Node/arm64/Nodes+Security.arm64.swift",
        "Node/Node/arm64/Nodes+Sysctl.arm64.swift",
        "Node/Node/arm64/Nodes+VFS.arm64.swift",
        "Node/Node/arm64/Nodes+VM.arm64.swift",
        "Node/Node/x86_64/Nodes+Debug.x86_64.swift",
        "Node/Node/x86_64/Nodes+HW.x86_64.swift",
        "Node/Node/x86_64/Nodes+Kern.x86_64.swift",
        "Node/Node/x86_64/Nodes+MachDep.x86_64.swift",
        "Node/Node/x86_64/Nodes+Net.x86_64.swift",
        "Node/Node/x86_64/Nodes+Security.x86_64.swift",
        "Node/Node/x86_64/Nodes+Sysctl.x86_64.swift",
        "Node/Node/x86_64/Nodes+VFS.x86_64.swift",
        "Node/Node/x86_64/Nodes+VM.x86_64.swift",
        "Node/Nodes+Sysctl.swift",
        "Node/Nodes.swift",
        "OID/Model/CtlKind.swift",
        "OID/Model/CtlType.swift",
        "OID/OID+Sysctl.swift",
        "OID/OID+TopLevel.swift",
        "OID/OID.swift",
        "OID/OID/OID+Debug.swift",
        "OID/OID/OID+HW.swift",
        "OID/OID/OID+Kern.swift",
        "OID/OID/OID+MachDep.swift",
        "OID/OID/OID+Net.swift",
        "OID/OID/OID+VFS.swift",
        "OID/OID/OID+VM.swift",
        "OID/OID/arm64/OID+Debug.arm64.swift",
        "OID/OID/arm64/OID+HW.arm64.swift",
        "OID/OID/arm64/OID+Kern.arm64.swift",
        "OID/OID/arm64/OID+MachDep.arm64.swift",
        "OID/OID/arm64/OID+Net.arm64.swift",
        "OID/OID/arm64/OID+Security.arm64.swift",
        "OID/OID/arm64/OID+Sysctl.arm64.swift",
        "OID/OID/arm64/OID+VFS.arm64.swift",
        "OID/OID/arm64/OID+VM.arm64.swift",
        "OID/OID/x86_64/OID+Debug.x86_64.swift",
        "OID/OID/x86_64/OID+HW.x86_64.swift",
        "OID/OID/x86_64/OID+Kern.x86_64.swift",
        "OID/OID/x86_64/OID+MachDep.x86_64.swift",
        "OID/OID/x86_64/OID+Net.x86_64.swift",
        "OID/OID/x86_64/OID+Security.x86_64.swift",
        "OID/OID/x86_64/OID+Sysctl.x86_64.swift",
        "OID/OID/x86_64/OID+VFS.x86_64.swift",
        "OID/OID/x86_64/OID+VM.x86_64.swift",
        "Protocol/BitFlags.swift",
        "Protocol/FieldProtocol.swift",
        "Protocol/NodeCollection.swift",
        "Protocol/NodeProtocol.swift",
        "SwiftSysctl.swift",
        "SysctlError.swift",
        "TopNodes.swift",
        "Util/Field.swift",
        "Util/Node.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.