The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build opentelemetry-swift, reference main (e4a311), with Swift 6.1 for Wasm on 30 May 2025 16:22:06 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2267:27: warning: static property 'browser' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.EventDomainValues' may have shared mutable state; this is an error in the Swift 6 language mode
2261 |     */
2262 |     /// - Tag: otelEventDomainValues
2263 |     public struct EventDomainValues: CustomStringConvertible {
     |                   `- note: consider making struct 'EventDomainValues' conform to the 'Sendable' protocol
2264 |         /**
2265 |         Events from browser apps.
2266 |         */
2267 |         public static let browser = EventDomainValues("browser")
     |                           |- warning: static property 'browser' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.EventDomainValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'browser' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2268 |         /**
2269 |         Events from mobile apps.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2271:27: warning: static property 'device' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.EventDomainValues' may have shared mutable state; this is an error in the Swift 6 language mode
2261 |     */
2262 |     /// - Tag: otelEventDomainValues
2263 |     public struct EventDomainValues: CustomStringConvertible {
     |                   `- note: consider making struct 'EventDomainValues' conform to the 'Sendable' protocol
2264 |         /**
2265 |         Events from browser apps.
     :
2269 |         Events from mobile apps.
2270 |         */
2271 |         public static let device = EventDomainValues("device")
     |                           |- warning: static property 'device' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.EventDomainValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'device' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2272 |         /**
2273 |         Events from Kubernetes.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2275:27: warning: static property 'k8s' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.EventDomainValues' may have shared mutable state; this is an error in the Swift 6 language mode
2261 |     */
2262 |     /// - Tag: otelEventDomainValues
2263 |     public struct EventDomainValues: CustomStringConvertible {
     |                   `- note: consider making struct 'EventDomainValues' conform to the 'Sendable' protocol
2264 |         /**
2265 |         Events from browser apps.
     :
2273 |         Events from Kubernetes.
2274 |         */
2275 |         public static let k8s = EventDomainValues("k8s")
     |                           |- warning: static property 'k8s' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.EventDomainValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'k8s' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2276 |
2277 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2341:27: warning: static property 'otherSql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
2340 |         */
2341 |         public static let otherSql = DbSystemValues("other_sql")
     |                           |- warning: static property 'otherSql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'otherSql' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2342 |         /**
2343 |         Microsoft SQL Server.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2345:27: warning: static property 'mssql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2343 |         Microsoft SQL Server.
2344 |         */
2345 |         public static let mssql = DbSystemValues("mssql")
     |                           |- warning: static property 'mssql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'mssql' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2346 |         /**
2347 |         Microsoft SQL Server Compact.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2349:27: warning: static property 'mssqlcompact' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2347 |         Microsoft SQL Server Compact.
2348 |         */
2349 |         public static let mssqlcompact = DbSystemValues("mssqlcompact")
     |                           |- warning: static property 'mssqlcompact' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'mssqlcompact' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2350 |         /**
2351 |         MySQL.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2353:27: warning: static property 'mysql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2351 |         MySQL.
2352 |         */
2353 |         public static let mysql = DbSystemValues("mysql")
     |                           |- warning: static property 'mysql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'mysql' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2354 |         /**
2355 |         Oracle Database.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2357:27: warning: static property 'oracle' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2355 |         Oracle Database.
2356 |         */
2357 |         public static let oracle = DbSystemValues("oracle")
     |                           |- warning: static property 'oracle' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'oracle' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2358 |         /**
2359 |         IBM Db2.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2361:27: warning: static property 'db2' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2359 |         IBM Db2.
2360 |         */
2361 |         public static let db2 = DbSystemValues("db2")
     |                           |- warning: static property 'db2' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'db2' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2362 |         /**
2363 |         PostgreSQL.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2365:27: warning: static property 'postgresql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2363 |         PostgreSQL.
2364 |         */
2365 |         public static let postgresql = DbSystemValues("postgresql")
     |                           |- warning: static property 'postgresql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'postgresql' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2366 |         /**
2367 |         Amazon Redshift.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2369:27: warning: static property 'redshift' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2367 |         Amazon Redshift.
2368 |         */
2369 |         public static let redshift = DbSystemValues("redshift")
     |                           |- warning: static property 'redshift' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'redshift' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2370 |         /**
2371 |         Apache Hive.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2373:27: warning: static property 'hive' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2371 |         Apache Hive.
2372 |         */
2373 |         public static let hive = DbSystemValues("hive")
     |                           |- warning: static property 'hive' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'hive' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2374 |         /**
2375 |         Cloudscape.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2377:27: warning: static property 'cloudscape' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2375 |         Cloudscape.
2376 |         */
2377 |         public static let cloudscape = DbSystemValues("cloudscape")
     |                           |- warning: static property 'cloudscape' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'cloudscape' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2378 |         /**
2379 |         HyperSQL DataBase.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2381:27: warning: static property 'hsqldb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2379 |         HyperSQL DataBase.
2380 |         */
2381 |         public static let hsqldb = DbSystemValues("hsqldb")
     |                           |- warning: static property 'hsqldb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'hsqldb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2382 |         /**
2383 |         Progress Database.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2385:27: warning: static property 'progress' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2383 |         Progress Database.
2384 |         */
2385 |         public static let progress = DbSystemValues("progress")
     |                           |- warning: static property 'progress' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'progress' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2386 |         /**
2387 |         SAP MaxDB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2389:27: warning: static property 'maxdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2387 |         SAP MaxDB.
2388 |         */
2389 |         public static let maxdb = DbSystemValues("maxdb")
     |                           |- warning: static property 'maxdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'maxdb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2390 |         /**
2391 |         SAP HANA.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2393:27: warning: static property 'hanadb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2391 |         SAP HANA.
2392 |         */
2393 |         public static let hanadb = DbSystemValues("hanadb")
     |                           |- warning: static property 'hanadb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'hanadb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2394 |         /**
2395 |         Ingres.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2397:27: warning: static property 'ingres' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2395 |         Ingres.
2396 |         */
2397 |         public static let ingres = DbSystemValues("ingres")
     |                           |- warning: static property 'ingres' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'ingres' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2398 |         /**
2399 |         FirstSQL.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2401:27: warning: static property 'firstsql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2399 |         FirstSQL.
2400 |         */
2401 |         public static let firstsql = DbSystemValues("firstsql")
     |                           |- warning: static property 'firstsql' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'firstsql' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2402 |         /**
2403 |         EnterpriseDB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2405:27: warning: static property 'edb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2403 |         EnterpriseDB.
2404 |         */
2405 |         public static let edb = DbSystemValues("edb")
     |                           |- warning: static property 'edb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'edb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2406 |         /**
2407 |         InterSystems Caché.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2409:27: warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2407 |         InterSystems Caché.
2408 |         */
2409 |         public static let cache = DbSystemValues("cache")
     |                           |- warning: static property 'cache' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2410 |         /**
2411 |         Adabas (Adaptable Database System).
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2413:27: warning: static property 'adabas' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2411 |         Adabas (Adaptable Database System).
2412 |         */
2413 |         public static let adabas = DbSystemValues("adabas")
     |                           |- warning: static property 'adabas' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'adabas' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2414 |         /**
2415 |         Firebird.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2417:27: warning: static property 'firebird' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2415 |         Firebird.
2416 |         */
2417 |         public static let firebird = DbSystemValues("firebird")
     |                           |- warning: static property 'firebird' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'firebird' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2418 |         /**
2419 |         Apache Derby.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2421:27: warning: static property 'derby' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2419 |         Apache Derby.
2420 |         */
2421 |         public static let derby = DbSystemValues("derby")
     |                           |- warning: static property 'derby' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'derby' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2422 |         /**
2423 |         FileMaker.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2425:27: warning: static property 'filemaker' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2423 |         FileMaker.
2424 |         */
2425 |         public static let filemaker = DbSystemValues("filemaker")
     |                           |- warning: static property 'filemaker' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'filemaker' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2426 |         /**
2427 |         Informix.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2429:27: warning: static property 'informix' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2427 |         Informix.
2428 |         */
2429 |         public static let informix = DbSystemValues("informix")
     |                           |- warning: static property 'informix' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'informix' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2430 |         /**
2431 |         InstantDB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2433:27: warning: static property 'instantdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2431 |         InstantDB.
2432 |         */
2433 |         public static let instantdb = DbSystemValues("instantdb")
     |                           |- warning: static property 'instantdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'instantdb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2434 |         /**
2435 |         InterBase.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2437:27: warning: static property 'interbase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2435 |         InterBase.
2436 |         */
2437 |         public static let interbase = DbSystemValues("interbase")
     |                           |- warning: static property 'interbase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'interbase' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2438 |         /**
2439 |         MariaDB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2441:27: warning: static property 'mariadb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2439 |         MariaDB.
2440 |         */
2441 |         public static let mariadb = DbSystemValues("mariadb")
     |                           |- warning: static property 'mariadb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'mariadb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2442 |         /**
2443 |         Netezza.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2445:27: warning: static property 'netezza' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2443 |         Netezza.
2444 |         */
2445 |         public static let netezza = DbSystemValues("netezza")
     |                           |- warning: static property 'netezza' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'netezza' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2446 |         /**
2447 |         Pervasive PSQL.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2449:27: warning: static property 'pervasive' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2447 |         Pervasive PSQL.
2448 |         */
2449 |         public static let pervasive = DbSystemValues("pervasive")
     |                           |- warning: static property 'pervasive' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'pervasive' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2450 |         /**
2451 |         PointBase.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2453:27: warning: static property 'pointbase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2451 |         PointBase.
2452 |         */
2453 |         public static let pointbase = DbSystemValues("pointbase")
     |                           |- warning: static property 'pointbase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'pointbase' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2454 |         /**
2455 |         SQLite.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2457:27: warning: static property 'sqlite' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2455 |         SQLite.
2456 |         */
2457 |         public static let sqlite = DbSystemValues("sqlite")
     |                           |- warning: static property 'sqlite' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'sqlite' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2458 |         /**
2459 |         Sybase.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2461:27: warning: static property 'sybase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2459 |         Sybase.
2460 |         */
2461 |         public static let sybase = DbSystemValues("sybase")
     |                           |- warning: static property 'sybase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'sybase' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2462 |         /**
2463 |         Teradata.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2465:27: warning: static property 'teradata' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2463 |         Teradata.
2464 |         */
2465 |         public static let teradata = DbSystemValues("teradata")
     |                           |- warning: static property 'teradata' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'teradata' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2466 |         /**
2467 |         Vertica.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2469:27: warning: static property 'vertica' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2467 |         Vertica.
2468 |         */
2469 |         public static let vertica = DbSystemValues("vertica")
     |                           |- warning: static property 'vertica' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'vertica' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2470 |         /**
2471 |         H2.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2473:27: warning: static property 'h2' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2471 |         H2.
2472 |         */
2473 |         public static let h2 = DbSystemValues("h2")
     |                           |- warning: static property 'h2' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'h2' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2474 |         /**
2475 |         ColdFusion IMQ.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2477:27: warning: static property 'coldfusion' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2475 |         ColdFusion IMQ.
2476 |         */
2477 |         public static let coldfusion = DbSystemValues("coldfusion")
     |                           |- warning: static property 'coldfusion' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'coldfusion' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2478 |         /**
2479 |         Apache Cassandra.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2481:27: warning: static property 'cassandra' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2479 |         Apache Cassandra.
2480 |         */
2481 |         public static let cassandra = DbSystemValues("cassandra")
     |                           |- warning: static property 'cassandra' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'cassandra' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2482 |         /**
2483 |         Apache HBase.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2485:27: warning: static property 'hbase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2483 |         Apache HBase.
2484 |         */
2485 |         public static let hbase = DbSystemValues("hbase")
     |                           |- warning: static property 'hbase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'hbase' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2486 |         /**
2487 |         MongoDB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2489:27: warning: static property 'mongodb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2487 |         MongoDB.
2488 |         */
2489 |         public static let mongodb = DbSystemValues("mongodb")
     |                           |- warning: static property 'mongodb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'mongodb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2490 |         /**
2491 |         Redis.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2493:27: warning: static property 'redis' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2491 |         Redis.
2492 |         */
2493 |         public static let redis = DbSystemValues("redis")
     |                           |- warning: static property 'redis' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'redis' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2494 |         /**
2495 |         Couchbase.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2497:27: warning: static property 'couchbase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2495 |         Couchbase.
2496 |         */
2497 |         public static let couchbase = DbSystemValues("couchbase")
     |                           |- warning: static property 'couchbase' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'couchbase' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2498 |         /**
2499 |         CouchDB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2501:27: warning: static property 'couchdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2499 |         CouchDB.
2500 |         */
2501 |         public static let couchdb = DbSystemValues("couchdb")
     |                           |- warning: static property 'couchdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'couchdb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2502 |         /**
2503 |         Microsoft Azure Cosmos DB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2505:27: warning: static property 'cosmosdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2503 |         Microsoft Azure Cosmos DB.
2504 |         */
2505 |         public static let cosmosdb = DbSystemValues("cosmosdb")
     |                           |- warning: static property 'cosmosdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'cosmosdb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2506 |         /**
2507 |         Amazon DynamoDB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2509:27: warning: static property 'dynamodb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2507 |         Amazon DynamoDB.
2508 |         */
2509 |         public static let dynamodb = DbSystemValues("dynamodb")
     |                           |- warning: static property 'dynamodb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'dynamodb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2510 |         /**
2511 |         Neo4j.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2513:27: warning: static property 'neo4j' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2511 |         Neo4j.
2512 |         */
2513 |         public static let neo4j = DbSystemValues("neo4j")
     |                           |- warning: static property 'neo4j' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'neo4j' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2514 |         /**
2515 |         Apache Geode.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2517:27: warning: static property 'geode' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2515 |         Apache Geode.
2516 |         */
2517 |         public static let geode = DbSystemValues("geode")
     |                           |- warning: static property 'geode' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'geode' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2518 |         /**
2519 |         Elasticsearch.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2521:27: warning: static property 'elasticsearch' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2519 |         Elasticsearch.
2520 |         */
2521 |         public static let elasticsearch = DbSystemValues("elasticsearch")
     |                           |- warning: static property 'elasticsearch' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'elasticsearch' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2522 |         /**
2523 |         Memcached.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2525:27: warning: static property 'memcached' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2523 |         Memcached.
2524 |         */
2525 |         public static let memcached = DbSystemValues("memcached")
     |                           |- warning: static property 'memcached' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'memcached' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2526 |         /**
2527 |         CockroachDB.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2529:27: warning: static property 'cockroachdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2527 |         CockroachDB.
2528 |         */
2529 |         public static let cockroachdb = DbSystemValues("cockroachdb")
     |                           |- warning: static property 'cockroachdb' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'cockroachdb' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2530 |         /**
2531 |         OpenSearch.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2533:27: warning: static property 'opensearch' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2531 |         OpenSearch.
2532 |         */
2533 |         public static let opensearch = DbSystemValues("opensearch")
     |                           |- warning: static property 'opensearch' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'opensearch' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2534 |         /**
2535 |         ClickHouse.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2537:27: warning: static property 'clickhouse' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2535 |         ClickHouse.
2536 |         */
2537 |         public static let clickhouse = DbSystemValues("clickhouse")
     |                           |- warning: static property 'clickhouse' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'clickhouse' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2538 |         /**
2539 |         Cloud Spanner.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2541:27: warning: static property 'spanner' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2539 |         Cloud Spanner.
2540 |         */
2541 |         public static let spanner = DbSystemValues("spanner")
     |                           |- warning: static property 'spanner' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'spanner' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2542 |         /**
2543 |         Trino.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2545:27: warning: static property 'trino' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
2335 |     */
2336 |     /// - Tag: otelDbSystemValues
2337 |     public struct DbSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbSystemValues' conform to the 'Sendable' protocol
2338 |         /**
2339 |         Some other SQL database. Fallback only. See notes.
     :
2543 |         Trino.
2544 |         */
2545 |         public static let trino = DbSystemValues("trino")
     |                           |- warning: static property 'trino' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'trino' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2546 |
2547 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2566:27: warning: static property 'tcp' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTransportValues' may have shared mutable state; this is an error in the Swift 6 language mode
2560 |     */
2561 |     /// - Tag: otelNetworkTransportValues
2562 |     public struct NetworkTransportValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkTransportValues' conform to the 'Sendable' protocol
2563 |         /**
2564 |         TCP.
2565 |         */
2566 |         public static let tcp = NetworkTransportValues("tcp")
     |                           |- warning: static property 'tcp' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTransportValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'tcp' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2567 |         /**
2568 |         UDP.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2570:27: warning: static property 'udp' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTransportValues' may have shared mutable state; this is an error in the Swift 6 language mode
2560 |     */
2561 |     /// - Tag: otelNetworkTransportValues
2562 |     public struct NetworkTransportValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkTransportValues' conform to the 'Sendable' protocol
2563 |         /**
2564 |         TCP.
     :
2568 |         UDP.
2569 |         */
2570 |         public static let udp = NetworkTransportValues("udp")
     |                           |- warning: static property 'udp' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTransportValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'udp' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2571 |         /**
2572 |         Named or anonymous pipe. See note below.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2574:27: warning: static property 'pipe' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTransportValues' may have shared mutable state; this is an error in the Swift 6 language mode
2560 |     */
2561 |     /// - Tag: otelNetworkTransportValues
2562 |     public struct NetworkTransportValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkTransportValues' conform to the 'Sendable' protocol
2563 |         /**
2564 |         TCP.
     :
2572 |         Named or anonymous pipe. See note below.
2573 |         */
2574 |         public static let pipe = NetworkTransportValues("pipe")
     |                           |- warning: static property 'pipe' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTransportValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'pipe' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2575 |         /**
2576 |         Unix domain socket.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2578:27: warning: static property 'unix' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTransportValues' may have shared mutable state; this is an error in the Swift 6 language mode
2560 |     */
2561 |     /// - Tag: otelNetworkTransportValues
2562 |     public struct NetworkTransportValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkTransportValues' conform to the 'Sendable' protocol
2563 |         /**
2564 |         TCP.
     :
2576 |         Unix domain socket.
2577 |         */
2578 |         public static let unix = NetworkTransportValues("unix")
     |                           |- warning: static property 'unix' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTransportValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'unix' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2579 |
2580 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2599:27: warning: static property 'ipv4' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2593 |     */
2594 |     /// - Tag: otelNetworkTypeValues
2595 |     public struct NetworkTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkTypeValues' conform to the 'Sendable' protocol
2596 |         /**
2597 |         IPv4.
2598 |         */
2599 |         public static let ipv4 = NetworkTypeValues("ipv4")
     |                           |- warning: static property 'ipv4' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'ipv4' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2600 |         /**
2601 |         IPv6.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2603:27: warning: static property 'ipv6' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2593 |     */
2594 |     /// - Tag: otelNetworkTypeValues
2595 |     public struct NetworkTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkTypeValues' conform to the 'Sendable' protocol
2596 |         /**
2597 |         IPv4.
     :
2601 |         IPv6.
2602 |         */
2603 |         public static let ipv6 = NetworkTypeValues("ipv6")
     |                           |- warning: static property 'ipv6' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'ipv6' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2604 |
2605 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2675:27: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
2674 |         */
2675 |         public static let invalid = DbCosmosdbOperationTypeValues("Invalid")
     |                           |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'invalid' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2676 |         /**
2677 |         create.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2679:27: warning: static property 'create' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2677 |         create.
2678 |         */
2679 |         public static let create = DbCosmosdbOperationTypeValues("Create")
     |                           |- warning: static property 'create' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'create' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2680 |         /**
2681 |         patch.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2683:27: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2681 |         patch.
2682 |         */
2683 |         public static let patch = DbCosmosdbOperationTypeValues("Patch")
     |                           |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'patch' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2684 |         /**
2685 |         read.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2687:27: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2685 |         read.
2686 |         */
2687 |         public static let read = DbCosmosdbOperationTypeValues("Read")
     |                           |- warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2688 |         /**
2689 |         read_feed.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2691:27: warning: static property 'readFeed' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2689 |         read_feed.
2690 |         */
2691 |         public static let readFeed = DbCosmosdbOperationTypeValues("ReadFeed")
     |                           |- warning: static property 'readFeed' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'readFeed' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2692 |         /**
2693 |         delete.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2695:27: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2693 |         delete.
2694 |         */
2695 |         public static let delete = DbCosmosdbOperationTypeValues("Delete")
     |                           |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2696 |         /**
2697 |         replace.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2699:27: warning: static property 'replace' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2697 |         replace.
2698 |         */
2699 |         public static let replace = DbCosmosdbOperationTypeValues("Replace")
     |                           |- warning: static property 'replace' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'replace' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2700 |         /**
2701 |         execute.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2703:27: warning: static property 'execute' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2701 |         execute.
2702 |         */
2703 |         public static let execute = DbCosmosdbOperationTypeValues("Execute")
     |                           |- warning: static property 'execute' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'execute' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2704 |         /**
2705 |         query.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2707:27: warning: static property 'query' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2705 |         query.
2706 |         */
2707 |         public static let query = DbCosmosdbOperationTypeValues("Query")
     |                           |- warning: static property 'query' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'query' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2708 |         /**
2709 |         head.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2711:27: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2709 |         head.
2710 |         */
2711 |         public static let head = DbCosmosdbOperationTypeValues("Head")
     |                           |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'head' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2712 |         /**
2713 |         head_feed.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2715:27: warning: static property 'headFeed' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2713 |         head_feed.
2714 |         */
2715 |         public static let headFeed = DbCosmosdbOperationTypeValues("HeadFeed")
     |                           |- warning: static property 'headFeed' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'headFeed' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2716 |         /**
2717 |         upsert.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2719:27: warning: static property 'upsert' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2717 |         upsert.
2718 |         */
2719 |         public static let upsert = DbCosmosdbOperationTypeValues("Upsert")
     |                           |- warning: static property 'upsert' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'upsert' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2720 |         /**
2721 |         batch.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2723:27: warning: static property 'batch' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2721 |         batch.
2722 |         */
2723 |         public static let batch = DbCosmosdbOperationTypeValues("Batch")
     |                           |- warning: static property 'batch' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'batch' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2724 |         /**
2725 |         query_plan.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2727:27: warning: static property 'queryPlan' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2725 |         query_plan.
2726 |         */
2727 |         public static let queryPlan = DbCosmosdbOperationTypeValues("QueryPlan")
     |                           |- warning: static property 'queryPlan' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'queryPlan' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2728 |         /**
2729 |         execute_javascript.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2731:27: warning: static property 'executeJavascript' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2669 |     */
2670 |     /// - Tag: otelDbCosmosdbOperationTypeValues
2671 |     public struct DbCosmosdbOperationTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'DbCosmosdbOperationTypeValues' conform to the 'Sendable' protocol
2672 |         /**
2673 |         invalid.
     :
2729 |         execute_javascript.
2730 |         */
2731 |         public static let executeJavascript = DbCosmosdbOperationTypeValues("ExecuteJavaScript")
     |                           |- warning: static property 'executeJavascript' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.DbCosmosdbOperationTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'executeJavascript' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2732 |
2733 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2809:27: warning: static property 'insert' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasDocumentOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
2803 |     */
2804 |     /// - Tag: otelFaasDocumentOperationValues
2805 |     public struct FaasDocumentOperationValues: CustomStringConvertible {
     |                   `- note: consider making struct 'FaasDocumentOperationValues' conform to the 'Sendable' protocol
2806 |         /**
2807 |         When a new object is created.
2808 |         */
2809 |         public static let insert = FaasDocumentOperationValues("insert")
     |                           |- warning: static property 'insert' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasDocumentOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'insert' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2810 |         /**
2811 |         When an object is modified.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2813:27: warning: static property 'edit' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasDocumentOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
2803 |     */
2804 |     /// - Tag: otelFaasDocumentOperationValues
2805 |     public struct FaasDocumentOperationValues: CustomStringConvertible {
     |                   `- note: consider making struct 'FaasDocumentOperationValues' conform to the 'Sendable' protocol
2806 |         /**
2807 |         When a new object is created.
     :
2811 |         When an object is modified.
2812 |         */
2813 |         public static let edit = FaasDocumentOperationValues("edit")
     |                           |- warning: static property 'edit' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasDocumentOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'edit' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2814 |         /**
2815 |         When an object is deleted.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2817:27: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasDocumentOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
2803 |     */
2804 |     /// - Tag: otelFaasDocumentOperationValues
2805 |     public struct FaasDocumentOperationValues: CustomStringConvertible {
     |                   `- note: consider making struct 'FaasDocumentOperationValues' conform to the 'Sendable' protocol
2806 |         /**
2807 |         When a new object is created.
     :
2815 |         When an object is deleted.
2816 |         */
2817 |         public static let delete = FaasDocumentOperationValues("delete")
     |                           |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasDocumentOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'delete' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2818 |
2819 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2838:27: warning: static property 'publish' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.MessagingOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
2832 |     */
2833 |     /// - Tag: otelMessagingOperationValues
2834 |     public struct MessagingOperationValues: CustomStringConvertible {
     |                   `- note: consider making struct 'MessagingOperationValues' conform to the 'Sendable' protocol
2835 |         /**
2836 |         publish.
2837 |         */
2838 |         public static let publish = MessagingOperationValues("publish")
     |                           |- warning: static property 'publish' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.MessagingOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'publish' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2839 |         /**
2840 |         receive.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2842:27: warning: static property 'receive' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.MessagingOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
2832 |     */
2833 |     /// - Tag: otelMessagingOperationValues
2834 |     public struct MessagingOperationValues: CustomStringConvertible {
     |                   `- note: consider making struct 'MessagingOperationValues' conform to the 'Sendable' protocol
2835 |         /**
2836 |         publish.
     :
2840 |         receive.
2841 |         */
2842 |         public static let receive = MessagingOperationValues("receive")
     |                           |- warning: static property 'receive' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.MessagingOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'receive' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2843 |         /**
2844 |         process.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2846:27: warning: static property 'process' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.MessagingOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
2832 |     */
2833 |     /// - Tag: otelMessagingOperationValues
2834 |     public struct MessagingOperationValues: CustomStringConvertible {
     |                   `- note: consider making struct 'MessagingOperationValues' conform to the 'Sendable' protocol
2835 |         /**
2836 |         publish.
     :
2844 |         process.
2845 |         */
2846 |         public static let process = MessagingOperationValues("process")
     |                           |- warning: static property 'process' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.MessagingOperationValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'process' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2847 |
2848 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2867:27: warning: static property 'alibabaCloud' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
2861 |     */
2862 |     /// - Tag: otelFaasInvokedProviderValues
2863 |     public struct FaasInvokedProviderValues: CustomStringConvertible {
     |                   `- note: consider making struct 'FaasInvokedProviderValues' conform to the 'Sendable' protocol
2864 |         /**
2865 |         Alibaba Cloud.
2866 |         */
2867 |         public static let alibabaCloud = FaasInvokedProviderValues("alibaba_cloud")
     |                           |- warning: static property 'alibabaCloud' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'alibabaCloud' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2868 |         /**
2869 |         Amazon Web Services.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2871:27: warning: static property 'aws' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
2861 |     */
2862 |     /// - Tag: otelFaasInvokedProviderValues
2863 |     public struct FaasInvokedProviderValues: CustomStringConvertible {
     |                   `- note: consider making struct 'FaasInvokedProviderValues' conform to the 'Sendable' protocol
2864 |         /**
2865 |         Alibaba Cloud.
     :
2869 |         Amazon Web Services.
2870 |         */
2871 |         public static let aws = FaasInvokedProviderValues("aws")
     |                           |- warning: static property 'aws' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'aws' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2872 |         /**
2873 |         Microsoft Azure.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2875:27: warning: static property 'azure' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
2861 |     */
2862 |     /// - Tag: otelFaasInvokedProviderValues
2863 |     public struct FaasInvokedProviderValues: CustomStringConvertible {
     |                   `- note: consider making struct 'FaasInvokedProviderValues' conform to the 'Sendable' protocol
2864 |         /**
2865 |         Alibaba Cloud.
     :
2873 |         Microsoft Azure.
2874 |         */
2875 |         public static let azure = FaasInvokedProviderValues("azure")
     |                           |- warning: static property 'azure' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'azure' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2876 |         /**
2877 |         Google Cloud Platform.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2879:27: warning: static property 'gcp' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
2861 |     */
2862 |     /// - Tag: otelFaasInvokedProviderValues
2863 |     public struct FaasInvokedProviderValues: CustomStringConvertible {
     |                   `- note: consider making struct 'FaasInvokedProviderValues' conform to the 'Sendable' protocol
2864 |         /**
2865 |         Alibaba Cloud.
     :
2877 |         Google Cloud Platform.
2878 |         */
2879 |         public static let gcp = FaasInvokedProviderValues("gcp")
     |                           |- warning: static property 'gcp' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'gcp' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2880 |         /**
2881 |         Tencent Cloud.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2883:27: warning: static property 'tencentCloud' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
2861 |     */
2862 |     /// - Tag: otelFaasInvokedProviderValues
2863 |     public struct FaasInvokedProviderValues: CustomStringConvertible {
     |                   `- note: consider making struct 'FaasInvokedProviderValues' conform to the 'Sendable' protocol
2864 |         /**
2865 |         Alibaba Cloud.
     :
2881 |         Tencent Cloud.
2882 |         */
2883 |         public static let tencentCloud = FaasInvokedProviderValues("tencent_cloud")
     |                           |- warning: static property 'tencentCloud' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.FaasInvokedProviderValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'tencentCloud' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2884 |
2885 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2904:27: warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2898 |     */
2899 |     /// - Tag: otelNetworkConnectionTypeValues
2900 |     public struct NetworkConnectionTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionTypeValues' conform to the 'Sendable' protocol
2901 |         /**
2902 |         wifi.
2903 |         */
2904 |         public static let wifi = NetworkConnectionTypeValues("wifi")
     |                           |- warning: static property 'wifi' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'wifi' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2905 |         /**
2906 |         wired.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2908:27: warning: static property 'wired' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2898 |     */
2899 |     /// - Tag: otelNetworkConnectionTypeValues
2900 |     public struct NetworkConnectionTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionTypeValues' conform to the 'Sendable' protocol
2901 |         /**
2902 |         wifi.
     :
2906 |         wired.
2907 |         */
2908 |         public static let wired = NetworkConnectionTypeValues("wired")
     |                           |- warning: static property 'wired' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'wired' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2909 |         /**
2910 |         cell.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2912:27: warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2898 |     */
2899 |     /// - Tag: otelNetworkConnectionTypeValues
2900 |     public struct NetworkConnectionTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionTypeValues' conform to the 'Sendable' protocol
2901 |         /**
2902 |         wifi.
     :
2910 |         cell.
2911 |         */
2912 |         public static let cell = NetworkConnectionTypeValues("cell")
     |                           |- warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'cell' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2913 |         /**
2914 |         unavailable.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2916:27: warning: static property 'unavailable' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2898 |     */
2899 |     /// - Tag: otelNetworkConnectionTypeValues
2900 |     public struct NetworkConnectionTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionTypeValues' conform to the 'Sendable' protocol
2901 |         /**
2902 |         wifi.
     :
2914 |         unavailable.
2915 |         */
2916 |         public static let unavailable = NetworkConnectionTypeValues("unavailable")
     |                           |- warning: static property 'unavailable' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'unavailable' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2917 |         /**
2918 |         unknown.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2920:27: warning: static property 'unknown' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2898 |     */
2899 |     /// - Tag: otelNetworkConnectionTypeValues
2900 |     public struct NetworkConnectionTypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionTypeValues' conform to the 'Sendable' protocol
2901 |         /**
2902 |         wifi.
     :
2918 |         unknown.
2919 |         */
2920 |         public static let unknown = NetworkConnectionTypeValues("unknown")
     |                           |- warning: static property 'unknown' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionTypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'unknown' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2921 |
2922 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2941:27: warning: static property 'gprs' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
2940 |         */
2941 |         public static let gprs = NetworkConnectionSubtypeValues("gprs")
     |                           |- warning: static property 'gprs' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'gprs' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2942 |         /**
2943 |         EDGE.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2945:27: warning: static property 'edge' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2943 |         EDGE.
2944 |         */
2945 |         public static let edge = NetworkConnectionSubtypeValues("edge")
     |                           |- warning: static property 'edge' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'edge' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2946 |         /**
2947 |         UMTS.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2949:27: warning: static property 'umts' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2947 |         UMTS.
2948 |         */
2949 |         public static let umts = NetworkConnectionSubtypeValues("umts")
     |                           |- warning: static property 'umts' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'umts' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2950 |         /**
2951 |         CDMA.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2953:27: warning: static property 'cdma' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2951 |         CDMA.
2952 |         */
2953 |         public static let cdma = NetworkConnectionSubtypeValues("cdma")
     |                           |- warning: static property 'cdma' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'cdma' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2954 |         /**
2955 |         EVDO Rel. 0.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2957:27: warning: static property 'evdo0' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2955 |         EVDO Rel. 0.
2956 |         */
2957 |         public static let evdo0 = NetworkConnectionSubtypeValues("evdo_0")
     |                           |- warning: static property 'evdo0' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'evdo0' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2958 |         /**
2959 |         EVDO Rev. A.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2961:27: warning: static property 'evdoA' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2959 |         EVDO Rev. A.
2960 |         */
2961 |         public static let evdoA = NetworkConnectionSubtypeValues("evdo_a")
     |                           |- warning: static property 'evdoA' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'evdoA' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2962 |         /**
2963 |         CDMA2000 1XRTT.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2965:27: warning: static property 'cdma20001xrtt' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2963 |         CDMA2000 1XRTT.
2964 |         */
2965 |         public static let cdma20001xrtt = NetworkConnectionSubtypeValues("cdma2000_1xrtt")
     |                           |- warning: static property 'cdma20001xrtt' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'cdma20001xrtt' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2966 |         /**
2967 |         HSDPA.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2969:27: warning: static property 'hsdpa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2967 |         HSDPA.
2968 |         */
2969 |         public static let hsdpa = NetworkConnectionSubtypeValues("hsdpa")
     |                           |- warning: static property 'hsdpa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'hsdpa' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2970 |         /**
2971 |         HSUPA.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2973:27: warning: static property 'hsupa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2971 |         HSUPA.
2972 |         */
2973 |         public static let hsupa = NetworkConnectionSubtypeValues("hsupa")
     |                           |- warning: static property 'hsupa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'hsupa' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2974 |         /**
2975 |         HSPA.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2977:27: warning: static property 'hspa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2975 |         HSPA.
2976 |         */
2977 |         public static let hspa = NetworkConnectionSubtypeValues("hspa")
     |                           |- warning: static property 'hspa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'hspa' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2978 |         /**
2979 |         IDEN.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2981:27: warning: static property 'iden' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2979 |         IDEN.
2980 |         */
2981 |         public static let iden = NetworkConnectionSubtypeValues("iden")
     |                           |- warning: static property 'iden' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'iden' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2982 |         /**
2983 |         EVDO Rev. B.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2985:27: warning: static property 'evdoB' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2983 |         EVDO Rev. B.
2984 |         */
2985 |         public static let evdoB = NetworkConnectionSubtypeValues("evdo_b")
     |                           |- warning: static property 'evdoB' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'evdoB' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2986 |         /**
2987 |         LTE.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2989:27: warning: static property 'lte' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2987 |         LTE.
2988 |         */
2989 |         public static let lte = NetworkConnectionSubtypeValues("lte")
     |                           |- warning: static property 'lte' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'lte' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2990 |         /**
2991 |         EHRPD.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2993:27: warning: static property 'ehrpd' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2991 |         EHRPD.
2992 |         */
2993 |         public static let ehrpd = NetworkConnectionSubtypeValues("ehrpd")
     |                           |- warning: static property 'ehrpd' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'ehrpd' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2994 |         /**
2995 |         HSPAP.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:2997:27: warning: static property 'hspap' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2995 |         HSPAP.
2996 |         */
2997 |         public static let hspap = NetworkConnectionSubtypeValues("hspap")
     |                           |- warning: static property 'hspap' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'hspap' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2998 |         /**
2999 |         GSM.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3001:27: warning: static property 'gsm' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
2999 |         GSM.
3000 |         */
3001 |         public static let gsm = NetworkConnectionSubtypeValues("gsm")
     |                           |- warning: static property 'gsm' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'gsm' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3002 |         /**
3003 |         TD-SCDMA.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3005:27: warning: static property 'tdScdma' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
3003 |         TD-SCDMA.
3004 |         */
3005 |         public static let tdScdma = NetworkConnectionSubtypeValues("td_scdma")
     |                           |- warning: static property 'tdScdma' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'tdScdma' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3006 |         /**
3007 |         IWLAN.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3009:27: warning: static property 'iwlan' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
3007 |         IWLAN.
3008 |         */
3009 |         public static let iwlan = NetworkConnectionSubtypeValues("iwlan")
     |                           |- warning: static property 'iwlan' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'iwlan' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3010 |         /**
3011 |         5G NR (New Radio).
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3013:27: warning: static property 'nr' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
3011 |         5G NR (New Radio).
3012 |         */
3013 |         public static let nr = NetworkConnectionSubtypeValues("nr")
     |                           |- warning: static property 'nr' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'nr' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3014 |         /**
3015 |         5G NRNSA (New Radio Non-Standalone).
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3017:27: warning: static property 'nrnsa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
3015 |         5G NRNSA (New Radio Non-Standalone).
3016 |         */
3017 |         public static let nrnsa = NetworkConnectionSubtypeValues("nrnsa")
     |                           |- warning: static property 'nrnsa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'nrnsa' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3018 |         /**
3019 |         LTE CA.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3021:27: warning: static property 'lteCa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
2935 |     */
2936 |     /// - Tag: otelNetworkConnectionSubtypeValues
2937 |     public struct NetworkConnectionSubtypeValues: CustomStringConvertible {
     |                   `- note: consider making struct 'NetworkConnectionSubtypeValues' conform to the 'Sendable' protocol
2938 |         /**
2939 |         GPRS.
     :
3019 |         LTE CA.
3020 |         */
3021 |         public static let lteCa = NetworkConnectionSubtypeValues("lte_ca")
     |                           |- warning: static property 'lteCa' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.NetworkConnectionSubtypeValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'lteCa' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3022 |
3023 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3042:27: warning: static property 'grpc' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
3036 |     */
3037 |     /// - Tag: otelRpcSystemValues
3038 |     public struct RpcSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'RpcSystemValues' conform to the 'Sendable' protocol
3039 |         /**
3040 |         gRPC.
3041 |         */
3042 |         public static let grpc = RpcSystemValues("grpc")
     |                           |- warning: static property 'grpc' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'grpc' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3043 |         /**
3044 |         Java RMI.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3046:27: warning: static property 'javaRmi' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
3036 |     */
3037 |     /// - Tag: otelRpcSystemValues
3038 |     public struct RpcSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'RpcSystemValues' conform to the 'Sendable' protocol
3039 |         /**
3040 |         gRPC.
     :
3044 |         Java RMI.
3045 |         */
3046 |         public static let javaRmi = RpcSystemValues("java_rmi")
     |                           |- warning: static property 'javaRmi' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'javaRmi' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3047 |         /**
3048 |         .NET WCF.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3050:27: warning: static property 'dotnetWcf' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
3036 |     */
3037 |     /// - Tag: otelRpcSystemValues
3038 |     public struct RpcSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'RpcSystemValues' conform to the 'Sendable' protocol
3039 |         /**
3040 |         gRPC.
     :
3048 |         .NET WCF.
3049 |         */
3050 |         public static let dotnetWcf = RpcSystemValues("dotnet_wcf")
     |                           |- warning: static property 'dotnetWcf' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'dotnetWcf' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3051 |         /**
3052 |         Apache Dubbo.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3054:27: warning: static property 'apacheDubbo' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
3036 |     */
3037 |     /// - Tag: otelRpcSystemValues
3038 |     public struct RpcSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'RpcSystemValues' conform to the 'Sendable' protocol
3039 |         /**
3040 |         gRPC.
     :
3052 |         Apache Dubbo.
3053 |         */
3054 |         public static let apacheDubbo = RpcSystemValues("apache_dubbo")
     |                           |- warning: static property 'apacheDubbo' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'apacheDubbo' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3055 |         /**
3056 |         Connect RPC.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SemanticAttributes.swift:3058:27: warning: static property 'connectRpc' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
3036 |     */
3037 |     /// - Tag: otelRpcSystemValues
3038 |     public struct RpcSystemValues: CustomStringConvertible {
     |                   `- note: consider making struct 'RpcSystemValues' conform to the 'Sendable' protocol
3039 |         /**
3040 |         gRPC.
     :
3056 |         Connect RPC.
3057 |         */
3058 |         public static let connectRpc = RpcSystemValues("connect_rpc")
     |                           |- warning: static property 'connectRpc' is not concurrency-safe because non-'Sendable' type 'SemanticAttributes.RpcSystemValues' may have shared mutable state; this is an error in the Swift 6 language mode
     |                           |- note: add '@MainActor' to make static property 'connectRpc' part of global actor 'MainActor'
     |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3059 |
3060 |         internal let value: String
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanId.swift:13:23: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'SpanId' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | /// A struct that represents a span identifier. A valid span identifier is an 8-byte array with at
  9 | /// least one non-zero byte.
 10 | public struct SpanId: Equatable, Comparable, Hashable, CustomStringConvertible, Codable {
    |               `- note: consider making struct 'SpanId' conform to the 'Sendable' protocol
 11 |     public static let size = 8
 12 |     public static let invalidId: UInt64 = 0
 13 |     public static let invalid = SpanId(id: invalidId)
    |                       |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'SpanId' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'invalid' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |
 15 |     // The internal representation of the SpanId.
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/TraceId.swift:13:23: warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'TraceId' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | /// A struct that represents a trace identifier. A valid trace identifier is a 16-byte array with at
  9 | /// least one non-zero byte.
 10 | public struct TraceId: Comparable, Hashable, CustomStringConvertible, Equatable, Codable {
    |               `- note: consider making struct 'TraceId' conform to the 'Sendable' protocol
 11 |     public static let size = 16
 12 |     public static let invalidId: UInt64 = 0
 13 |     public static let invalid = TraceId()
    |                       |- warning: static property 'invalid' is not concurrency-safe because non-'Sendable' type 'TraceId' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'invalid' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 |
 15 |     // The internal representation of the TraceId.
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/96] Emitting module OpenTelemetryApi
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[3/109] Compiling OpenTelemetryApi LongHistogramBuilder.swift
[4/109] Compiling OpenTelemetryApi LongUpDownCounter.swift
[5/109] Compiling OpenTelemetryApi LongUpDownCounterBuilder.swift
[6/109] Compiling OpenTelemetryApi MeterBuilder.swift
[7/109] Compiling OpenTelemetryApi ObservableDoubleCounter.swift
[8/109] Compiling OpenTelemetryApi ObservableDoubleGauge.swift
[9/109] Compiling OpenTelemetryApi ObservableDoubleMeasurement.swift
[10/109] Compiling OpenTelemetryApi ObservableDoubleUpDownCounter.swift
[11/109] Compiling OpenTelemetryApi ObservableLongCounter.swift
[12/109] Compiling OpenTelemetryApi ObservableLongGauge.swift
[13/109] Compiling OpenTelemetryApi ObservableLongMeasurement.swift
[14/109] Compiling OpenTelemetryApi ObservableLongUpDownCounter.swift
[15/109] Compiling OpenTelemetryApi StableMeter.swift
[16/109] Compiling OpenTelemetryApi Baggage.swift
[17/109] Compiling OpenTelemetryApi BaggageBuilder.swift
[18/109] Compiling OpenTelemetryApi BaggageManager.swift
[19/109] Compiling OpenTelemetryApi BaggageManagerProvider.swift
[20/109] Compiling OpenTelemetryApi DefaultBaggage.swift
[21/109] Compiling OpenTelemetryApi DefaultBaggageBuilder.swift
[22/109] Compiling OpenTelemetryApi DefaultBaggageManager.swift
[23/109] Compiling OpenTelemetryApi DefaultBaggageManagerProvider.swift
[24/109] Compiling OpenTelemetryApi EmptyBaggage.swift
[25/109] Compiling OpenTelemetryApi EmptyBaggageBuilder.swift
[26/109] Compiling OpenTelemetryApi Entry.swift
[27/109] Compiling OpenTelemetryApi EntryKey.swift
[28/109] Compiling OpenTelemetryApi EntryMetadata.swift
[29/109] Compiling OpenTelemetryApi EntryValue.swift
[30/109] Compiling OpenTelemetryApi MeasureMetric.swift
[31/109] Compiling OpenTelemetryApi BoundHistogramMetric.swift
[32/109] Compiling OpenTelemetryApi HistogramMetric.swift
[33/109] Compiling OpenTelemetryApi BoundCounterMetric.swift
[34/109] Compiling OpenTelemetryApi CounterMetric.swift
[35/109] Compiling OpenTelemetryApi LabelSet.swift
[36/109] Compiling OpenTelemetryApi Meter.swift
[37/109] Compiling OpenTelemetryApi MeterProvider.swift
[38/109] Compiling OpenTelemetryApi ProxyMeter.swift
[39/109] Compiling OpenTelemetryApi BoundRawCounterMetric.swift
[40/109] Compiling OpenTelemetryApi BoundRawHistogramMetric.swift
[41/109] Compiling OpenTelemetryApi RawCounterMetric.swift
[42/109] Compiling OpenTelemetryApi RawHistogramMetric.swift
[43/109] Compiling OpenTelemetryApi SemanticAttributes.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[44/109] Compiling OpenTelemetryApi Span.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[45/109] Compiling OpenTelemetryApi SpanBuilder.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[46/109] Compiling OpenTelemetryApi SpanContext.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[47/109] Compiling OpenTelemetryApi SpanException.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[48/109] Compiling OpenTelemetryApi SpanId.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[49/109] Compiling OpenTelemetryApi SpanKind.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[50/109] Compiling OpenTelemetryApi Status.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[51/109] Compiling OpenTelemetryApi TraceFlags.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[52/109] Compiling OpenTelemetryApi TraceId.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[53/109] Compiling OpenTelemetryApi TraceState.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[54/109] Compiling OpenTelemetryApi Tracer.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[55/109] Compiling OpenTelemetryApi TracerProvider.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Trace/SpanException.swift:30:11: error: cannot find type 'NSException' in scope
28 |
29 | #if !os(Linux)
30 | extension NSException: SpanException {
   |           `- error: cannot find type 'NSException' in scope
31 |     public var type: String {
32 |         name.rawValue
[56/109] Compiling OpenTelemetryApi DefaultLogger.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[57/109] Compiling OpenTelemetryApi DefaultLoggerProvider.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[58/109] Compiling OpenTelemetryApi EventBuilder.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[59/109] Compiling OpenTelemetryApi LogRecordBuilder.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[60/109] Compiling OpenTelemetryApi Logger.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[61/109] Compiling OpenTelemetryApi LoggerBuilder.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[62/109] Compiling OpenTelemetryApi LoggerProvider.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[63/109] Compiling OpenTelemetryApi Severity.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[64/109] Compiling OpenTelemetryApi DefaultMeterProvider.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[65/109] Compiling OpenTelemetryApi BoundMeasureMetric.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[66/109] Compiling OpenTelemetryApi DoubleObserverMetric.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[67/109] Compiling OpenTelemetryApi DoubleObserverMetricHandle.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[68/109] Compiling OpenTelemetryApi IntObserverMetric.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[69/109] Compiling OpenTelemetryApi IntObserverMetricHandle.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:9:33: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
   |                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                 `- note: use 'StableMeterProvider' instead
10 |
11 |     static var proxyMeter = ProxyMeter()
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:16:49: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
14 |     init() {}
15 |
16 |     public static func setDefault(meterFactory: MeterProvider) {
   |                                                 |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                                 `- note: use 'StableMeterProvider' instead
17 |         guard !initialized else {
18 |             return
/host/spi-builder-workspace/Sources/OpenTelemetryApi/Metrics/DefaultMeterProvider.swift:8:36: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 6 | import Foundation
 7 |
 8 | public class DefaultMeterProvider: MeterProvider {
   |                                    |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
   |                                    `- note: use 'StableMeterProvider' instead
 9 |     public static var instance: MeterProvider = DefaultMeterProvider()
10 |
[70/109] Compiling OpenTelemetryApi DefaultStableMeter.swift
[71/109] Compiling OpenTelemetryApi DefaultStableMeterProvider.swift
[72/109] Compiling OpenTelemetryApi DoubleCounter.swift
[73/109] Compiling OpenTelemetryApi DoubleCounterBuilder.swift
[74/109] Compiling OpenTelemetryApi DoubleGaugeBuilder.swift
[75/109] Compiling OpenTelemetryApi DoubleHistogram.swift
[76/109] Compiling OpenTelemetryApi DoubleHistogramBuilder.swift
[77/109] Compiling OpenTelemetryApi DoubleUpDownCounter.swift
[78/109] Compiling OpenTelemetryApi DoubleUpDownCounterBuilder.swift
[79/109] Compiling OpenTelemetryApi LongCounter.swift
[80/109] Compiling OpenTelemetryApi LongCounterBuilder.swift
[81/109] Compiling OpenTelemetryApi LongGaugeBuilder.swift
[82/109] Compiling OpenTelemetryApi LongHistogram.swift
[83/109] Compiling OpenTelemetryApi StableMeterProvider.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[84/109] Compiling OpenTelemetryApi OpenTelemetry.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[85/109] Compiling OpenTelemetryApi ContextPropagators.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[86/109] Compiling OpenTelemetryApi DefaultContextPropagators.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[87/109] Compiling OpenTelemetryApi DefaultTracer.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[88/109] Compiling OpenTelemetryApi DefaultTracerProvider.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[89/109] Compiling OpenTelemetryApi PropagatedSpan.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[90/109] Compiling OpenTelemetryApi PropagatedSpanBuilder.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[91/109] Compiling OpenTelemetryApi B3Propagator.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[92/109] Compiling OpenTelemetryApi BinaryFormattable.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[93/109] Compiling OpenTelemetryApi JaegerPropagator.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[94/109] Compiling OpenTelemetryApi TextMapPropagator.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[95/109] Compiling OpenTelemetryApi W3CTraceContextPropagator.swift
/host/spi-builder-workspace/Sources/OpenTelemetryApi/OpenTelemetry.swift:25:42: warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
 23 |
 24 |   /// Registered MeterProvider or default via DefaultMeterProvider.instance.
 25 |   public private(set) var meterProvider: MeterProvider
    |                                          |- warning: 'MeterProvider' is deprecated: renamed to 'StableMeterProvider'
    |                                          `- note: use 'StableMeterProvider' instead
 26 |
 27 |   public private(set) var stableMeterProvider: StableMeterProvider?
[96/109] Compiling OpenTelemetryApi JaegerBaggagePropagator.swift
[97/109] Compiling OpenTelemetryApi TextMapBaggagePropagator.swift
[98/109] Compiling OpenTelemetryApi W3CBaggagePropagator.swift
[99/109] Compiling OpenTelemetryApi ZipkinBaggagePropagator.swift
[100/109] Compiling OpenTelemetryApi AttributeArray.swift
[101/109] Compiling OpenTelemetryApi AttributeSet.swift
[102/109] Compiling OpenTelemetryApi AttributeValue.swift
[103/109] Compiling OpenTelemetryApi ActivityContextManager.swift
[104/109] Compiling OpenTelemetryApi ContextManager.swift
[105/109] Compiling OpenTelemetryApi OpenTelemetryContextProvider.swift
[106/109] Compiling OpenTelemetryApi TaskLocalContextManager.swift
[107/109] Compiling OpenTelemetryApi StringUtils.swift
[108/109] Compiling OpenTelemetryApi SwiftExtensions.swift
[109/109] Compiling OpenTelemetryApi TracestateUtils.swift
BUILD FAILURE 6.1 wasm