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 Violet with Swift 6.0 for Linux.

Swift 6 data race errors: 468

Build Command

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

Build Log

 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 44 |   public static let __delattr__ = IdString(index: 15)
 45 |   public static let __delitem__ = IdString(index: 16)
 46 |   public static let __dict__ = IdString(index: 17)
    |                     |- warning: static property '__dict__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__dict__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   public static let __dir__ = IdString(index: 18)
 48 |   public static let __divmod__ = IdString(index: 19)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:96:21: warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 94 |   public static let __module__ = IdString(index: 65)
 95 |   public static let __mul__ = IdString(index: 66)
 96 |   public static let __name__ = IdString(index: 67)
    |                     |- warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__name__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |   public static let __ne__ = IdString(index: 68)
 98 |   public static let __neg__ = IdString(index: 69)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
[514/552] Compiling VioletVM Eval+General.swift
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:59:23: warning: static property 'hasFreeVariables' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
 58 |     /// 0x08
 59 |     public static let hasFreeVariables = FunctionFlags(rawValue: 0x08)
    |                       |- warning: static property 'hasFreeVariables' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasFreeVariables' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |
 61 |     public var description: String {
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:57:23: warning: static property 'hasAnnotations' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
 56 |     /// 0x04
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
    |                       |- warning: static property 'hasAnnotations' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasAnnotations' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /// 0x08
 59 |     public static let hasFreeVariables = FunctionFlags(rawValue: 0x08)
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:55:23: warning: static property 'hasKwOnlyArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 53 |     public static let hasPositionalArgDefaults = FunctionFlags(rawValue: 0x01)
 54 |     /// 0x02
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
    |                       |- warning: static property 'hasKwOnlyArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasKwOnlyArgDefaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     /// 0x04
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:53:23: warning: static property 'hasPositionalArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
 51 |
 52 |     /// 0x01
 53 |     public static let hasPositionalArgDefaults = FunctionFlags(rawValue: 0x01)
    |                       |- warning: static property 'hasPositionalArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasPositionalArgDefaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     /// 0x02
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:33:21: warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
    |                     |- warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__annotations__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:31:21: warning: static property '__all__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 29 |   public static let __abs__ = IdString(index: 0)
 30 |   public static let __add__ = IdString(index: 1)
 31 |   public static let __all__ = IdString(index: 2)
    |                     |- warning: static property '__all__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__all__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:46:21: warning: static property '__dict__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 44 |   public static let __delattr__ = IdString(index: 15)
 45 |   public static let __delitem__ = IdString(index: 16)
 46 |   public static let __dict__ = IdString(index: 17)
    |                     |- warning: static property '__dict__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__dict__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   public static let __dir__ = IdString(index: 18)
 48 |   public static let __divmod__ = IdString(index: 19)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:96:21: warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 94 |   public static let __module__ = IdString(index: 65)
 95 |   public static let __mul__ = IdString(index: 66)
 96 |   public static let __name__ = IdString(index: 67)
    |                     |- warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__name__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |   public static let __ne__ = IdString(index: 68)
 98 |   public static let __neg__ = IdString(index: 69)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
[515/552] Compiling VioletVM Eval+Import.swift
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:59:23: warning: static property 'hasFreeVariables' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
 58 |     /// 0x08
 59 |     public static let hasFreeVariables = FunctionFlags(rawValue: 0x08)
    |                       |- warning: static property 'hasFreeVariables' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasFreeVariables' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |
 61 |     public var description: String {
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:57:23: warning: static property 'hasAnnotations' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
 56 |     /// 0x04
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
    |                       |- warning: static property 'hasAnnotations' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasAnnotations' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /// 0x08
 59 |     public static let hasFreeVariables = FunctionFlags(rawValue: 0x08)
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:55:23: warning: static property 'hasKwOnlyArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 53 |     public static let hasPositionalArgDefaults = FunctionFlags(rawValue: 0x01)
 54 |     /// 0x02
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
    |                       |- warning: static property 'hasKwOnlyArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasKwOnlyArgDefaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     /// 0x04
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:53:23: warning: static property 'hasPositionalArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
 51 |
 52 |     /// 0x01
 53 |     public static let hasPositionalArgDefaults = FunctionFlags(rawValue: 0x01)
    |                       |- warning: static property 'hasPositionalArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasPositionalArgDefaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     /// 0x02
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:33:21: warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
    |                     |- warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__annotations__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:31:21: warning: static property '__all__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 29 |   public static let __abs__ = IdString(index: 0)
 30 |   public static let __add__ = IdString(index: 1)
 31 |   public static let __all__ = IdString(index: 2)
    |                     |- warning: static property '__all__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__all__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:46:21: warning: static property '__dict__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 44 |   public static let __delattr__ = IdString(index: 15)
 45 |   public static let __delitem__ = IdString(index: 16)
 46 |   public static let __dict__ = IdString(index: 17)
    |                     |- warning: static property '__dict__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__dict__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   public static let __dir__ = IdString(index: 18)
 48 |   public static let __divmod__ = IdString(index: 19)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:96:21: warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 94 |   public static let __module__ = IdString(index: 65)
 95 |   public static let __mul__ = IdString(index: 66)
 96 |   public static let __name__ = IdString(index: 67)
    |                     |- warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__name__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |   public static let __ne__ = IdString(index: 68)
 98 |   public static let __neg__ = IdString(index: 69)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
[516/552] Compiling VioletVM Eval+Jump.swift
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:59:23: warning: static property 'hasFreeVariables' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
 58 |     /// 0x08
 59 |     public static let hasFreeVariables = FunctionFlags(rawValue: 0x08)
    |                       |- warning: static property 'hasFreeVariables' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasFreeVariables' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |
 61 |     public var description: String {
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:57:23: warning: static property 'hasAnnotations' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
 56 |     /// 0x04
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
    |                       |- warning: static property 'hasAnnotations' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasAnnotations' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /// 0x08
 59 |     public static let hasFreeVariables = FunctionFlags(rawValue: 0x08)
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:55:23: warning: static property 'hasKwOnlyArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
    :
 53 |     public static let hasPositionalArgDefaults = FunctionFlags(rawValue: 0x01)
 54 |     /// 0x02
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
    |                       |- warning: static property 'hasKwOnlyArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasKwOnlyArgDefaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     /// 0x04
 57 |     public static let hasAnnotations = FunctionFlags(rawValue: 0x04)
/host/spi-builder-workspace/Sources/Bytecode/Instructions+Misc.swift:53:23: warning: static property 'hasPositionalArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |   /// Function properties used in `MakeFunction` instruction.
 48 |   public struct FunctionFlags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'FunctionFlags' conform to the 'Sendable' protocol
 49 |
 50 |     public let rawValue: UInt8
 51 |
 52 |     /// 0x01
 53 |     public static let hasPositionalArgDefaults = FunctionFlags(rawValue: 0x01)
    |                       |- warning: static property 'hasPositionalArgDefaults' is not concurrency-safe because non-'Sendable' type 'Instruction.FunctionFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hasPositionalArgDefaults' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     /// 0x02
 55 |     public static let hasKwOnlyArgDefaults = FunctionFlags(rawValue: 0x02)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:33:21: warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
    |                     |- warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__annotations__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:31:21: warning: static property '__all__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 29 |   public static let __abs__ = IdString(index: 0)
 30 |   public static let __add__ = IdString(index: 1)
 31 |   public static let __all__ = IdString(index: 2)
    |                     |- warning: static property '__all__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__all__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:46:21: warning: static property '__dict__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 44 |   public static let __delattr__ = IdString(index: 15)
 45 |   public static let __delitem__ = IdString(index: 16)
 46 |   public static let __dict__ = IdString(index: 17)
    |                     |- warning: static property '__dict__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__dict__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |   public static let __dir__ = IdString(index: 18)
 48 |   public static let __divmod__ = IdString(index: 19)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:96:21: warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 94 |   public static let __module__ = IdString(index: 65)
 95 |   public static let __mul__ = IdString(index: 66)
 96 |   public static let __name__ = IdString(index: 67)
    |                     |- warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__name__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |   public static let __ne__ = IdString(index: 68)
 98 |   public static let __neg__ = IdString(index: 69)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
[517/552] Compiling VioletVM Debug.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
[518/552] Compiling VioletVM Eval+Class.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
[519/552] Compiling VioletVM Eval+CollectionUnpack.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
[520/552] Compiling VioletVM Eval+Collections.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
[521/552] Compiling VioletVM Eval+Compare.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
[522/552] Compiling VioletVM Eval+Unwind.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:50:21: warning: static property '__enter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 48 |   public static let __divmod__ = IdString(index: 19)
 49 |   public static let __doc__ = IdString(index: 20)
 50 |   public static let __enter__ = IdString(index: 21)
    |                     |- warning: static property '__enter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__enter__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:52:21: warning: static property '__exit__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 50 |   public static let __enter__ = IdString(index: 21)
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
    |                     |- warning: static property '__exit__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__exit__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |   public static let __file__ = IdString(index: 24)
 54 |   public static let __float__ = IdString(index: 25)
[523/552] Compiling VioletVM Eval+With.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:50:21: warning: static property '__enter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 48 |   public static let __divmod__ = IdString(index: 19)
 49 |   public static let __doc__ = IdString(index: 20)
 50 |   public static let __enter__ = IdString(index: 21)
    |                     |- warning: static property '__enter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__enter__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:52:21: warning: static property '__exit__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 50 |   public static let __enter__ = IdString(index: 21)
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
    |                     |- warning: static property '__exit__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__exit__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |   public static let __file__ = IdString(index: 24)
 54 |   public static let __float__ = IdString(index: 25)
[524/552] Compiling VioletVM Eval.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:50:21: warning: static property '__enter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 48 |   public static let __divmod__ = IdString(index: 19)
 49 |   public static let __doc__ = IdString(index: 20)
 50 |   public static let __enter__ = IdString(index: 21)
    |                     |- warning: static property '__enter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__enter__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:52:21: warning: static property '__exit__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 50 |   public static let __enter__ = IdString(index: 21)
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
    |                     |- warning: static property '__exit__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__exit__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |   public static let __file__ = IdString(index: 24)
 54 |   public static let __float__ = IdString(index: 25)
[525/552] Compiling VioletVM InstructionResult.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:50:21: warning: static property '__enter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 48 |   public static let __divmod__ = IdString(index: 19)
 49 |   public static let __doc__ = IdString(index: 20)
 50 |   public static let __enter__ = IdString(index: 21)
    |                     |- warning: static property '__enter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__enter__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:52:21: warning: static property '__exit__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 50 |   public static let __enter__ = IdString(index: 21)
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
    |                     |- warning: static property '__exit__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__exit__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |   public static let __file__ = IdString(index: 24)
 54 |   public static let __float__ = IdString(index: 25)
[526/552] Compiling VioletVM Eval+Store+Load+Delete.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:60:21: warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 58 |   public static let __getattr__ = IdString(index: 29)
 59 |   public static let __getattribute__ = IdString(index: 30)
 60 |   public static let __getitem__ = IdString(index: 31)
    |                     |- warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__getitem__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   public static let __gt__ = IdString(index: 32)
 62 |   public static let __hash__ = IdString(index: 33)
[527/552] Compiling VioletVM Eval+String.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:60:21: warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 58 |   public static let __getattr__ = IdString(index: 29)
 59 |   public static let __getattribute__ = IdString(index: 30)
 60 |   public static let __getitem__ = IdString(index: 31)
    |                     |- warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__getitem__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   public static let __gt__ = IdString(index: 32)
 62 |   public static let __hash__ = IdString(index: 33)
[528/552] Compiling VioletVM Eval+Try+Catch.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:60:21: warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 58 |   public static let __getattr__ = IdString(index: 29)
 59 |   public static let __getattribute__ = IdString(index: 30)
 60 |   public static let __getitem__ = IdString(index: 31)
    |                     |- warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__getitem__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   public static let __gt__ = IdString(index: 32)
 62 |   public static let __hash__ = IdString(index: 33)
[529/552] Compiling VioletVM Eval+UNIMPLEMENTED.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:60:21: warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 58 |   public static let __getattr__ = IdString(index: 29)
 59 |   public static let __getattribute__ = IdString(index: 30)
 60 |   public static let __getitem__ = IdString(index: 31)
    |                     |- warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__getitem__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   public static let __gt__ = IdString(index: 32)
 62 |   public static let __hash__ = IdString(index: 33)
[530/552] Compiling VioletVM PyFileDescriptor.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:33:21: warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
    |                     |- warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__annotations__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:36:21: warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
 36 |   public static let __builtins__ = IdString(index: 7)
    |                     |- warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__builtins__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |   public static let __call__ = IdString(index: 8)
 38 |   public static let __class__ = IdString(index: 9)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:88:21: warning: static property '__loader__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 86 |   public static let __le__ = IdString(index: 57)
 87 |   public static let __len__ = IdString(index: 58)
 88 |   public static let __loader__ = IdString(index: 59)
    |                     |- warning: static property '__loader__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__loader__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |   public static let __lshift__ = IdString(index: 60)
 90 |   public static let __lt__ = IdString(index: 61)
[531/552] Compiling VioletVM PyFileSystem.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:33:21: warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
    |                     |- warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__annotations__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:36:21: warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
 36 |   public static let __builtins__ = IdString(index: 7)
    |                     |- warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__builtins__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |   public static let __call__ = IdString(index: 8)
 38 |   public static let __class__ = IdString(index: 9)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:88:21: warning: static property '__loader__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 86 |   public static let __le__ = IdString(index: 57)
 87 |   public static let __len__ = IdString(index: 58)
 88 |   public static let __loader__ = IdString(index: 59)
    |                     |- warning: static property '__loader__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__loader__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |   public static let __lshift__ = IdString(index: 60)
 90 |   public static let __lt__ = IdString(index: 61)
[532/552] Compiling VioletVM VM+Run.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:33:21: warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
    |                     |- warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__annotations__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:36:21: warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
 36 |   public static let __builtins__ = IdString(index: 7)
    |                     |- warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__builtins__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |   public static let __call__ = IdString(index: 8)
 38 |   public static let __class__ = IdString(index: 9)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:88:21: warning: static property '__loader__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 86 |   public static let __le__ = IdString(index: 57)
 87 |   public static let __len__ = IdString(index: 58)
 88 |   public static let __loader__ = IdString(index: 59)
    |                     |- warning: static property '__loader__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__loader__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |   public static let __lshift__ = IdString(index: 60)
 90 |   public static let __lt__ = IdString(index: 61)
[533/552] Compiling VioletVM VM+RunInteractive.swift
/host/spi-builder-workspace/Sources/VM/Debug.swift:17:23: warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | #if DEBUG
 16 |   // Most of the time we don't want to debug importlib
 17 |   internal static var isAfterImportlib = false
    |                       |- warning: static property 'isAfterImportlib' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isAfterImportlib' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isAfterImportlib' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |   private static var isEnabledAndAfterImportlib: Bool {
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:33:21: warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
 33 |   public static let __annotations__ = IdString(index: 4)
    |                     |- warning: static property '__annotations__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__annotations__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:36:21: warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
 36 |   public static let __builtins__ = IdString(index: 7)
    |                     |- warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__builtins__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |   public static let __call__ = IdString(index: 8)
 38 |   public static let __class__ = IdString(index: 9)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:88:21: warning: static property '__loader__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 86 |   public static let __le__ = IdString(index: 57)
 87 |   public static let __len__ = IdString(index: 58)
 88 |   public static let __loader__ = IdString(index: 59)
    |                     |- warning: static property '__loader__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__loader__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |   public static let __lshift__ = IdString(index: 60)
 90 |   public static let __lt__ = IdString(index: 61)
[534/552] Compiling VioletVM Eval+Loop.swift
[535/552] Compiling VioletVM Eval+NumericBinary.swift
[536/552] Compiling VioletVM Eval+NumericInPlace.swift
[537/552] Compiling VioletVM Eval+NumericUnary.swift
[538/552] Compiling VioletVM PushExceptionBeforeExcept.swift
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:28:28: warning: static property 'return' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
    |                            `- warning: static property 'return' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
  1 | import BigInt
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
  2 | import VioletCore
  3 | import VioletObjects
    :
 26 |
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
    |                            |- note: annotate 'return' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:29:28: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
 29 |     fileprivate static let `break` = BigInt(1)
    |                            |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'break' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:30:28: warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 28 |     fileprivate static let `return` = BigInt(0)
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
    |                            |- warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'continue' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:31:28: warning: static property 'exception' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
    |                            |- warning: static property 'exception' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'exception' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     fileprivate static let yield = BigInt(4)
 33 |     fileprivate static let silenced = BigInt(5)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:32:28: warning: static property 'yield' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
    |                            |- warning: static property 'yield' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'yield' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     fileprivate static let silenced = BigInt(5)
 34 |   }
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:33:28: warning: static property 'silenced' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
 33 |     fileprivate static let silenced = BigInt(5)
    |                            |- warning: static property 'silenced' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'silenced' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   }
 35 |
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
[539/552] Compiling VioletVM PushFinallyReason.swift
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:28:28: warning: static property 'return' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
    |                            `- warning: static property 'return' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
  1 | import BigInt
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
  2 | import VioletCore
  3 | import VioletObjects
    :
 26 |
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
    |                            |- note: annotate 'return' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:29:28: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
 29 |     fileprivate static let `break` = BigInt(1)
    |                            |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'break' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:30:28: warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 28 |     fileprivate static let `return` = BigInt(0)
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
    |                            |- warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'continue' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:31:28: warning: static property 'exception' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
    |                            |- warning: static property 'exception' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'exception' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     fileprivate static let yield = BigInt(4)
 33 |     fileprivate static let silenced = BigInt(5)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:32:28: warning: static property 'yield' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
    |                            |- warning: static property 'yield' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'yield' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     fileprivate static let silenced = BigInt(5)
 34 |   }
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:33:28: warning: static property 'silenced' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
 33 |     fileprivate static let silenced = BigInt(5)
    |                            |- warning: static property 'silenced' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'silenced' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   }
 35 |
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
[540/552] Compiling VioletVM PyDelegate+Compile.swift
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:28:28: warning: static property 'return' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
    |                            `- warning: static property 'return' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
  1 | import BigInt
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
  2 | import VioletCore
  3 | import VioletObjects
    :
 26 |
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
    |                            |- note: annotate 'return' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:29:28: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
 29 |     fileprivate static let `break` = BigInt(1)
    |                            |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'break' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:30:28: warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 28 |     fileprivate static let `return` = BigInt(0)
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
    |                            |- warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'continue' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:31:28: warning: static property 'exception' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
    |                            |- warning: static property 'exception' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'exception' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     fileprivate static let yield = BigInt(4)
 33 |     fileprivate static let silenced = BigInt(5)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:32:28: warning: static property 'yield' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
    |                            |- warning: static property 'yield' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'yield' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     fileprivate static let silenced = BigInt(5)
 34 |   }
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:33:28: warning: static property 'silenced' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
 33 |     fileprivate static let silenced = BigInt(5)
    |                            |- warning: static property 'silenced' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'silenced' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   }
 35 |
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
[541/552] Compiling VioletVM PyDelegate.swift
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:28:28: warning: static property 'return' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
    |                            `- warning: static property 'return' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
  1 | import BigInt
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
  2 | import VioletCore
  3 | import VioletObjects
    :
 26 |
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
    |                            |- note: annotate 'return' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:29:28: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |   private enum Marker {
 28 |     fileprivate static let `return` = BigInt(0)
 29 |     fileprivate static let `break` = BigInt(1)
    |                            |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'break' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:30:28: warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 28 |     fileprivate static let `return` = BigInt(0)
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
    |                            |- warning: static property 'continue' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'continue' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:31:28: warning: static property 'exception' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |     fileprivate static let `break` = BigInt(1)
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
    |                            |- warning: static property 'exception' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'exception' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     fileprivate static let yield = BigInt(4)
 33 |     fileprivate static let silenced = BigInt(5)
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:32:28: warning: static property 'yield' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |     fileprivate static let `continue` = BigInt(2)
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
    |                            |- warning: static property 'yield' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'yield' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     fileprivate static let silenced = BigInt(5)
 34 |   }
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
/host/spi-builder-workspace/Sources/VM/Eval/PushFinallyReason.swift:33:28: warning: static property 'silenced' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
 31 |     fileprivate static let exception = BigInt(3)
 32 |     fileprivate static let yield = BigInt(4)
 33 |     fileprivate static let silenced = BigInt(5)
    |                            |- warning: static property 'silenced' is not concurrency-safe because non-'Sendable' type 'BigInt' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'silenced' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |   }
 35 |
/host/spi-builder-workspace/Sources/BigInt/BigInt.swift:4:15: note: struct 'BigInt' does not conform to the 'Sendable' protocol
  2 |
  3 | /// `Int` but bigger. Much bigger…
  4 | public struct BigInt: SignedInteger,
    |               `- note: struct 'BigInt' does not conform to the 'Sendable' protocol
  5 |                       Comparable, Hashable, Strideable,
  6 |                       CustomStringConvertible, CustomDebugStringConvertible {
[542/552] Compiling VioletVM VM+RunScript.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
/host/spi-builder-workspace/Sources/VM/VM+Signals.swift:24:13: warning: var 'vms' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | }
 23 |
 24 | private var vms = [WeakBox]()
    |             |- warning: var 'vms' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'vms' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'vms' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 | private func handleKeyboardInterrupt(signum: Int32) {
/host/spi-builder-workspace/Sources/FileSystem/FileSystem.swift:21:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Wrapper around 'FileManager' and other file-system related things.
 17 | public struct FileSystem {
    |               `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
 18 |
 19 |   internal let fileManager: FileManagerType
 20 |
 21 |   public static let `default` = FileSystem(fileManager: FileManager.default)
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |   internal init(fileManager: FileManagerType) {
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys.swift:90:21: warning: class property 'implementation' is not concurrency-safe because non-'Sendable' type 'Sys.ImplementationInfo' may have shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 |   /// Initial value for `sys.implementation`.
 90 |   public static let implementation = Configure.implementation
    |                     |- warning: class property 'implementation' is not concurrency-safe because non-'Sendable' type 'Sys.ImplementationInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'implementation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |   /// Initial value for `sys.version`.
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys+Entities.swift:197:17: note: consider making struct 'ImplementationInfo' conform to the 'Sendable' protocol
195 |
196 |   /// Internal helper for `sys.implementation`.
197 |   public struct ImplementationInfo {
    |                 `- note: consider making struct 'ImplementationInfo' conform to the 'Sendable' protocol
198 |
199 |     /// Program name to use on the command line.
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:473:21: warning: class property 'standardInput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
471 | extension FileDescriptor {
472 |
473 |   public static let standardInput = FileDescriptor(
    |                     |- warning: class property 'standardInput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardInput' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
474 |     fileDescriptor: STDIN_FILENO,
475 |     closeOnDealloc: false
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:478:21: warning: class property 'standardOutput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
476 |   )
477 |
478 |   public static let standardOutput = FileDescriptor(
    |                     |- warning: class property 'standardOutput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardOutput' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 |     fileDescriptor: STDOUT_FILENO,
480 |     closeOnDealloc: false
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:483:21: warning: class property 'standardError' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
481 |   )
482 |
483 |   public static let standardError = FileDescriptor(
    |                     |- warning: class property 'standardError' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
484 |     fileDescriptor: STDERR_FILENO,
485 |     closeOnDealloc: false
[543/552] Compiling VioletVM VM+Signals.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
/host/spi-builder-workspace/Sources/VM/VM+Signals.swift:24:13: warning: var 'vms' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | }
 23 |
 24 | private var vms = [WeakBox]()
    |             |- warning: var 'vms' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'vms' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'vms' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 | private func handleKeyboardInterrupt(signum: Int32) {
/host/spi-builder-workspace/Sources/FileSystem/FileSystem.swift:21:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Wrapper around 'FileManager' and other file-system related things.
 17 | public struct FileSystem {
    |               `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
 18 |
 19 |   internal let fileManager: FileManagerType
 20 |
 21 |   public static let `default` = FileSystem(fileManager: FileManager.default)
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |   internal init(fileManager: FileManagerType) {
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys.swift:90:21: warning: class property 'implementation' is not concurrency-safe because non-'Sendable' type 'Sys.ImplementationInfo' may have shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 |   /// Initial value for `sys.implementation`.
 90 |   public static let implementation = Configure.implementation
    |                     |- warning: class property 'implementation' is not concurrency-safe because non-'Sendable' type 'Sys.ImplementationInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'implementation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |   /// Initial value for `sys.version`.
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys+Entities.swift:197:17: note: consider making struct 'ImplementationInfo' conform to the 'Sendable' protocol
195 |
196 |   /// Internal helper for `sys.implementation`.
197 |   public struct ImplementationInfo {
    |                 `- note: consider making struct 'ImplementationInfo' conform to the 'Sendable' protocol
198 |
199 |     /// Program name to use on the command line.
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:473:21: warning: class property 'standardInput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
471 | extension FileDescriptor {
472 |
473 |   public static let standardInput = FileDescriptor(
    |                     |- warning: class property 'standardInput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardInput' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
474 |     fileDescriptor: STDIN_FILENO,
475 |     closeOnDealloc: false
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:478:21: warning: class property 'standardOutput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
476 |   )
477 |
478 |   public static let standardOutput = FileDescriptor(
    |                     |- warning: class property 'standardOutput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardOutput' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 |     fileDescriptor: STDOUT_FILENO,
480 |     closeOnDealloc: false
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:483:21: warning: class property 'standardError' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
481 |   )
482 |
483 |   public static let standardError = FileDescriptor(
    |                     |- warning: class property 'standardError' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
484 |     fileDescriptor: STDERR_FILENO,
485 |     closeOnDealloc: false
[544/552] Compiling VioletVM VM+UNIMPLEMENTED.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
/host/spi-builder-workspace/Sources/VM/VM+Signals.swift:24:13: warning: var 'vms' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | }
 23 |
 24 | private var vms = [WeakBox]()
    |             |- warning: var 'vms' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'vms' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'vms' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 | private func handleKeyboardInterrupt(signum: Int32) {
/host/spi-builder-workspace/Sources/FileSystem/FileSystem.swift:21:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Wrapper around 'FileManager' and other file-system related things.
 17 | public struct FileSystem {
    |               `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
 18 |
 19 |   internal let fileManager: FileManagerType
 20 |
 21 |   public static let `default` = FileSystem(fileManager: FileManager.default)
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |   internal init(fileManager: FileManagerType) {
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys.swift:90:21: warning: class property 'implementation' is not concurrency-safe because non-'Sendable' type 'Sys.ImplementationInfo' may have shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 |   /// Initial value for `sys.implementation`.
 90 |   public static let implementation = Configure.implementation
    |                     |- warning: class property 'implementation' is not concurrency-safe because non-'Sendable' type 'Sys.ImplementationInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'implementation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |   /// Initial value for `sys.version`.
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys+Entities.swift:197:17: note: consider making struct 'ImplementationInfo' conform to the 'Sendable' protocol
195 |
196 |   /// Internal helper for `sys.implementation`.
197 |   public struct ImplementationInfo {
    |                 `- note: consider making struct 'ImplementationInfo' conform to the 'Sendable' protocol
198 |
199 |     /// Program name to use on the command line.
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:473:21: warning: class property 'standardInput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
471 | extension FileDescriptor {
472 |
473 |   public static let standardInput = FileDescriptor(
    |                     |- warning: class property 'standardInput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardInput' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
474 |     fileDescriptor: STDIN_FILENO,
475 |     closeOnDealloc: false
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:478:21: warning: class property 'standardOutput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
476 |   )
477 |
478 |   public static let standardOutput = FileDescriptor(
    |                     |- warning: class property 'standardOutput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardOutput' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 |     fileDescriptor: STDOUT_FILENO,
480 |     closeOnDealloc: false
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:483:21: warning: class property 'standardError' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
481 |   )
482 |
483 |   public static let standardError = FileDescriptor(
    |                     |- warning: class property 'standardError' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
484 |     fileDescriptor: STDERR_FILENO,
485 |     closeOnDealloc: false
[545/552] Compiling VioletVM VM.swift
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
/host/spi-builder-workspace/Sources/VM/VM+Signals.swift:24:13: warning: var 'vms' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | }
 23 |
 24 | private var vms = [WeakBox]()
    |             |- warning: var 'vms' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'vms' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'vms' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 | private func handleKeyboardInterrupt(signum: Int32) {
/host/spi-builder-workspace/Sources/FileSystem/FileSystem.swift:21:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Wrapper around 'FileManager' and other file-system related things.
 17 | public struct FileSystem {
    |               `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
 18 |
 19 |   internal let fileManager: FileManagerType
 20 |
 21 |   public static let `default` = FileSystem(fileManager: FileManager.default)
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |   internal init(fileManager: FileManagerType) {
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys.swift:90:21: warning: class property 'implementation' is not concurrency-safe because non-'Sendable' type 'Sys.ImplementationInfo' may have shared mutable state; this is an error in the Swift 6 language mode
 88 |
 89 |   /// Initial value for `sys.implementation`.
 90 |   public static let implementation = Configure.implementation
    |                     |- warning: class property 'implementation' is not concurrency-safe because non-'Sendable' type 'Sys.ImplementationInfo' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'implementation' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |   /// Initial value for `sys.version`.
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys+Entities.swift:197:17: note: consider making struct 'ImplementationInfo' conform to the 'Sendable' protocol
195 |
196 |   /// Internal helper for `sys.implementation`.
197 |   public struct ImplementationInfo {
    |                 `- note: consider making struct 'ImplementationInfo' conform to the 'Sendable' protocol
198 |
199 |     /// Program name to use on the command line.
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:473:21: warning: class property 'standardInput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
471 | extension FileDescriptor {
472 |
473 |   public static let standardInput = FileDescriptor(
    |                     |- warning: class property 'standardInput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardInput' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
474 |     fileDescriptor: STDIN_FILENO,
475 |     closeOnDealloc: false
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:478:21: warning: class property 'standardOutput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
476 |   )
477 |
478 |   public static let standardOutput = FileDescriptor(
    |                     |- warning: class property 'standardOutput' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardOutput' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 |     fileDescriptor: STDOUT_FILENO,
480 |     closeOnDealloc: false
/host/spi-builder-workspace/Sources/FileSystem/FileDescriptor.swift:483:21: warning: class property 'standardError' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
 72 | /// - we are no longer NSObject
 73 | /// - no queues/barriers
 74 | public class FileDescriptor: CustomStringConvertible {
    |              `- note: class 'FileDescriptor' does not conform to the 'Sendable' protocol
 75 |
 76 |   public enum ErrorType {
    :
481 |   )
482 |
483 |   public static let standardError = FileDescriptor(
    |                     |- warning: class property 'standardError' is not concurrency-safe because non-'Sendable' type 'FileDescriptor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
484 |     fileDescriptor: STDERR_FILENO,
485 |     closeOnDealloc: false
[546/555] Wrapping AST for VioletVM for debugging
[548/558] Emitting module Violet
[549/558] Compiling Violet main.swift
[550/559] Compiling PyTests main.swift
/host/spi-builder-workspace/Sources/FileSystem/FileSystem.swift:21:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Wrapper around 'FileManager' and other file-system related things.
 17 | public struct FileSystem {
    |               `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
 18 |
 19 |   internal let fileManager: FileManagerType
 20 |
 21 |   public static let `default` = FileSystem(fileManager: FileManager.default)
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |   internal init(fileManager: FileManagerType) {
[551/559] Emitting module PyTests
/host/spi-builder-workspace/Sources/FileSystem/FileSystem.swift:21:21: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | /// Wrapper around 'FileManager' and other file-system related things.
 17 | public struct FileSystem {
    |               `- note: consider making struct 'FileSystem' conform to the 'Sendable' protocol
 18 |
 19 |   internal let fileManager: FileManagerType
 20 |
 21 |   public static let `default` = FileSystem(fileManager: FileManager.default)
    |                     |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileSystem' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 |   internal init(fileManager: FileManagerType) {
[552/559] Compiling PyTests TestRunner.swift
/host/spi-builder-workspace/Sources/PyTests/TestRunner.swift:50:19: warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 47 |   // MARK: - Run all tests
 48 |
 49 |   mutating func runTests(from dir: Path, only: [String], skip: [String]) {
    |                 `- note: add '@MainActor' to make instance method 'runTests(from:only:skip:)' part of global actor 'MainActor'
 50 |     var entries = fileSystem.readdirOrTrap(path: dir)
    |                   `- warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 51 |     entries.sort()
 52 |
/host/spi-builder-workspace/Sources/PyTests/main.swift:10:5: note: let declared here
 8 | // cspell:disable Verre
 9 |
10 | let fileSystem = FileSystem.default
   |     `- note: let declared here
11 |
12 | let rootDir = fileSystem.getRepositoryRootOrTrap()
/host/spi-builder-workspace/Sources/PyTests/TestRunner.swift:55:18: warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 47 |   // MARK: - Run all tests
 48 |
 49 |   mutating func runTests(from dir: Path, only: [String], skip: [String]) {
    |                 `- note: add '@MainActor' to make instance method 'runTests(from:only:skip:)' part of global actor 'MainActor'
 50 |     var entries = fileSystem.readdirOrTrap(path: dir)
 51 |     entries.sort()
    :
 53 |     let hasOnly = !only.isEmpty
 54 |     for filename in entries {
 55 |       let path = fileSystem.join(path: dir, element: filename)
    |                  `- warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 56 |       let stat = fileSystem.statOrTrap(path: path)
 57 |
/host/spi-builder-workspace/Sources/PyTests/main.swift:10:5: note: let declared here
 8 | // cspell:disable Verre
 9 |
10 | let fileSystem = FileSystem.default
   |     `- note: let declared here
11 |
12 | let rootDir = fileSystem.getRepositoryRootOrTrap()
/host/spi-builder-workspace/Sources/PyTests/TestRunner.swift:56:18: warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 47 |   // MARK: - Run all tests
 48 |
 49 |   mutating func runTests(from dir: Path, only: [String], skip: [String]) {
    |                 `- note: add '@MainActor' to make instance method 'runTests(from:only:skip:)' part of global actor 'MainActor'
 50 |     var entries = fileSystem.readdirOrTrap(path: dir)
 51 |     entries.sort()
    :
 54 |     for filename in entries {
 55 |       let path = fileSystem.join(path: dir, element: filename)
 56 |       let stat = fileSystem.statOrTrap(path: path)
    |                  `- warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 57 |
 58 |       guard stat.type == .regularFile else {
/host/spi-builder-workspace/Sources/PyTests/main.swift:10:5: note: let declared here
 8 | // cspell:disable Verre
 9 |
10 | let fileSystem = FileSystem.default
   |     `- note: let declared here
11 |
12 | let rootDir = fileSystem.getRepositoryRootOrTrap()
/host/spi-builder-workspace/Sources/PyTests/TestRunner.swift:62:17: warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 47 |   // MARK: - Run all tests
 48 |
 49 |   mutating func runTests(from dir: Path, only: [String], skip: [String]) {
    |                 `- note: add '@MainActor' to make instance method 'runTests(from:only:skip:)' part of global actor 'MainActor'
 50 |     var entries = fileSystem.readdirOrTrap(path: dir)
 51 |     entries.sort()
    :
 60 |       }
 61 |
 62 |       let ext = fileSystem.extname(filename: filename)
    |                 `- warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 63 |       guard ext == ".py" else {
 64 |         continue
/host/spi-builder-workspace/Sources/PyTests/main.swift:10:5: note: let declared here
 8 | // cspell:disable Verre
 9 |
10 | let fileSystem = FileSystem.default
   |     `- note: let declared here
11 |
12 | let rootDir = fileSystem.getRepositoryRootOrTrap()
/host/spi-builder-workspace/Sources/PyTests/TestRunner.swift:72:23: warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 47 |   // MARK: - Run all tests
 48 |
 49 |   mutating func runTests(from dir: Path, only: [String], skip: [String]) {
    |                 `- note: add '@MainActor' to make instance method 'runTests(from:only:skip:)' part of global actor 'MainActor'
 50 |     var entries = fileSystem.readdirOrTrap(path: dir)
 51 |     entries.sort()
    :
 70 |
 71 |       if isExecuted {
 72 |         let dirName = fileSystem.basename(path: dir)
    |                       `- warning: main actor-isolated let 'fileSystem' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
 73 |         let testName = "\(dirName) - \(filename)"
 74 |         self.runTest(name: testName, path: path)
/host/spi-builder-workspace/Sources/PyTests/main.swift:10:5: note: let declared here
 8 | // cspell:disable Verre
 9 |
10 | let fileSystem = FileSystem.default
   |     `- note: let declared here
11 |
12 | let rootDir = fileSystem.getRepositoryRootOrTrap()
[553/560] Wrapping AST for Violet for debugging
[554/560] Write Objects.LinkFileList
[556/560] Wrapping AST for PyTests for debugging
[557/560] Write Objects.LinkFileList
[558/560] Linking Violet
[559/560] Linking PyTests
Build complete! (127.13s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.0",
            "upper_bound" : "0.5.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    }
  ],
  "manifest_display_name" : "Violet",
  "name" : "Violet",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.11"
    }
  ],
  "products" : [
    {
      "name" : "Violet",
      "targets" : [
        "Violet"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "PyTests",
      "targets" : [
        "PyTests"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "LibViolet",
      "targets" : [
        "VioletVM"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Elsa",
      "targets" : [
        "Elsa"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "Rapunzel",
      "targets" : [
        "Rapunzel"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VioletVMTests",
      "module_type" : "SwiftTarget",
      "name" : "VioletVMTests",
      "path" : "Tests/VMTests",
      "sources" : [
        "NoTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "VioletVM"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VioletVM",
      "module_type" : "SwiftTarget",
      "name" : "VioletVM",
      "path" : "Sources/VM",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "Debug.swift",
        "Eval/Eval+Class.swift",
        "Eval/Eval+CollectionUnpack.swift",
        "Eval/Eval+Collections.swift",
        "Eval/Eval+Compare.swift",
        "Eval/Eval+Function.swift",
        "Eval/Eval+General.swift",
        "Eval/Eval+Import.swift",
        "Eval/Eval+Jump.swift",
        "Eval/Eval+Loop.swift",
        "Eval/Eval+NumericBinary.swift",
        "Eval/Eval+NumericInPlace.swift",
        "Eval/Eval+NumericUnary.swift",
        "Eval/Eval+Store+Load+Delete.swift",
        "Eval/Eval+String.swift",
        "Eval/Eval+Try+Catch.swift",
        "Eval/Eval+UNIMPLEMENTED.swift",
        "Eval/Eval+Unwind.swift",
        "Eval/Eval+With.swift",
        "Eval/Eval.swift",
        "Eval/InstructionResult.swift",
        "Eval/PushExceptionBeforeExcept.swift",
        "Eval/PushFinallyReason.swift",
        "PyDelegate+Compile.swift",
        "PyDelegate.swift",
        "PyFileDescriptor.swift",
        "PyFileSystem.swift",
        "VM+Run.swift",
        "VM+RunInteractive.swift",
        "VM+RunScript.swift",
        "VM+Signals.swift",
        "VM+UNIMPLEMENTED.swift",
        "VM.swift"
      ],
      "target_dependencies" : [
        "VioletCompiler",
        "VioletObjects"
      ],
      "type" : "library"
    },
    {
      "c99name" : "VioletParserTests",
      "module_type" : "SwiftTarget",
      "name" : "VioletParserTests",
      "path" : "Tests/ParserTests",
      "sources" : [
        "Atoms/FStringTests.swift",
        "Atoms/ParseAtoms.swift",
        "Atoms/ParseDictionary.swift",
        "Atoms/ParseList.swift",
        "Atoms/ParseParenExpr.swift",
        "Atoms/ParseSet.swift",
        "Atoms/ParseString.swift",
        "Expressions/ParseArithmeticExpr.swift",
        "Expressions/ParseAttribute.swift",
        "Expressions/ParseBitExpr.swift",
        "Expressions/ParseBoolExpr.swift",
        "Expressions/ParseCall.swift",
        "Expressions/ParseCallComprehension.swift",
        "Expressions/ParseComparisonExpr.swift",
        "Expressions/ParseIfExpr.swift",
        "Expressions/ParseLambda.swift",
        "Expressions/ParseSubscript.swift",
        "FakeLexer.swift",
        "Globals.swift",
        "LexerAdapterTests.swift",
        "SourceLocations.swift",
        "Statements/ParseAnnAssign.swift",
        "Statements/ParseAssert.swift",
        "Statements/ParseAssign.swift",
        "Statements/ParseAsync.swift",
        "Statements/ParseAugAssign.swift",
        "Statements/ParseClassDef.swift",
        "Statements/ParseComment.swift",
        "Statements/ParseContinueBreak.swift",
        "Statements/ParseDecorators.swift",
        "Statements/ParseDelete.swift",
        "Statements/ParseExpressionStatement.swift",
        "Statements/ParseFor.swift",
        "Statements/ParseFunctionDef.swift",
        "Statements/ParseGlobalNonlocal.swift",
        "Statements/ParseIfStatement.swift",
        "Statements/ParseImport.swift",
        "Statements/ParseImportFrom.swift",
        "Statements/ParsePass.swift",
        "Statements/ParseRaise.swift",
        "Statements/ParseReturn.swift",
        "Statements/ParseSuite.swift",
        "Statements/ParseTry.swift",
        "Statements/ParseWhile.swift",
        "Statements/ParseWith.swift",
        "Statements/ParseYield.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "VioletParser"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VioletParser",
      "module_type" : "SwiftTarget",
      "name" : "VioletParser",
      "path" : "Sources/Parser",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "ASTNode.swift",
        "ASTValidator.swift",
        "Atoms/FString.swift",
        "Atoms/FStringError.swift",
        "Atoms/Parser+Atom.swift",
        "Atoms/Parser+List.swift",
        "Atoms/Parser+Parens.swift",
        "Atoms/Parser+Set+Dictionary.swift",
        "Atoms/Parser+String.swift",
        "Errors/ExpectedToken.swift",
        "Errors/ParserError.swift",
        "Errors/ParserErrorKind.swift",
        "Errors/ParserWarning.swift",
        "Expressions/Parser+Arguments.swift",
        "Expressions/Parser+CallArguments.swift",
        "Expressions/Parser+Comprehension.swift",
        "Expressions/Parser+Expression.swift",
        "Expressions/Parser+ExpressionList.swift",
        "Expressions/Parser+Trailer.swift",
        "Expressions/Parser+YieldExpr.swift",
        "Generated/AST.swift",
        "Generated/ASTBuilder.swift",
        "Generated/ASTVisitors.swift",
        "LexerAdapter.swift",
        "Parser+UNIMPLEMENTED.swift",
        "Parser.swift",
        "ParserDelegate.swift",
        "Printer/ASTPrinter+Expr.swift",
        "Printer/ASTPrinter+Stmt.swift",
        "Printer/ASTPrinter.swift",
        "SetLoadExpressionContext.swift",
        "SetStoreExpressionContext.swift",
        "Statements/Parser+CompoundStmt.swift",
        "Statements/Parser+Decorated.swift",
        "Statements/Parser+ExpressionStmt.swift",
        "Statements/Parser+Func+Class.swift",
        "Statements/Parser+Import.swift",
        "Statements/Parser+SmallStmt.swift",
        "Statements/Parser+Stmt.swift",
        "Statements/Parser+Try.swift"
      ],
      "target_dependencies" : [
        "VioletLexer",
        "Rapunzel"
      ],
      "type" : "library"
    },
    {
      "c99name" : "VioletObjectsTests",
      "module_type" : "SwiftTarget",
      "name" : "VioletObjectsTests",
      "path" : "Tests/ObjectsTests",
      "sources" : [
        "Configuration/ArgumentsTests.swift",
        "Configuration/EnvironmentTests.swift",
        "Fakes/FakeDelegate.swift",
        "Fakes/FakeFileSystem.swift",
        "Fakes/FakeReadFileDescriptor.swift",
        "Fakes/FakeWriteFileDescriptor.swift",
        "Fakes/shouldNotBeCalled.swift",
        "Generated/InvalidSelfArgumentMessageTests.swift",
        "Helpers tests/ArgumentParserTests.swift",
        "Helpers tests/DocHelperTests.swift",
        "Helpers tests/HashFloat.swift",
        "Helpers tests/HashInt.swift",
        "Helpers tests/HashString.swift",
        "Memory/GenericLayoutTests.swift",
        "Modules - sys/SysFlagsTests.swift",
        "PyTestCase+Asserts.swift",
        "PyTestCase+InvalidSelfArgumentMessage.swift",
        "PyTestCase+Methods.swift",
        "PyTestCase.swift",
        "Types - basic/PyBoolTests.swift",
        "Types - basic/PyComplex-NewTests.swift",
        "Types - basic/PyComplexTests.swift",
        "Types - basic/PyFloat-BinaryTests.swift",
        "Types - basic/PyFloat-EqualCompareTests.swift",
        "Types - basic/PyFloat-TernaryTests.swift",
        "Types - basic/PyFloat-UnaryTests.swift",
        "Types - basic/PyFloatTests.swift",
        "Types - basic/PyInt-BinaryTests.swift",
        "Types - basic/PyInt-EqualCompareTests.swift",
        "Types - basic/PyInt-TernaryTests.swift",
        "Types - basic/PyInt-UnaryTests.swift",
        "Types - basic/PyIntTests.swift",
        "Types - code/PyFrame-BlockStackTests.swift",
        "Types - code/PyFrame-ObjectStackTests.swift",
        "Types - code/PyFrameTestsMixin.swift",
        "Types - dictionary/OrderedDictionaryTests.swift",
        "Types - dictionary/PyDictTests.swift",
        "Types - list & tuple/PyListTests.swift",
        "Types - list & tuple/PyTupleTests.swift",
        "Types - object & type/PyObjectFlagsTests.swift",
        "Types - object & type/PyTypeTests.swift",
        "Types - string/PyStringTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "VioletObjects"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VioletObjects",
      "module_type" : "SwiftTarget",
      "name" : "VioletObjects",
      "path" : "Sources/Objects",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "Configuration/ArgumentBinding.swift",
        "Configuration/Arguments.swift",
        "Configuration/Configure.swift",
        "Configuration/Environment.swift",
        "Generated/ExceptionSubclasses.swift",
        "Generated/FunctionWrappers.swift",
        "Generated/IdStrings.swift",
        "Generated/Py+ErrorTypeDefinitions.swift",
        "Generated/Py+Generated.swift",
        "Generated/Py+TypeDefinitions.swift",
        "Generated/PyCast.swift",
        "Generated/PyStaticCall.swift",
        "Generated/Types+Generated.swift",
        "Helpers/ArgumentParser.swift",
        "Helpers/AttributeHelper.swift",
        "Helpers/Collections/DelItemHelper.swift",
        "Helpers/Collections/GetItemHelper.swift",
        "Helpers/Collections/IndexHelper.swift",
        "Helpers/Collections/SetItemHelper.swift",
        "Helpers/DescriptorHelpers.swift",
        "Helpers/DocHelper.swift",
        "Helpers/FloatCompareHelper.swift",
        "Helpers/Frexp.swift",
        "Helpers/Hasher.swift",
        "Helpers/MethodResolutionOrder.swift",
        "Helpers/PyModuleImplementation.swift",
        "Invariants.swift",
        "Memory/BufferPtr.swift",
        "Memory/GenericLayout.swift",
        "Memory/Ptr.swift",
        "Memory/PyMemory.swift",
        "Memory/RawPtr.swift",
        "Modules - _imp/UnderscoreImp+Builtins.swift",
        "Modules - _imp/UnderscoreImp+Lock.swift",
        "Modules - _imp/UnderscoreImp+UNIMPLEMENTED.swift",
        "Modules - _imp/UnderscoreImp.swift",
        "Modules - _os/UnderscoreOS.swift",
        "Modules - _warnings/UnderscoreWarnings+Entities.swift",
        "Modules - _warnings/UnderscoreWarnings+Properties.swift",
        "Modules - _warnings/UnderscoreWarnings+Show.swift",
        "Modules - _warnings/UnderscoreWarnings+Warn.swift",
        "Modules - _warnings/UnderscoreWarnings+WarnExplicit.swift",
        "Modules - _warnings/UnderscoreWarnings.swift",
        "Modules - builtins/Builtins+FillDict.swift",
        "Modules - builtins/Builtins+Functions.swift",
        "Modules - builtins/Builtins+UNIMPLEMENTED.swift",
        "Modules - builtins/Builtins.swift",
        "Modules - sys/Sys+Entities.swift",
        "Modules - sys/Sys+Functions.swift",
        "Modules - sys/Sys+Hooks.swift",
        "Modules - sys/Sys+Modules.swift",
        "Modules - sys/Sys+Prefix+Path.swift",
        "Modules - sys/Sys+Prompt.swift",
        "Modules - sys/Sys+Properties.swift",
        "Modules - sys/Sys+Streams.swift",
        "Modules - sys/Sys+UNIMPLEMENTED.swift",
        "Modules - sys/Sys+Version.swift",
        "Modules - sys/Sys.swift",
        "Py+Thingies/Py+Any+All+Sum.swift",
        "Py+Thingies/Py+Attributes.swift",
        "Py+Thingies/Py+Bin+Hex+Oct.swift",
        "Py+Thingies/Py+Bool.swift",
        "Py+Thingies/Py+Call.swift",
        "Py+Thingies/Py+Class.swift",
        "Py+Thingies/Py+Code.swift",
        "Py+Thingies/Py+CollectionIteration.swift",
        "Py+Thingies/Py+Collections.swift",
        "Py+Thingies/Py+Compare.swift",
        "Py+Thingies/Py+Compile.swift",
        "Py+Thingies/Py+Error creation.swift",
        "Py+Thingies/Py+Error.swift",
        "Py+Thingies/Py+Exec+Eval.swift",
        "Py+Thingies/Py+Hash.swift",
        "Py+Thingies/Py+Import.swift",
        "Py+Thingies/Py+Importlib.swift",
        "Py+Thingies/Py+Locals+Globals.swift",
        "Py+Thingies/Py+Min+Max.swift",
        "Py+Thingies/Py+Next+Iter.swift",
        "Py+Thingies/Py+Numeric.swift",
        "Py+Thingies/Py+NumericBinary.swift",
        "Py+Thingies/Py+NumericTernary.swift",
        "Py+Thingies/Py+NumericUnary.swift",
        "Py+Thingies/Py+Open.swift",
        "Py+Thingies/Py+Ord+Chr.swift",
        "Py+Thingies/Py+Other.swift",
        "Py+Thingies/Py+Print.swift",
        "Py+Thingies/Py+PrintError.swift",
        "Py+Thingies/Py+PrintTraceback.swift",
        "Py+Thingies/Py+Str+Repr+ASCII.swift",
        "Py+Thingies/Py+String.swift",
        "Py+Thingies/Py+Subscripts.swift",
        "Py+Thingies/Py+Type.swift",
        "Py+Thingies/Py+Warning.swift",
        "Py.swift",
        "PyConfig.swift",
        "PyDelegateType.swift",
        "PyFileSystemType.swift",
        "PyObject+Flags.swift",
        "PyObject.swift",
        "PyObjectMixin.swift",
        "PyType+Flags.swift",
        "PyType+new+init.swift",
        "PyType.swift",
        "Results/CompareResult.swift",
        "Results/DirResult.swift",
        "Results/HashResult.swift",
        "Results/PyResult.swift",
        "Results/PyResultGen.swift",
        "Types - basic/PyBool.swift",
        "Types - basic/PyComplex.swift",
        "Types - basic/PyEllipsis.swift",
        "Types - basic/PyFloat+Hex.swift",
        "Types - basic/PyFloat.swift",
        "Types - basic/PyInt.swift",
        "Types - basic/PyNamespace.swift",
        "Types - basic/PyNone.swift",
        "Types - basic/PyNotImplemented.swift",
        "Types - code/PyCell.swift",
        "Types - code/PyCode.swift",
        "Types - code/PyFrame+BlockStack.swift",
        "Types - code/PyFrame+CellFreeVariables.swift",
        "Types - code/PyFrame+FastLocals.swift",
        "Types - code/PyFrame+FastLocalsCellFreeBlockStackStorage.swift",
        "Types - code/PyFrame+LocalsDict.swift",
        "Types - code/PyFrame+ObjectStack.swift",
        "Types - code/PyFrame.swift",
        "Types - code/PyModule.swift",
        "Types - code/PySuper+Init.swift",
        "Types - code/PySuper.swift",
        "Types - collections/PyCallableIterator.swift",
        "Types - collections/PyEnumerate.swift",
        "Types - collections/PyFilter.swift",
        "Types - collections/PyIterator.swift",
        "Types - collections/PyMap.swift",
        "Types - collections/PyRange.swift",
        "Types - collections/PyRangeIterator.swift",
        "Types - collections/PyReversed.swift",
        "Types - collections/PySlice.swift",
        "Types - collections/PyZip.swift",
        "Types - dictionary/Abstract/AbstractDictView.swift",
        "Types - dictionary/Abstract/AbstractDictViewIterator.swift",
        "Types - dictionary/OrderedDictionary.swift",
        "Types - dictionary/PyDict+Update.swift",
        "Types - dictionary/PyDict.swift",
        "Types - dictionary/PyDictItemIterator.swift",
        "Types - dictionary/PyDictItems.swift",
        "Types - dictionary/PyDictKeyIterator.swift",
        "Types - dictionary/PyDictKeys.swift",
        "Types - dictionary/PyDictValueIterator.swift",
        "Types - dictionary/PyDictValues.swift",
        "Types - errors/PyBaseException.swift",
        "Types - errors/PyErrorMixin.swift",
        "Types - errors/PyImportError.swift",
        "Types - errors/PyKeyError.swift",
        "Types - errors/PyStopIteration.swift",
        "Types - errors/PySyntaxError.swift",
        "Types - errors/PySystemExit.swift",
        "Types - errors/PyTraceback.swift",
        "Types - errors/Where are the other exceptions.swift",
        "Types - functions/Helpers/AbstractBuiltinFunction.swift",
        "Types - functions/Helpers/FunctionWrapper+HandWritten.swift",
        "Types - functions/PyBuiltinFunction.swift",
        "Types - functions/PyBuiltinMethod.swift",
        "Types - functions/PyClassMethod.swift",
        "Types - functions/PyFunction.swift",
        "Types - functions/PyMethod.swift",
        "Types - functions/PyProperty.swift",
        "Types - functions/PyStaticMethod.swift",
        "Types - io/FileMode.swift",
        "Types - io/PyFileDescriptorType.swift",
        "Types - io/PyTextFile.swift",
        "Types - list & tuple/Abstract/AbstractSequence+Add+Mul.swift",
        "Types - list & tuple/Abstract/AbstractSequence+Contains+Count+IndexOf.swift",
        "Types - list & tuple/Abstract/AbstractSequence+Equal+Compare.swift",
        "Types - list & tuple/Abstract/AbstractSequence+GetItem.swift",
        "Types - list & tuple/Abstract/AbstractSequence+Repr.swift",
        "Types - list & tuple/Abstract/AbstractSequence.swift",
        "Types - list & tuple/PyList+Sort.swift",
        "Types - list & tuple/PyList.swift",
        "Types - list & tuple/PyListIterator.swift",
        "Types - list & tuple/PyListReverseIterator.swift",
        "Types - list & tuple/PyTuple.swift",
        "Types - list & tuple/PyTupleIterator.swift",
        "Types - set/Abstract/AbstractSet+And+Or+Xor+Sub.swift",
        "Types - set/Abstract/AbstractSet+Contains.swift",
        "Types - set/Abstract/AbstractSet+Equal+Compare.swift",
        "Types - set/Abstract/AbstractSet+Intersection+Union+Difference.swift",
        "Types - set/Abstract/AbstractSet+IsSubset+IsSuperset+IsDisjoint.swift",
        "Types - set/Abstract/AbstractSet+Repr.swift",
        "Types - set/Abstract/AbstractSet.swift",
        "Types - set/OrderedSet.swift",
        "Types - set/PyAnySet.swift",
        "Types - set/PyFrozenSet.swift",
        "Types - set/PySet.swift",
        "Types - set/PySetIterator.swift",
        "Types - string/Abstract bytes/AbstractBytes+AbstractString.swift",
        "Types - string/Abstract bytes/AbstractBytes+New.swift",
        "Types - string/Abstract bytes/AbstractBytes.swift",
        "Types - string/Abstract string/AbstractString+Add+Mul.swift",
        "Types - string/Abstract string/AbstractString+Case.swift",
        "Types - string/Abstract string/AbstractString+Center+Just+Zfill.swift",
        "Types - string/Abstract string/AbstractString+Contains+Count+IndexOf.swift",
        "Types - string/Abstract string/AbstractString+Equal+Compare.swift",
        "Types - string/Abstract string/AbstractString+ExpandTabs.swift",
        "Types - string/Abstract string/AbstractString+Find.swift",
        "Types - string/Abstract string/AbstractString+Join.swift",
        "Types - string/Abstract string/AbstractString+Partition.swift",
        "Types - string/Abstract string/AbstractString+Properties.swift",
        "Types - string/Abstract string/AbstractString+Replace.swift",
        "Types - string/Abstract string/AbstractString+Split.swift",
        "Types - string/Abstract string/AbstractString+SplitLines.swift",
        "Types - string/Abstract string/AbstractString+StartsWith+EndsWith.swift",
        "Types - string/Abstract string/AbstractString+Strip.swift",
        "Types - string/Abstract string/AbstractString+Substring.swift",
        "Types - string/Abstract string/AbstractString.swift",
        "Types - string/Builders/BytesBuilder.swift",
        "Types - string/Builders/StringBuilderType.swift",
        "Types - string/Builders/UnicodeScalarBuilder.swift",
        "Types - string/PyAnyBytes.swift",
        "Types - string/PyByteArray.swift",
        "Types - string/PyByteArrayIterator.swift",
        "Types - string/PyBytes.swift",
        "Types - string/PyBytesIterator.swift",
        "Types - string/PyString+AbstractString.swift",
        "Types - string/PyString+Encoding.swift",
        "Types - string/PyString+ErrorHandling.swift",
        "Types - string/PyString+GetItem.swift",
        "Types - string/PyString.swift",
        "Types - string/PyStringIterator.swift",
        "UNIMPLEMENTED.swift"
      ],
      "target_dependencies" : [
        "VioletBytecode",
        "UnicodeData",
        "FileSystem"
      ],
      "type" : "library"
    },
    {
      "c99name" : "VioletLexerTests",
      "module_type" : "SwiftTarget",
      "name" : "VioletLexerTests",
      "path" : "Tests/LexerTests",
      "sources" : [
        "CommentTests.swift",
        "FloatingPointTests.swift",
        "Globals.swift",
        "IdentifierTests.swift",
        "IndentSpaceTests.swift",
        "IndentTabTests.swift",
        "IndentTests.swift",
        "IntegerTests.swift",
        "OperatorTests.swift",
        "OtherTests.swift",
        "StringTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "VioletLexer"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VioletLexer",
      "module_type" : "SwiftTarget",
      "name" : "VioletLexer",
      "path" : "Sources/Lexer",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "Globals.swift",
        "Lexer+Comment.swift",
        "Lexer+GetToken.swift",
        "Lexer+Identifier.swift",
        "Lexer+Indent.swift",
        "Lexer+Number.swift",
        "Lexer+String.swift",
        "Lexer+UNIMPLEMENTED.swift",
        "Lexer.swift",
        "LexerDelegate.swift",
        "LexerError.swift",
        "LexerType.swift",
        "LexerWarning.swift",
        "NumberType.swift",
        "StringPrefix.swift",
        "Token.swift"
      ],
      "target_dependencies" : [
        "VioletCore",
        "BigInt"
      ],
      "type" : "library"
    },
    {
      "c99name" : "VioletCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "VioletCoreTests",
      "path" : "Tests/CoreTests",
      "sources" : [
        "Extensions/BidirectionalCollection+DropLast.swift",
        "Extensions/BidirectionalCollection+EndsWith.swift",
        "Extensions/BidirectionalCollection+TakeLast.swift",
        "Extensions/Collection+TakeFirst.swift",
        "Extensions/Dictionary+TakeExisting.swift",
        "Extensions/MutableCollection+RemoveDuplicates.swift",
        "Extensions/UnicodeScalar+codePointNotation.swift",
        "SipHashTests.swift",
        "UseScalarsToHashStringTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "VioletCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VioletCore",
      "module_type" : "SwiftTarget",
      "name" : "VioletCore",
      "path" : "Sources/Core",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "Double+PythonParse.swift",
        "Extensions/CollectionExtensions.swift",
        "Extensions/StringExtensions.swift",
        "Lyrics.swift",
        "NonEmptyArray.swift",
        "SipHash.swift",
        "SourceLocation.swift",
        "Trap.swift",
        "Unreachable.swift",
        "UseScalarsToHashString.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "VioletCompilerTests",
      "module_type" : "SwiftTarget",
      "name" : "VioletCompilerTests",
      "path" : "Tests/CompilerTests",
      "sources" : [
        "ASTCreator.swift",
        "CodeObject+Extensions.swift",
        "Compile expr/CompileAttribute.swift",
        "Compile expr/CompileCall.swift",
        "Compile expr/CompileConstants.swift",
        "Compile expr/CompileDictionary.swift",
        "Compile expr/CompileIfExpr.swift",
        "Compile expr/CompileLambda.swift",
        "Compile expr/CompileList.swift",
        "Compile expr/CompileOperators.swift",
        "Compile expr/CompileSet.swift",
        "Compile expr/CompileString.swift",
        "Compile expr/CompileSubscript.swift",
        "Compile expr/CompileTuple.swift",
        "Compile stmt/CompileAnnAssign.swift",
        "Compile stmt/CompileAssert.swift",
        "Compile stmt/CompileAssign.swift",
        "Compile stmt/CompileAugAssign.swift",
        "Compile stmt/CompileClassDef.swift",
        "Compile stmt/CompileClosure.swift",
        "Compile stmt/CompileDelete.swift",
        "Compile stmt/CompileFor.swift",
        "Compile stmt/CompileFunctionDef.swift",
        "Compile stmt/CompileIfStmt.swift",
        "Compile stmt/CompileImport.swift",
        "Compile stmt/CompileImportFrom.swift",
        "Compile stmt/CompileLoadClassFree.swift",
        "Compile stmt/CompileRaise.swift",
        "Compile stmt/CompileTrivial.swift",
        "Compile stmt/CompileTry.swift",
        "Compile stmt/CompileWhile.swift",
        "Compile stmt/CompileWith.swift",
        "CompileAsserts.swift",
        "CompileTestCase.swift",
        "FutureFeaturesTests.swift",
        "OptimizationLevelTests.swift",
        "SourceLocations.swift",
        "Symbol table/STAssign.swift",
        "Symbol table/STClass.swift",
        "Symbol table/STExpr.swift",
        "Symbol table/STExprComprehension.swift",
        "Symbol table/STFunction.swift",
        "Symbol table/STImport.swift",
        "Symbol table/STLambda.swift",
        "Symbol table/STStmt.swift",
        "Symbol table/STTopScope.swift",
        "Symbol table/SymbolInfoTests.swift",
        "SymbolTableAsserts.swift",
        "SymbolTableTestCase.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "VioletCompiler"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VioletCompiler",
      "module_type" : "SwiftTarget",
      "name" : "VioletCompiler",
      "path" : "Sources/Compiler",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "CodeObjectBuilder+AdditionalAppend.swift",
        "Compiler.swift",
        "CompilerDelegate.swift",
        "CompilerError.swift",
        "CompilerWarning.swift",
        "FutureFeatures.swift",
        "Implementation/BlockType.swift",
        "Implementation/CompilerImpl+Assign.swift",
        "Implementation/CompilerImpl+Call.swift",
        "Implementation/CompilerImpl+Class.swift",
        "Implementation/CompilerImpl+Collections.swift",
        "Implementation/CompilerImpl+Expr.swift",
        "Implementation/CompilerImpl+Function.swift",
        "Implementation/CompilerImpl+Import.swift",
        "Implementation/CompilerImpl+InNewCodeObject.swift",
        "Implementation/CompilerImpl+Raise+Try.swift",
        "Implementation/CompilerImpl+Stmt.swift",
        "Implementation/CompilerImpl+UNIMPLEMENTED.swift",
        "Implementation/CompilerImpl.swift",
        "Implementation/CompilerUnit.swift",
        "SpecialIdentifiers.swift",
        "Statement+DocString.swift",
        "Symbol table/SymbolInfo.swift",
        "Symbol table/SymbolScope.swift",
        "Symbol table/SymbolTable.swift",
        "Symbol table/SymbolTableBuilder.swift",
        "Symbol table/SymbolTableBuilderImpl+Expr.swift",
        "Symbol table/SymbolTableBuilderImpl+Stmt.swift",
        "Symbol table/SymbolTableBuilderImpl.swift",
        "Symbol table/SymbolTableVariableSourcePass.swift"
      ],
      "target_dependencies" : [
        "VioletParser",
        "VioletBytecode"
      ],
      "type" : "library"
    },
    {
      "c99name" : "VioletBytecodeTests",
      "module_type" : "SwiftTarget",
      "name" : "VioletBytecodeTests",
      "path" : "Tests/BytecodeTests",
      "sources" : [
        "Builder/BuilderClassTests.swift",
        "Builder/BuilderCollectionTests.swift",
        "Builder/BuilderConstants-UsesScalarsForStringsTests.swift",
        "Builder/BuilderConstantsTests.swift",
        "Builder/BuilderFunctionTests.swift",
        "Builder/BuilderGeneralTests.swift",
        "Builder/BuilderGeneratorTests.swift",
        "Builder/BuilderImportTests.swift",
        "Builder/BuilderJumpTests.swift",
        "Builder/BuilderLoadStoreDelete-AttributeTests.swift",
        "Builder/BuilderLoadStoreDelete-CellTests.swift",
        "Builder/BuilderLoadStoreDelete-ClosureTests.swift",
        "Builder/BuilderLoadStoreDelete-FastTests.swift",
        "Builder/BuilderLoadStoreDelete-FreeTests.swift",
        "Builder/BuilderLoadStoreDelete-GlobalTests.swift",
        "Builder/BuilderLoadStoreDelete-NameTests.swift",
        "Builder/BuilderLoadStoreDelete-SubscriptTests.swift",
        "Builder/BuilderLoopTests.swift",
        "Builder/BuilderOperationsTests.swift",
        "Builder/BuilderStringTests.swift",
        "Builder/BuilderTests.swift",
        "Builder/BuilderTryTests.swift",
        "Builder/BuilderWithTests.swift",
        "CodeObjectDescriptionTests.swift",
        "CodeObjectFilledInstructionTests.swift",
        "Globals/ConstantGlobals.swift",
        "Globals/InstructionGlobals.swift",
        "Globals/LabelGlobals.swift",
        "Globals/NameGlobals.swift",
        "Globals/createBuilder.swift",
        "InstructionDescriptionTests.swift",
        "InstructionFilledDescriptionTests.swift",
        "InstructionTests.swift",
        "MangledNameTests.swift",
        "Peephole entities/PeepholeInstructionTests.swift",
        "Peephole entities/PeepholeJumpTableTests.swift",
        "Peephole/PeepholeBuildTupleTests.swift",
        "Peephole/PeepholeBuildTuple_ConstantTupleTests.swift",
        "Peephole/PeepholeBuildTuple_UnpackSequenceTests.swift",
        "Peephole/PeepholeJumpIfOrPop_ConditionalJumpTests.swift",
        "Peephole/PeepholeJumpTests.swift",
        "Peephole/PeepholeJump_JumpToAbsoluteJumpTests.swift",
        "Peephole/PeepholeJump_JumpToReturnTests.swift",
        "Peephole/PeepholeLoadConstTests.swift",
        "Peephole/PeepholeLoadConst_PopJumpIfTests.swift",
        "Peephole/PeepholeReturnTests.swift",
        "Peephole/PeepholeTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "VioletBytecode"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VioletBytecode",
      "module_type" : "SwiftTarget",
      "name" : "VioletBytecode",
      "path" : "Sources/Bytecode",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "Builder/CodeObjectBuilder+Class.swift",
        "Builder/CodeObjectBuilder+Collections+Unpack.swift",
        "Builder/CodeObjectBuilder+Constants.swift",
        "Builder/CodeObjectBuilder+Function.swift",
        "Builder/CodeObjectBuilder+General.swift",
        "Builder/CodeObjectBuilder+Generators+Coroutines.swift",
        "Builder/CodeObjectBuilder+Import.swift",
        "Builder/CodeObjectBuilder+Jump.swift",
        "Builder/CodeObjectBuilder+Loop.swift",
        "Builder/CodeObjectBuilder+Operations.swift",
        "Builder/CodeObjectBuilder+Store+Load+Delete.swift",
        "Builder/CodeObjectBuilder+String.swift",
        "Builder/CodeObjectBuilder+Try+Catch.swift",
        "Builder/CodeObjectBuilder+With.swift",
        "Builder/CodeObjectBuilder.swift",
        "Builder/CodeObjectBuilderCache.swift",
        "CodeObject+CustomStringConvertible.swift",
        "CodeObject+GetFilledInstruction.swift",
        "CodeObject.swift",
        "Generated/Instructions+Description.swift",
        "Generated/Instructions+Filled+Description.swift",
        "Generated/Instructions+Filled.swift",
        "Generated/Instructions.swift",
        "Instructions+Misc.swift",
        "MangledName.swift",
        "Peephole/OptimizationResult.swift",
        "Peephole/PeepholeInstruction.swift",
        "Peephole/PeepholeJumpTable.swift",
        "Peephole/PeepholeOptimizer+BuildTuple.swift",
        "Peephole/PeepholeOptimizer+JumpIfOrPop.swift",
        "Peephole/PeepholeOptimizer+Jumps.swift",
        "Peephole/PeepholeOptimizer+LoadConst.swift",
        "Peephole/PeepholeOptimizer+Return.swift",
        "Peephole/PeepholeOptimizer.swift"
      ],
      "target_dependencies" : [
        "VioletCore",
        "BigInt"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Violet",
      "module_type" : "SwiftTarget",
      "name" : "Violet",
      "path" : "Sources/Violet",
      "product_memberships" : [
        "Violet"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "VioletVM"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "UnicodeDataTests",
      "module_type" : "SwiftTarget",
      "name" : "UnicodeDataTests",
      "path" : "Tests/UnicodeDataTests",
      "sources" : [
        "ASCIIData.swift",
        "Asserts.swift",
        "Generated/UnicodeData - Arabic.swift",
        "Generated/UnicodeData - Basic Latin.swift",
        "Generated/UnicodeData - Braille Patterns.swift",
        "Generated/UnicodeData - Chess Symbols.swift",
        "Generated/UnicodeData - Combining Diacritical Marks.swift",
        "Generated/UnicodeData - Emoticons.swift",
        "Generated/UnicodeData - Hangul Jamo.swift",
        "Generated/UnicodeData - Hiragana.swift",
        "Generated/UnicodeData - Katakana.swift",
        "Generated/UnicodeData - Latin Extended-A.swift",
        "Generated/UnicodeData - Latin-1 Supplement.swift",
        "Generated/UnicodeData - Mathematical Operators.swift",
        "Generated/UnicodeData - Playing Cards.swift",
        "Generated/UnicodeData - Transport and Map Symbols.swift",
        "UnicodeData - ASCII.swift",
        "UnicodeData - Does not crash.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "UnicodeData"
      ],
      "type" : "test"
    },
    {
      "c99name" : "UnicodeData",
      "module_type" : "SwiftTarget",
      "name" : "UnicodeData",
      "path" : "Sources/UnicodeData",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "ASCIIData.swift",
        "Generated.swift",
        "UnicodeData+CaseMapping.swift",
        "UnicodeData+Record.swift",
        "UnicodeData.swift",
        "UnicodeScalar+unsafeInit.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RapunzelTests",
      "module_type" : "SwiftTarget",
      "name" : "RapunzelTests",
      "path" : "Tests/RapunzelTests",
      "sources" : [
        "Lyrics.swift",
        "Tests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Rapunzel"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Rapunzel",
      "module_type" : "SwiftTarget",
      "name" : "Rapunzel",
      "path" : "Sources/Rapunzel",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet",
        "Rapunzel"
      ],
      "sources" : [
        "Rapunzel.swift",
        "Wadler.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PyTests",
      "module_type" : "SwiftTarget",
      "name" : "PyTests",
      "path" : "Sources/PyTests",
      "product_memberships" : [
        "PyTests"
      ],
      "sources" : [
        "TestRunner.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "VioletVM",
        "FileSystem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "FileSystemTests",
      "module_type" : "SwiftTarget",
      "name" : "FileSystemTests",
      "path" : "Tests/FileSystemTests",
      "sources" : [
        "FakeFileManager.swift",
        "FileSystemTest.swift",
        "JoinTests.swift",
        "NameTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "FileSystem"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FileSystem",
      "module_type" : "SwiftTarget",
      "name" : "FileSystem",
      "path" : "Sources/FileSystem",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "FileDescriptor.swift",
        "FileManagerType.swift",
        "FileSystem+Creat.swift",
        "FileSystem+Join.swift",
        "FileSystem+Mkdir.swift",
        "FileSystem+Names.swift",
        "FileSystem+Readdir.swift",
        "FileSystem+Stat.swift",
        "FileSystem.swift",
        "Filename.swift",
        "LibC.swift",
        "Path.swift",
        "PathPartConvertible.swift"
      ],
      "target_dependencies" : [
        "VioletCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Elsa",
      "module_type" : "SwiftTarget",
      "name" : "Elsa",
      "path" : "Sources/Elsa",
      "product_memberships" : [
        "Elsa"
      ],
      "sources" : [
        "Entities/Doc.swift",
        "Entities/Enumeration.swift",
        "Entities/ProductType.swift",
        "Entities/SourceFile.swift",
        "Entities/SourceFileVisitor.swift",
        "Entities/SourceLocation.swift",
        "Entities/Token.swift",
        "Entities/Types.swift",
        "Generation-AST/AstSourceFileVisitor.swift",
        "Generation-AST/EmitAstBuilderVisitor.swift",
        "Generation-AST/EmitAstVisitor.swift",
        "Generation-AST/EmitAstVisitorsVisitor.swift",
        "Generation-Bytecode/BytecodeFileVisitor.swift",
        "Generation-Bytecode/EmitBytecodeDescriptionVisitor.swift",
        "Generation-Bytecode/EmitBytecodeDocumentationVisitor.swift",
        "Generation-Bytecode/EmitBytecodeFilledDescriptionVisitor.swift",
        "Generation-Bytecode/EmitBytecodeFilledVisitor.swift",
        "Generation-Bytecode/EmitBytecodeVisitor.swift",
        "Globals.swift",
        "Lexer.swift",
        "Parser.swift",
        "main.swift"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "BigIntTests",
      "module_type" : "SwiftTarget",
      "name" : "BigIntTests",
      "path" : "Tests/BigIntTests",
      "sources" : [
        "BigInt - other projects/AppleBigIntDivTests.swift",
        "BigInt - other projects/AppleBigIntTests.swift",
        "BigInt - other projects/BigIntFloatingPointTests.swift",
        "BigInt - property based/ApplyA_ApplyB_Equals_ApplyAB.swift",
        "BigInt - property based/ApplyA_UndoA.swift",
        "BigInt/BigIntCOWTests.swift",
        "BigInt/BigIntHashTests.swift",
        "BigInt/BigIntIntegerInitTests.swift",
        "BigInt/BigIntMemoryLayoutTests.swift",
        "BigInt/BigIntPowerTests.swift",
        "BigInt/BigIntPropertyTests.swift",
        "BigInt/BigIntPythonStringInitTests.swift",
        "BigInt/BigIntStringInitTests.swift",
        "Heap/BigIntHeapAddTests.swift",
        "Heap/BigIntHeapAndTests.swift",
        "Heap/BigIntHeapComparableTests.swift",
        "Heap/BigIntHeapDivRemTests.swift",
        "Heap/BigIntHeapDivTests.swift",
        "Heap/BigIntHeapEquatableTests.swift",
        "Heap/BigIntHeapHashableTests.swift",
        "Heap/BigIntHeapInvertTests.swift",
        "Heap/BigIntHeapMulTests.swift",
        "Heap/BigIntHeapNegateTests.swift",
        "Heap/BigIntHeapOrTests.swift",
        "Heap/BigIntHeapPropertyTests.swift",
        "Heap/BigIntHeapRemTests.swift",
        "Heap/BigIntHeapShiftTests.swift",
        "Heap/BigIntHeapStringTests.swift",
        "Heap/BigIntHeapSubTests.swift",
        "Heap/BigIntHeapXorTests.swift",
        "Heap/BigIntStorageTests.swift",
        "Helpers/BigIntHeapHelpers.swift",
        "Helpers/BigIntHelpers.swift",
        "Helpers/BitWidthTestCases.swift",
        "Helpers/GenerateNumbers.swift",
        "Helpers/GlobalFunctions.swift",
        "Helpers/MinRequiredWidthTestCases.swift",
        "Helpers/StringTestCases.swift",
        "Helpers/WordsTestCases.swift",
        "Node/NodeTests+Support.swift",
        "Node/NodeTests.swift",
        "Smi vs heap/SmiVsHeapHash.swift",
        "Smi vs heap/SmiVsHeapProperties.swift",
        "Smi/SmiBinaryTests.swift",
        "Smi/SmiBitTests.swift",
        "Smi/SmiPropertyTests.swift",
        "Smi/SmiShiftTests.swift",
        "Smi/SmiUnaryTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "BigInt"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BigInt",
      "module_type" : "SwiftTarget",
      "name" : "BigInt",
      "path" : "Sources/BigInt",
      "product_memberships" : [
        "Violet",
        "PyTests",
        "LibViolet"
      ],
      "sources" : [
        "BigInt+InitFromBinaryFloatingPoint.swift",
        "BigInt+InitFromPythonString.swift",
        "BigInt+InitFromString.swift",
        "BigInt+ToString.swift",
        "BigInt+Words.swift",
        "BigInt.swift",
        "BigIntHeap+Add.swift",
        "BigIntHeap+And+Or+Xor.swift",
        "BigIntHeap+Div+Rem.swift",
        "BigIntHeap+Equatable+Comparable.swift",
        "BigIntHeap+Mul.swift",
        "BigIntHeap+Shifts.swift",
        "BigIntHeap+Sub.swift",
        "BigIntHeap+ToString.swift",
        "BigIntHeap+Unary.swift",
        "BigIntHeap.swift",
        "BigIntStorage.swift",
        "Smi.swift",
        "extensions.swift"
      ],
      "target_dependencies" : [
        "VioletCore"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.