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 CodeEditLanguages with Swift 6.0 for macOS (SPM).

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/CodeEditApp/CodeEditLanguages.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/CodeEditApp/CodeEditLanguages
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 5b27f13 chore: Update Framework Zip (#70)
Cloned https://github.com/CodeEditApp/CodeEditLanguages.git
Revision (git rev-parse @):
5b27f139269e1ea49ceae5e56dca44a3ccad50a1
SUCCESS checkout https://github.com/CodeEditApp/CodeEditLanguages.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/CodeEditApp/CodeEditLanguages.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/6] Write sources
[2/6] Copying CodeLanguages_Container.framework
[3/6] Copying Resources
[4/6] Write swift-version-6F35C1178C84523A.txt
[5/6] Compiling lib.c
[7/25] Compiling SwiftTreeSitter TSRange.swift
[8/25] Compiling SwiftTreeSitter Tree.swift
[9/26] Compiling SwiftTreeSitter Query.swift
[10/26] Compiling SwiftTreeSitter QueryDefinitions.swift
[11/26] Compiling SwiftTreeSitter String+Data.swift
[12/26] Compiling SwiftTreeSitter String+TextProvider.swift
[13/26] Compiling SwiftTreeSitter ResolvingQueryCursor.swift
[14/26] Compiling SwiftTreeSitter ResolvingQueryMatchSequence.swift
[15/26] Compiling SwiftTreeSitter Language.swift
[16/26] Compiling SwiftTreeSitter LanguageConfiguration.swift
[17/26] Compiling SwiftTreeSitter Point.swift
[18/26] Compiling SwiftTreeSitter Predicate.swift
[19/26] Compiling SwiftTreeSitter Bundle+Extensions.swift
[20/26] Compiling SwiftTreeSitter Encoding+Helpers.swift
[21/26] Emitting module SwiftTreeSitter
[22/26] Compiling SwiftTreeSitter Node.swift
[23/26] Compiling SwiftTreeSitter Parser.swift
[24/26] Compiling SwiftTreeSitter Input.swift
[25/26] Compiling SwiftTreeSitter InputEdit.swift
[26/26] Compiling SwiftTreeSitter TreeCursor.swift
[27/33] Compiling CodeEditLanguages resource_bundle_accessor.swift
[28/33] Compiling CodeEditLanguages TreeSitterLanguage.swift
[29/33] Compiling CodeEditLanguages TreeSitterModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/TreeSitterModel.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TreeSitterModel' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A singleton class to manage `tree-sitter` queries and keep them in memory.
 12 | public class TreeSitterModel {
    |              `- note: class 'TreeSitterModel' does not conform to the 'Sendable' protocol
 13 |
 14 |     /// The singleton/shared instance of ``TreeSitterModel``.
 15 |     public static let shared: TreeSitterModel = .init()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TreeSitterModel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |
 17 |     /// Get a query for a specific language
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:69:16: warning: static property 'bash' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 67 |
 68 |     /// A language structure for `Bash`
 69 |     static let bash: CodeLanguage = .init(
    |                |- warning: static property 'bash' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'bash' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |         id: .bash,
 71 |         tsName: "bash",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:78:16: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |     /// A language structure for `C`
 78 |     static let c: CodeLanguage = .init(
    |                |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         id: .c,
 80 |         tsName: "c",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:87:16: warning: static property 'cpp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 85 |
 86 |     /// A language structure for `C++`
 87 |     static let cpp: CodeLanguage = .init(
    |                |- warning: static property 'cpp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cpp' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |         id: .cpp,
 89 |         tsName: "cpp",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:99:16: warning: static property 'cSharp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 |     /// A language structure for `C#`
 99 |     static let cSharp: CodeLanguage = .init(
    |                |- warning: static property 'cSharp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cSharp' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |         id: .cSharp,
101 |         tsName: "c-sharp",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:108:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
106 |
107 |     /// A language structure for `CSS`
108 |     static let css: CodeLanguage = .init(
    |                |- warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'css' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |         id: .css,
110 |         tsName: "css",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:117:16: warning: static property 'dart' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |     /// A language structure for `Dart`
117 |     static let dart: CodeLanguage = .init(
    |                |- warning: static property 'dart' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dart' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         id: .dart,
119 |         tsName: "dart",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:126:16: warning: static property 'dockerfile' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
124 |
125 |     /// A language structure for `Dockerfile`
126 |     static let dockerfile: CodeLanguage = .init(
    |                |- warning: static property 'dockerfile' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dockerfile' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |         id: .dockerfile,
128 |         tsName: "dockerfile",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:135:16: warning: static property 'elixir' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
133 |
134 |     /// A language structure for `Elixir`
135 |     static let elixir: CodeLanguage = .init(
    |                |- warning: static property 'elixir' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'elixir' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 |         id: .elixir,
137 |         tsName: "elixir",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:146:16: warning: static property 'go' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
144 |
145 |     /// A language structure for `Go`
146 |     static let go: CodeLanguage = .init(
    |                |- warning: static property 'go' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'go' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |         id: .go,
148 |         tsName: "go",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:155:16: warning: static property 'goMod' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
153 |
154 |     /// A language structure for `GoMod`
155 |     static let goMod: CodeLanguage = .init(
    |                |- warning: static property 'goMod' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'goMod' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         id: .goMod,
157 |         tsName: "go-mod",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:164:16: warning: static property 'haskell' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |     /// A language structure for `Haskell`
164 |     static let haskell: CodeLanguage = .init(
    |                |- warning: static property 'haskell' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'haskell' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
165 |         id: .haskell,
166 |         tsName: "haskell",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:173:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
171 |
172 |     /// A language structure for `HTML`
173 |     static let html: CodeLanguage = .init(
    |                |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
174 |         id: .html,
175 |         tsName: "html",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:183:16: warning: static property 'java' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
181 |
182 |     /// A language structure for `Java`
183 |     static let java: CodeLanguage = .init(
    |                |- warning: static property 'java' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'java' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 |         id: .java,
185 |         tsName: "java",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:193:16: warning: static property 'javascript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
191 |
192 |     /// A language structure for `JavaScript`
193 |     static let javascript: CodeLanguage = .init(
    |                |- warning: static property 'javascript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'javascript' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
194 |         id: .javascript,
195 |         tsName: "javascript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:205:16: warning: static property 'jsdoc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
203 |
204 |     /// A language structure for `JSDoc`
205 |     static let jsdoc: CodeLanguage = .init(
    |                |- warning: static property 'jsdoc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'jsdoc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |         id: .jsdoc,
207 |         tsName: "jsdoc",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:223:16: warning: static property 'jsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
221 |
222 |     /// A language structure for `JSX`
223 |     static let jsx: CodeLanguage = .init(
    |                |- warning: static property 'jsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'jsx' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 |         id: .jsx,
225 |         tsName: "javascript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:214:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |     /// A language structure for `JSON`
214 |     static let json: CodeLanguage = .init(
    |                |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |         id: .json,
216 |         tsName: "json",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:242:16: warning: static property 'kotlin' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
240 |
241 |     /// A language structure for `Kotlin`
242 |     static let kotlin: CodeLanguage = .init(
    |                |- warning: static property 'kotlin' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'kotlin' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
243 |         id: .kotlin,
244 |         tsName: "kotlin",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:251:16: warning: static property 'lua' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 |     /// A language structure for `Lua`
251 |     static let lua: CodeLanguage = .init(
    |                |- warning: static property 'lua' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'lua' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 |         id: .lua,
253 |         tsName: "lua",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:261:16: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
259 |
260 |     /// A language structure for `Markdown`
261 |     static let markdown: CodeLanguage = .init(
    |                |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'markdown' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
262 |         id: .markdown,
263 |         tsName: "markdown",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:271:16: warning: static property 'markdownInline' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
269 |
270 |     /// A language structure for `Markdown Inline`
271 |     static let markdownInline: CodeLanguage = .init(
    |                |- warning: static property 'markdownInline' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'markdownInline' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
272 |         id: .markdownInline,
273 |         tsName: "markdown-inline",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:281:16: warning: static property 'objc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
279 |
280 |     /// A language structure for `Objective C`
281 |     static let objc: CodeLanguage = .init(
    |                |- warning: static property 'objc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'objc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 |         id: .objc,
283 |         tsName: "objc",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:290:16: warning: static property 'ocaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
288 |
289 |     /// A language structure for `OCaml`
290 |     static let ocaml: CodeLanguage = .init(
    |                |- warning: static property 'ocaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ocaml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
291 |         id: .ocaml,
292 |         tsName: "ocaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:300:16: warning: static property 'ocamlInterface' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
298 |
299 |     /// A language structure for `OCaml Interface`
300 |     static let ocamlInterface: CodeLanguage = .init(
    |                |- warning: static property 'ocamlInterface' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ocamlInterface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
301 |         id: .ocamlInterface,
302 |         tsName: "ocaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:318:16: warning: static property 'php' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
316 |
317 |     /// A language structure for `PHP`
318 |     static let php: CodeLanguage = .init(
    |                |- warning: static property 'php' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'php' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
319 |         id: .php,
320 |         tsName: "php",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:328:16: warning: static property 'python' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
326 |
327 |     /// A language structure for `Python`
328 |     static let python: CodeLanguage = .init(
    |                |- warning: static property 'python' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'python' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
329 |         id: .python,
330 |         tsName: "python",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:339:16: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
337 |
338 |     /// A language structure for `Regex`
339 |     static let regex: CodeLanguage = .init(
    |                |- warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'regex' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
340 |         id: .regex,
341 |         tsName: "regex",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:348:16: warning: static property 'ruby' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
346 |
347 |     /// A language structure for `Ruby`
348 |     static let ruby: CodeLanguage = .init(
    |                |- warning: static property 'ruby' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ruby' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
349 |         id: .ruby,
350 |         tsName: "ruby",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:357:16: warning: static property 'rust' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
355 |
356 |     /// A language structure for `Rust`
357 |     static let rust: CodeLanguage = .init(
    |                |- warning: static property 'rust' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'rust' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
358 |         id: .rust,
359 |         tsName: "rust",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:373:16: warning: static property 'scala' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
371 |
372 |     /// A language structure for `Scala`
373 |     static let scala: CodeLanguage = .init(
    |                |- warning: static property 'scala' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'scala' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
374 |         id: .scala,
375 |         tsName: "scala",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:382:16: warning: static property 'sql' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
380 |
381 |     /// A language structure for `SQL`
382 |     static let sql: CodeLanguage = .init(
    |                |- warning: static property 'sql' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'sql' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 |         id: .sql,
384 |         tsName: "sql",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:391:16: warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
389 |
390 |     /// A language structure for `Swift`
391 |     static let swift: CodeLanguage = .init(
    |                |- warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'swift' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
392 |         id: .swift,
393 |         tsName: "swift",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:401:16: warning: static property 'toml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
399 |
400 |     /// A language structure for `TOML`
401 |     static let toml: CodeLanguage = .init(
    |                |- warning: static property 'toml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'toml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
402 |         id: .toml,
403 |         tsName: "toml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:410:16: warning: static property 'tsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
408 |
409 |     /// A language structure for `TSX`
410 |     static let tsx: CodeLanguage = .init(
    |                |- warning: static property 'tsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'tsx' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
411 |         id: .tsx,
412 |         tsName: "typescript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:420:16: warning: static property 'typescript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
418 |
419 |     /// A language structure for `Typescript`
420 |     static let typescript: CodeLanguage = .init(
    |                |- warning: static property 'typescript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'typescript' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
421 |         id: .typescript,
422 |         tsName: "typescript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:439:16: warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
437 |
438 |     /// A language structure for `YAML`
439 |     static let yaml: CodeLanguage = .init(
    |                |- warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'yaml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
440 |         id: .yaml,
441 |         tsName: "yaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:448:16: warning: static property 'zig' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
446 |
447 |     /// A language structure for `Zig`
448 |     static let zig: CodeLanguage = .init(
    |                |- warning: static property 'zig' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'zig' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 |         id: .zig,
450 |         tsName: "zig",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
[30/33] Compiling CodeEditLanguages CodeLanguage+DetectLanguage.swift
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:459:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
457 |
458 |     /// The default language (plain text)
459 |     static let `default`: CodeLanguage = .init(
    |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' 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
460 |         id: .plainText,
461 |         tsName: "PlainText",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:15:16: warning: static property 'allLanguages' is not concurrency-safe because non-'Sendable' type '[CodeLanguage]' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |     /// An array of all language structures.
 15 |     static let allLanguages: [CodeLanguage] = [
    |                |- warning: static property 'allLanguages' is not concurrency-safe because non-'Sendable' type '[CodeLanguage]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'allLanguages' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |         .agda,
 17 |         .bash,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
[31/33] Emitting module CodeEditLanguages
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:15:16: warning: static property 'allLanguages' is not concurrency-safe because non-'Sendable' type '[CodeLanguage]' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |     /// An array of all language structures.
 15 |     static let allLanguages: [CodeLanguage] = [
    |                |- warning: static property 'allLanguages' is not concurrency-safe because non-'Sendable' type '[CodeLanguage]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'allLanguages' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |         .agda,
 17 |         .bash,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:60:16: warning: static property 'agda' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 58 |
 59 |     /// A language structure for `Agda`
 60 |     static let agda: CodeLanguage = .init(
    |                |- warning: static property 'agda' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'agda' with '@MainActor' 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 |         id: .agda,
 62 |         tsName: "agda",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:69:16: warning: static property 'bash' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 67 |
 68 |     /// A language structure for `Bash`
 69 |     static let bash: CodeLanguage = .init(
    |                |- warning: static property 'bash' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'bash' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |         id: .bash,
 71 |         tsName: "bash",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:78:16: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |     /// A language structure for `C`
 78 |     static let c: CodeLanguage = .init(
    |                |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         id: .c,
 80 |         tsName: "c",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:87:16: warning: static property 'cpp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 85 |
 86 |     /// A language structure for `C++`
 87 |     static let cpp: CodeLanguage = .init(
    |                |- warning: static property 'cpp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cpp' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |         id: .cpp,
 89 |         tsName: "cpp",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:99:16: warning: static property 'cSharp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 |     /// A language structure for `C#`
 99 |     static let cSharp: CodeLanguage = .init(
    |                |- warning: static property 'cSharp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cSharp' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |         id: .cSharp,
101 |         tsName: "c-sharp",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:108:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
106 |
107 |     /// A language structure for `CSS`
108 |     static let css: CodeLanguage = .init(
    |                |- warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'css' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |         id: .css,
110 |         tsName: "css",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:117:16: warning: static property 'dart' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |     /// A language structure for `Dart`
117 |     static let dart: CodeLanguage = .init(
    |                |- warning: static property 'dart' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dart' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         id: .dart,
119 |         tsName: "dart",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:126:16: warning: static property 'dockerfile' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
124 |
125 |     /// A language structure for `Dockerfile`
126 |     static let dockerfile: CodeLanguage = .init(
    |                |- warning: static property 'dockerfile' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dockerfile' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |         id: .dockerfile,
128 |         tsName: "dockerfile",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:135:16: warning: static property 'elixir' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
133 |
134 |     /// A language structure for `Elixir`
135 |     static let elixir: CodeLanguage = .init(
    |                |- warning: static property 'elixir' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'elixir' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 |         id: .elixir,
137 |         tsName: "elixir",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:146:16: warning: static property 'go' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
144 |
145 |     /// A language structure for `Go`
146 |     static let go: CodeLanguage = .init(
    |                |- warning: static property 'go' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'go' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |         id: .go,
148 |         tsName: "go",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:155:16: warning: static property 'goMod' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
153 |
154 |     /// A language structure for `GoMod`
155 |     static let goMod: CodeLanguage = .init(
    |                |- warning: static property 'goMod' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'goMod' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         id: .goMod,
157 |         tsName: "go-mod",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:164:16: warning: static property 'haskell' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |     /// A language structure for `Haskell`
164 |     static let haskell: CodeLanguage = .init(
    |                |- warning: static property 'haskell' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'haskell' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
165 |         id: .haskell,
166 |         tsName: "haskell",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:173:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
171 |
172 |     /// A language structure for `HTML`
173 |     static let html: CodeLanguage = .init(
    |                |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
174 |         id: .html,
175 |         tsName: "html",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:183:16: warning: static property 'java' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
181 |
182 |     /// A language structure for `Java`
183 |     static let java: CodeLanguage = .init(
    |                |- warning: static property 'java' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'java' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 |         id: .java,
185 |         tsName: "java",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:193:16: warning: static property 'javascript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
191 |
192 |     /// A language structure for `JavaScript`
193 |     static let javascript: CodeLanguage = .init(
    |                |- warning: static property 'javascript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'javascript' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
194 |         id: .javascript,
195 |         tsName: "javascript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:205:16: warning: static property 'jsdoc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
203 |
204 |     /// A language structure for `JSDoc`
205 |     static let jsdoc: CodeLanguage = .init(
    |                |- warning: static property 'jsdoc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'jsdoc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |         id: .jsdoc,
207 |         tsName: "jsdoc",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:214:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |     /// A language structure for `JSON`
214 |     static let json: CodeLanguage = .init(
    |                |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |         id: .json,
216 |         tsName: "json",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:223:16: warning: static property 'jsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
221 |
222 |     /// A language structure for `JSX`
223 |     static let jsx: CodeLanguage = .init(
    |                |- warning: static property 'jsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'jsx' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 |         id: .jsx,
225 |         tsName: "javascript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:233:16: warning: static property 'julia' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
231 |
232 |     /// A language structure for `Julia`
233 |     static let julia: CodeLanguage = .init(
    |                |- warning: static property 'julia' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'julia' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         id: .julia,
235 |         tsName: "julia",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:242:16: warning: static property 'kotlin' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
240 |
241 |     /// A language structure for `Kotlin`
242 |     static let kotlin: CodeLanguage = .init(
    |                |- warning: static property 'kotlin' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'kotlin' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
243 |         id: .kotlin,
244 |         tsName: "kotlin",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:251:16: warning: static property 'lua' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 |     /// A language structure for `Lua`
251 |     static let lua: CodeLanguage = .init(
    |                |- warning: static property 'lua' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'lua' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 |         id: .lua,
253 |         tsName: "lua",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:261:16: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
259 |
260 |     /// A language structure for `Markdown`
261 |     static let markdown: CodeLanguage = .init(
    |                |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'markdown' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
262 |         id: .markdown,
263 |         tsName: "markdown",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:271:16: warning: static property 'markdownInline' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
269 |
270 |     /// A language structure for `Markdown Inline`
271 |     static let markdownInline: CodeLanguage = .init(
    |                |- warning: static property 'markdownInline' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'markdownInline' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
272 |         id: .markdownInline,
273 |         tsName: "markdown-inline",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:281:16: warning: static property 'objc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
279 |
280 |     /// A language structure for `Objective C`
281 |     static let objc: CodeLanguage = .init(
    |                |- warning: static property 'objc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'objc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 |         id: .objc,
283 |         tsName: "objc",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:290:16: warning: static property 'ocaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
288 |
289 |     /// A language structure for `OCaml`
290 |     static let ocaml: CodeLanguage = .init(
    |                |- warning: static property 'ocaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ocaml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
291 |         id: .ocaml,
292 |         tsName: "ocaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:300:16: warning: static property 'ocamlInterface' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
298 |
299 |     /// A language structure for `OCaml Interface`
300 |     static let ocamlInterface: CodeLanguage = .init(
    |                |- warning: static property 'ocamlInterface' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ocamlInterface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
301 |         id: .ocamlInterface,
302 |         tsName: "ocaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:309:16: warning: static property 'perl' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
307 |
308 |     /// A language structure for `Perl`
309 |     static let perl: CodeLanguage = .init(
    |                |- warning: static property 'perl' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'perl' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
310 |         id: .perl,
311 |         tsName: "perl",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:318:16: warning: static property 'php' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
316 |
317 |     /// A language structure for `PHP`
318 |     static let php: CodeLanguage = .init(
    |                |- warning: static property 'php' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'php' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
319 |         id: .php,
320 |         tsName: "php",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:328:16: warning: static property 'python' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
326 |
327 |     /// A language structure for `Python`
328 |     static let python: CodeLanguage = .init(
    |                |- warning: static property 'python' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'python' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
329 |         id: .python,
330 |         tsName: "python",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:339:16: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
337 |
338 |     /// A language structure for `Regex`
339 |     static let regex: CodeLanguage = .init(
    |                |- warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'regex' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
340 |         id: .regex,
341 |         tsName: "regex",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:348:16: warning: static property 'ruby' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
346 |
347 |     /// A language structure for `Ruby`
348 |     static let ruby: CodeLanguage = .init(
    |                |- warning: static property 'ruby' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ruby' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
349 |         id: .ruby,
350 |         tsName: "ruby",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:357:16: warning: static property 'rust' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
355 |
356 |     /// A language structure for `Rust`
357 |     static let rust: CodeLanguage = .init(
    |                |- warning: static property 'rust' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'rust' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
358 |         id: .rust,
359 |         tsName: "rust",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:373:16: warning: static property 'scala' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
371 |
372 |     /// A language structure for `Scala`
373 |     static let scala: CodeLanguage = .init(
    |                |- warning: static property 'scala' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'scala' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
374 |         id: .scala,
375 |         tsName: "scala",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:382:16: warning: static property 'sql' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
380 |
381 |     /// A language structure for `SQL`
382 |     static let sql: CodeLanguage = .init(
    |                |- warning: static property 'sql' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'sql' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 |         id: .sql,
384 |         tsName: "sql",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:391:16: warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
389 |
390 |     /// A language structure for `Swift`
391 |     static let swift: CodeLanguage = .init(
    |                |- warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'swift' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
392 |         id: .swift,
393 |         tsName: "swift",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:401:16: warning: static property 'toml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
399 |
400 |     /// A language structure for `TOML`
401 |     static let toml: CodeLanguage = .init(
    |                |- warning: static property 'toml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'toml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
402 |         id: .toml,
403 |         tsName: "toml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:410:16: warning: static property 'tsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
408 |
409 |     /// A language structure for `TSX`
410 |     static let tsx: CodeLanguage = .init(
    |                |- warning: static property 'tsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'tsx' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
411 |         id: .tsx,
412 |         tsName: "typescript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:420:16: warning: static property 'typescript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
418 |
419 |     /// A language structure for `Typescript`
420 |     static let typescript: CodeLanguage = .init(
    |                |- warning: static property 'typescript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'typescript' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
421 |         id: .typescript,
422 |         tsName: "typescript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:430:16: warning: static property 'verilog' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
428 |
429 |     /// A language structure for `Verilog`
430 |     static let verilog: CodeLanguage = .init(
    |                |- warning: static property 'verilog' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'verilog' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
431 |         id: .verilog,
432 |         tsName: "verilog",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:439:16: warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
437 |
438 |     /// A language structure for `YAML`
439 |     static let yaml: CodeLanguage = .init(
    |                |- warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'yaml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
440 |         id: .yaml,
441 |         tsName: "yaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:448:16: warning: static property 'zig' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
446 |
447 |     /// A language structure for `Zig`
448 |     static let zig: CodeLanguage = .init(
    |                |- warning: static property 'zig' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'zig' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 |         id: .zig,
450 |         tsName: "zig",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:459:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
457 |
458 |     /// The default language (plain text)
459 |     static let `default`: CodeLanguage = .init(
    |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' 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
460 |         id: .plainText,
461 |         tsName: "PlainText",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/TreeSitterModel.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TreeSitterModel' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A singleton class to manage `tree-sitter` queries and keep them in memory.
 12 | public class TreeSitterModel {
    |              `- note: class 'TreeSitterModel' does not conform to the 'Sendable' protocol
 13 |
 14 |     /// The singleton/shared instance of ``TreeSitterModel``.
 15 |     public static let shared: TreeSitterModel = .init()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TreeSitterModel' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |
 17 |     /// Get a query for a specific language
[32/33] Compiling CodeEditLanguages CodeLanguage+Definitions.swift
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:15:16: warning: static property 'allLanguages' is not concurrency-safe because non-'Sendable' type '[CodeLanguage]' may have shared mutable state; this is an error in the Swift 6 language mode
 13 |
 14 |     /// An array of all language structures.
 15 |     static let allLanguages: [CodeLanguage] = [
    |                |- warning: static property 'allLanguages' is not concurrency-safe because non-'Sendable' type '[CodeLanguage]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'allLanguages' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |         .agda,
 17 |         .bash,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:60:16: warning: static property 'agda' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 58 |
 59 |     /// A language structure for `Agda`
 60 |     static let agda: CodeLanguage = .init(
    |                |- warning: static property 'agda' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'agda' with '@MainActor' 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 |         id: .agda,
 62 |         tsName: "agda",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:69:16: warning: static property 'bash' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 67 |
 68 |     /// A language structure for `Bash`
 69 |     static let bash: CodeLanguage = .init(
    |                |- warning: static property 'bash' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'bash' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |         id: .bash,
 71 |         tsName: "bash",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:78:16: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |     /// A language structure for `C`
 78 |     static let c: CodeLanguage = .init(
    |                |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |         id: .c,
 80 |         tsName: "c",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:87:16: warning: static property 'cpp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 85 |
 86 |     /// A language structure for `C++`
 87 |     static let cpp: CodeLanguage = .init(
    |                |- warning: static property 'cpp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cpp' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |         id: .cpp,
 89 |         tsName: "cpp",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:99:16: warning: static property 'cSharp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
 97 |
 98 |     /// A language structure for `C#`
 99 |     static let cSharp: CodeLanguage = .init(
    |                |- warning: static property 'cSharp' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cSharp' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |         id: .cSharp,
101 |         tsName: "c-sharp",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:108:16: warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
106 |
107 |     /// A language structure for `CSS`
108 |     static let css: CodeLanguage = .init(
    |                |- warning: static property 'css' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'css' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |         id: .css,
110 |         tsName: "css",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:117:16: warning: static property 'dart' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
115 |
116 |     /// A language structure for `Dart`
117 |     static let dart: CodeLanguage = .init(
    |                |- warning: static property 'dart' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dart' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |         id: .dart,
119 |         tsName: "dart",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:126:16: warning: static property 'dockerfile' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
124 |
125 |     /// A language structure for `Dockerfile`
126 |     static let dockerfile: CodeLanguage = .init(
    |                |- warning: static property 'dockerfile' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dockerfile' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |         id: .dockerfile,
128 |         tsName: "dockerfile",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:135:16: warning: static property 'elixir' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
133 |
134 |     /// A language structure for `Elixir`
135 |     static let elixir: CodeLanguage = .init(
    |                |- warning: static property 'elixir' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'elixir' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
136 |         id: .elixir,
137 |         tsName: "elixir",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:146:16: warning: static property 'go' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
144 |
145 |     /// A language structure for `Go`
146 |     static let go: CodeLanguage = .init(
    |                |- warning: static property 'go' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'go' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |         id: .go,
148 |         tsName: "go",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:155:16: warning: static property 'goMod' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
153 |
154 |     /// A language structure for `GoMod`
155 |     static let goMod: CodeLanguage = .init(
    |                |- warning: static property 'goMod' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'goMod' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         id: .goMod,
157 |         tsName: "go-mod",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:164:16: warning: static property 'haskell' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 |     /// A language structure for `Haskell`
164 |     static let haskell: CodeLanguage = .init(
    |                |- warning: static property 'haskell' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'haskell' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
165 |         id: .haskell,
166 |         tsName: "haskell",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:173:16: warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
171 |
172 |     /// A language structure for `HTML`
173 |     static let html: CodeLanguage = .init(
    |                |- warning: static property 'html' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'html' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
174 |         id: .html,
175 |         tsName: "html",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:183:16: warning: static property 'java' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
181 |
182 |     /// A language structure for `Java`
183 |     static let java: CodeLanguage = .init(
    |                |- warning: static property 'java' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'java' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
184 |         id: .java,
185 |         tsName: "java",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:193:16: warning: static property 'javascript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
191 |
192 |     /// A language structure for `JavaScript`
193 |     static let javascript: CodeLanguage = .init(
    |                |- warning: static property 'javascript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'javascript' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
194 |         id: .javascript,
195 |         tsName: "javascript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:205:16: warning: static property 'jsdoc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
203 |
204 |     /// A language structure for `JSDoc`
205 |     static let jsdoc: CodeLanguage = .init(
    |                |- warning: static property 'jsdoc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'jsdoc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |         id: .jsdoc,
207 |         tsName: "jsdoc",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:214:16: warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
212 |
213 |     /// A language structure for `JSON`
214 |     static let json: CodeLanguage = .init(
    |                |- warning: static property 'json' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'json' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
215 |         id: .json,
216 |         tsName: "json",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:223:16: warning: static property 'jsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
221 |
222 |     /// A language structure for `JSX`
223 |     static let jsx: CodeLanguage = .init(
    |                |- warning: static property 'jsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'jsx' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 |         id: .jsx,
225 |         tsName: "javascript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:233:16: warning: static property 'julia' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
231 |
232 |     /// A language structure for `Julia`
233 |     static let julia: CodeLanguage = .init(
    |                |- warning: static property 'julia' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'julia' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
234 |         id: .julia,
235 |         tsName: "julia",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:242:16: warning: static property 'kotlin' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
240 |
241 |     /// A language structure for `Kotlin`
242 |     static let kotlin: CodeLanguage = .init(
    |                |- warning: static property 'kotlin' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'kotlin' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
243 |         id: .kotlin,
244 |         tsName: "kotlin",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:251:16: warning: static property 'lua' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
249 |
250 |     /// A language structure for `Lua`
251 |     static let lua: CodeLanguage = .init(
    |                |- warning: static property 'lua' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'lua' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
252 |         id: .lua,
253 |         tsName: "lua",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:261:16: warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
259 |
260 |     /// A language structure for `Markdown`
261 |     static let markdown: CodeLanguage = .init(
    |                |- warning: static property 'markdown' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'markdown' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
262 |         id: .markdown,
263 |         tsName: "markdown",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:271:16: warning: static property 'markdownInline' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
269 |
270 |     /// A language structure for `Markdown Inline`
271 |     static let markdownInline: CodeLanguage = .init(
    |                |- warning: static property 'markdownInline' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'markdownInline' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
272 |         id: .markdownInline,
273 |         tsName: "markdown-inline",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:281:16: warning: static property 'objc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
279 |
280 |     /// A language structure for `Objective C`
281 |     static let objc: CodeLanguage = .init(
    |                |- warning: static property 'objc' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'objc' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 |         id: .objc,
283 |         tsName: "objc",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:290:16: warning: static property 'ocaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
288 |
289 |     /// A language structure for `OCaml`
290 |     static let ocaml: CodeLanguage = .init(
    |                |- warning: static property 'ocaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ocaml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
291 |         id: .ocaml,
292 |         tsName: "ocaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:300:16: warning: static property 'ocamlInterface' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
298 |
299 |     /// A language structure for `OCaml Interface`
300 |     static let ocamlInterface: CodeLanguage = .init(
    |                |- warning: static property 'ocamlInterface' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ocamlInterface' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
301 |         id: .ocamlInterface,
302 |         tsName: "ocaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:309:16: warning: static property 'perl' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
307 |
308 |     /// A language structure for `Perl`
309 |     static let perl: CodeLanguage = .init(
    |                |- warning: static property 'perl' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'perl' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
310 |         id: .perl,
311 |         tsName: "perl",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:318:16: warning: static property 'php' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
316 |
317 |     /// A language structure for `PHP`
318 |     static let php: CodeLanguage = .init(
    |                |- warning: static property 'php' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'php' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
319 |         id: .php,
320 |         tsName: "php",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:328:16: warning: static property 'python' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
326 |
327 |     /// A language structure for `Python`
328 |     static let python: CodeLanguage = .init(
    |                |- warning: static property 'python' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'python' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
329 |         id: .python,
330 |         tsName: "python",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:339:16: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
337 |
338 |     /// A language structure for `Regex`
339 |     static let regex: CodeLanguage = .init(
    |                |- warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'regex' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
340 |         id: .regex,
341 |         tsName: "regex",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:348:16: warning: static property 'ruby' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
346 |
347 |     /// A language structure for `Ruby`
348 |     static let ruby: CodeLanguage = .init(
    |                |- warning: static property 'ruby' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'ruby' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
349 |         id: .ruby,
350 |         tsName: "ruby",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:357:16: warning: static property 'rust' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
355 |
356 |     /// A language structure for `Rust`
357 |     static let rust: CodeLanguage = .init(
    |                |- warning: static property 'rust' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'rust' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
358 |         id: .rust,
359 |         tsName: "rust",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:373:16: warning: static property 'scala' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
371 |
372 |     /// A language structure for `Scala`
373 |     static let scala: CodeLanguage = .init(
    |                |- warning: static property 'scala' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'scala' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
374 |         id: .scala,
375 |         tsName: "scala",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:382:16: warning: static property 'sql' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
380 |
381 |     /// A language structure for `SQL`
382 |     static let sql: CodeLanguage = .init(
    |                |- warning: static property 'sql' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'sql' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 |         id: .sql,
384 |         tsName: "sql",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:391:16: warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
389 |
390 |     /// A language structure for `Swift`
391 |     static let swift: CodeLanguage = .init(
    |                |- warning: static property 'swift' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'swift' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
392 |         id: .swift,
393 |         tsName: "swift",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:401:16: warning: static property 'toml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
399 |
400 |     /// A language structure for `TOML`
401 |     static let toml: CodeLanguage = .init(
    |                |- warning: static property 'toml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'toml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
402 |         id: .toml,
403 |         tsName: "toml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:410:16: warning: static property 'tsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
408 |
409 |     /// A language structure for `TSX`
410 |     static let tsx: CodeLanguage = .init(
    |                |- warning: static property 'tsx' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'tsx' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
411 |         id: .tsx,
412 |         tsName: "typescript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:420:16: warning: static property 'typescript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
418 |
419 |     /// A language structure for `Typescript`
420 |     static let typescript: CodeLanguage = .init(
    |                |- warning: static property 'typescript' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'typescript' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
421 |         id: .typescript,
422 |         tsName: "typescript",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:430:16: warning: static property 'verilog' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
428 |
429 |     /// A language structure for `Verilog`
430 |     static let verilog: CodeLanguage = .init(
    |                |- warning: static property 'verilog' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'verilog' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
431 |         id: .verilog,
432 |         tsName: "verilog",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:439:16: warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
437 |
438 |     /// A language structure for `YAML`
439 |     static let yaml: CodeLanguage = .init(
    |                |- warning: static property 'yaml' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'yaml' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
440 |         id: .yaml,
441 |         tsName: "yaml",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:448:16: warning: static property 'zig' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
446 |
447 |     /// A language structure for `Zig`
448 |     static let zig: CodeLanguage = .init(
    |                |- warning: static property 'zig' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'zig' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 |         id: .zig,
450 |         tsName: "zig",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage+Definitions.swift:459:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
457 |
458 |     /// The default language (plain text)
459 |     static let `default`: CodeLanguage = .init(
    |                |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CodeLanguage' 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
460 |         id: .plainText,
461 |         tsName: "PlainText",
/Users/admin/builder/spi-builder-workspace/Sources/CodeEditLanguages/CodeLanguage.swift:15:15: note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 13 |
 14 | /// A structure holding metadata for code languages
 15 | public struct CodeLanguage {
    |               `- note: consider making struct 'CodeLanguage' conform to the 'Sendable' protocol
 16 |     internal init(
 17 |         id: TreeSitterLanguage,
[33/33] Compiling CodeEditLanguages CodeLanguage.swift
Build complete! (39.43s)
Fetching https://github.com/ChimeHQ/SwiftTreeSitter.git
[1/1514] Fetching swifttreesitter
Fetched https://github.com/ChimeHQ/SwiftTreeSitter.git from cache (1.06s)
Computing version for https://github.com/ChimeHQ/SwiftTreeSitter.git
Computed https://github.com/ChimeHQ/SwiftTreeSitter.git at 0.8.0 (0.53s)
Creating working copy for https://github.com/ChimeHQ/SwiftTreeSitter.git
Working copy of https://github.com/ChimeHQ/SwiftTreeSitter.git resolved at 0.8.0
Build complete.
error: The file “CodeLanguagesContainer.xcframework.zip” couldn’t be opened.
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.