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

The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build DeckUI with Swift 6.0 for macOS (SPM).

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/joshdholtz/DeckUI.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/joshdholtz/DeckUI
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at df66efe Merge pull request #37 from zhbrass/iOSPresenterNotesView
Cloned https://github.com/joshdholtz/DeckUI.git
Revision (git rev-parse @):
df66efe501cfefbd76233eb2524c55f5a720d81f
SUCCESS checkout https://github.com/joshdholtz/DeckUI.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/joshdholtz/DeckUI.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/28] Compiling Splash String+IsNumber.swift
[5/28] Compiling Splash String+PrefixChecking.swift
[6/28] Compiling Splash String+Removing.swift
[7/30] Compiling Splash Sequence+AnyOf.swift
[8/30] Compiling Splash Sequence+Occurrences.swift
[9/30] Compiling Splash String+HTMLEntities.swift
[10/30] Compiling Splash Theme.swift
[11/30] Compiling Splash Segment.swift
[12/30] Compiling Splash AttributedStringOutputFormat.swift
[13/30] Compiling Splash HTMLOutputFormat.swift
[14/30] Compiling Splash MarkdownDecorator.swift
[15/30] Compiling Splash OutputBuilder.swift
[16/30] Compiling Splash OutputFormat.swift
[17/30] Compiling Splash SyntaxHighlighter.swift
[18/30] Emitting module Splash
[19/30] Compiling Splash SyntaxRule.swift
[20/30] Compiling Splash Color.swift
[21/30] Compiling Splash Substring+HasSuffix.swift
[22/30] Compiling Splash Grammar.swift
[23/30] Compiling Splash SwiftGrammar.swift
[24/30] Compiling Splash CharacterSet+Contains.swift
[25/30] Compiling Splash Equatable+AnyOf.swift
[26/30] Compiling Splash Int+IsOdd.swift
[27/30] Compiling Splash Font.swift
[28/30] Compiling Splash Theme+Defaults.swift
[29/30] Compiling Splash TokenType.swift
[30/30] Compiling Splash Tokenizer.swift
[31/53] Emitting module DeckUI
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:58:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 56 |
 57 | extension Theme {
 58 |     public static let standard: Theme = .black
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |
 60 |     public static let dark: Theme = Theme(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:81:23: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 79 |     )
 80 |
 81 |     public static let black: Theme = Theme(
    |                       |- warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'black' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         background: Color(hex: "#000000"),
 83 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Syntax Highlight/CodeTheme.swift:52:23: warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import SwiftUI
10 |
11 | public struct CodeTheme {
   |               `- note: consider making struct 'CodeTheme' conform to the 'Sendable' protocol
12 |     public var font: SwiftUI.Font
13 |     public var plainTextColor: SwiftUI.Color
   :
50 |
51 | extension CodeTheme {
52 |     public static let xcodeDark: CodeTheme = CodeTheme(
   |                       |- warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'xcodeDark' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |         font: Font.system(size: 22, weight: .regular, design: .monospaced),
54 |         plainTextColor: Color(hex: "#FFFFFF"),
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:105:23: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
103 |     )
104 |
105 |     public static let white: Theme = Theme(
    |                       |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |         background: Color(hex: "#FFFFFF"),
107 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
[32/55] Compiling DeckUI NoGrammar.swift
[33/55] Compiling DeckUI ProgrammingLanguage.swift
[34/55] Compiling DeckUI Deck.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:58:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 56 |
 57 | extension Theme {
 58 |     public static let standard: Theme = .black
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |
 60 |     public static let dark: Theme = Theme(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:81:23: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 79 |     )
 80 |
 81 |     public static let black: Theme = Theme(
    |                       |- warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'black' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         background: Color(hex: "#000000"),
 83 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Syntax Highlight/CodeTheme.swift:52:23: warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import SwiftUI
10 |
11 | public struct CodeTheme {
   |               `- note: consider making struct 'CodeTheme' conform to the 'Sendable' protocol
12 |     public var font: SwiftUI.Font
13 |     public var plainTextColor: SwiftUI.Color
   :
50 |
51 | extension CodeTheme {
52 |     public static let xcodeDark: CodeTheme = CodeTheme(
   |                       |- warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'xcodeDark' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |         font: Font.system(size: 22, weight: .regular, design: .monospaced),
54 |         plainTextColor: Color(hex: "#FFFFFF"),
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:105:23: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
103 |     )
104 |
105 |     public static let white: Theme = Theme(
    |                       |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |         background: Color(hex: "#FFFFFF"),
107 |         title: Foreground(
[35/55] Compiling DeckUI Slide.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:58:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 56 |
 57 | extension Theme {
 58 |     public static let standard: Theme = .black
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |
 60 |     public static let dark: Theme = Theme(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:81:23: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 79 |     )
 80 |
 81 |     public static let black: Theme = Theme(
    |                       |- warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'black' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         background: Color(hex: "#000000"),
 83 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Syntax Highlight/CodeTheme.swift:52:23: warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import SwiftUI
10 |
11 | public struct CodeTheme {
   |               `- note: consider making struct 'CodeTheme' conform to the 'Sendable' protocol
12 |     public var font: SwiftUI.Font
13 |     public var plainTextColor: SwiftUI.Color
   :
50 |
51 | extension CodeTheme {
52 |     public static let xcodeDark: CodeTheme = CodeTheme(
   |                       |- warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'xcodeDark' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |         font: Font.system(size: 22, weight: .regular, design: .monospaced),
54 |         plainTextColor: Color(hex: "#FFFFFF"),
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:105:23: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
103 |     )
104 |
105 |     public static let white: Theme = Theme(
    |                       |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |         background: Color(hex: "#FFFFFF"),
107 |         title: Foreground(
[36/55] Compiling DeckUI Theme.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:58:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 56 |
 57 | extension Theme {
 58 |     public static let standard: Theme = .black
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |
 60 |     public static let dark: Theme = Theme(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:81:23: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 79 |     )
 80 |
 81 |     public static let black: Theme = Theme(
    |                       |- warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'black' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |         background: Color(hex: "#000000"),
 83 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Syntax Highlight/CodeTheme.swift:52:23: warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import SwiftUI
10 |
11 | public struct CodeTheme {
   |               `- note: consider making struct 'CodeTheme' conform to the 'Sendable' protocol
12 |     public var font: SwiftUI.Font
13 |     public var plainTextColor: SwiftUI.Color
   :
50 |
51 | extension CodeTheme {
52 |     public static let xcodeDark: CodeTheme = CodeTheme(
   |                       |- warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'xcodeDark' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |         font: Font.system(size: 22, weight: .regular, design: .monospaced),
54 |         plainTextColor: Color(hex: "#FFFFFF"),
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:105:23: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
103 |     )
104 |
105 |     public static let white: Theme = Theme(
    |                       |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |         background: Color(hex: "#FFFFFF"),
107 |         title: Foreground(
[37/55] Compiling DeckUI RawView.swift
[38/55] Compiling DeckUI Title.swift
[39/55] Compiling DeckUI Words.swift
[40/55] Compiling DeckUI PresenterNotesView.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
[41/55] Compiling DeckUI SlideNavigation.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
[42/55] Compiling DeckUI Compatibility.swift
[43/55] Compiling DeckUI ContentItem.swift
[44/55] Compiling DeckUI Bullets.swift
[45/55] Compiling DeckUI DeckUI.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
[46/55] Compiling DeckUI Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
[47/55] Compiling DeckUI PresentationState.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
[48/55] Compiling DeckUI CodeComponent.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
[49/55] Compiling DeckUI CameraView.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:87:9: warning: call to main actor-isolated initializer 'init(captureSession:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 43 | final class CameraView: PlatformView {
 44 |
 45 |     init(captureSession: AVCaptureSession) {
    |     `- note: calls to initializer 'init(captureSession:)' from outside of its actor context are implicitly asynchronous
 46 |         #if canImport(AppKit)
 47 |         previewLayer = AVCaptureVideoPreviewLayer(session: captureSession)
    :
 84 |     }
 85 |
 86 |     func makePlatformView(context: Context) -> CameraView {
    |          `- note: add '@MainActor' to make instance method 'makePlatformView(context:)' part of global actor 'MainActor'
 87 |         CameraView(captureSession: captureSession)
    |         `- warning: call to main actor-isolated initializer 'init(captureSession:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 88 |     }
 89 |
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:143:29: warning: capture of 'self' with non-sendable type 'ContentViewModel?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 91 | }
 92 |
 93 | final class ContentViewModel: ObservableObject {
    |             `- note: class 'ContentViewModel' does not conform to the 'Sendable' protocol
 94 |
 95 |     @Published var isGranted: Bool = false
    :
141 |                     if granted {
142 |                         DispatchQueue.main.async {
143 |                             self?.isGranted = granted
    |                             `- warning: capture of 'self' with non-sendable type 'ContentViewModel?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
144 |                         }
145 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:143:29: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
141 |                     if granted {
142 |                         DispatchQueue.main.async {
143 |                             self?.isGranted = granted
    |                             `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
144 |                         }
145 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:87:9: warning: sending 'self.captureSession' risks causing data races; this is an error in the Swift 6 language mode
 85 |
 86 |     func makePlatformView(context: Context) -> CameraView {
 87 |         CameraView(captureSession: captureSession)
    |         |- warning: sending 'self.captureSession' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'self.captureSession' to main actor-isolated initializer 'init(captureSession:)' risks causing data races between main actor-isolated and task-isolated uses
 88 |     }
 89 |
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:143:29: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |                     if granted {
142 |                         DispatchQueue.main.async {
143 |                             self?.isGranted = granted
    |                             |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |                         }
145 |                     }
[50/55] Compiling DeckUI Presenter.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:87:9: warning: call to main actor-isolated initializer 'init(captureSession:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 43 | final class CameraView: PlatformView {
 44 |
 45 |     init(captureSession: AVCaptureSession) {
    |     `- note: calls to initializer 'init(captureSession:)' from outside of its actor context are implicitly asynchronous
 46 |         #if canImport(AppKit)
 47 |         previewLayer = AVCaptureVideoPreviewLayer(session: captureSession)
    :
 84 |     }
 85 |
 86 |     func makePlatformView(context: Context) -> CameraView {
    |          `- note: add '@MainActor' to make instance method 'makePlatformView(context:)' part of global actor 'MainActor'
 87 |         CameraView(captureSession: captureSession)
    |         `- warning: call to main actor-isolated initializer 'init(captureSession:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 88 |     }
 89 |
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:143:29: warning: capture of 'self' with non-sendable type 'ContentViewModel?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 91 | }
 92 |
 93 | final class ContentViewModel: ObservableObject {
    |             `- note: class 'ContentViewModel' does not conform to the 'Sendable' protocol
 94 |
 95 |     @Published var isGranted: Bool = false
    :
141 |                     if granted {
142 |                         DispatchQueue.main.async {
143 |                             self?.isGranted = granted
    |                             `- warning: capture of 'self' with non-sendable type 'ContentViewModel?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
144 |                         }
145 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:143:29: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
141 |                     if granted {
142 |                         DispatchQueue.main.async {
143 |                             self?.isGranted = granted
    |                             `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
144 |                         }
145 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/Theme.swift:60:23: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | public struct Theme {
    |               `- note: consider making struct 'Theme' conform to the 'Sendable' protocol
 11 |     var background: Color
 12 |     var title: Foreground
    :
 58 |     public static let standard: Theme = .black
 59 |
 60 |     public static let dark: Theme = Theme(
    |                       |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         background: Color(hex: "#221d29"),
 62 |         title: Foreground(
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/PresentationState.swift:11:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import SwiftUI
  9 |
 10 | open class PresentationState: ObservableObject {
    |            `- note: class 'PresentationState' does not conform to the 'Sendable' protocol
 11 |     static let shared = PresentationState()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PresentationState' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |     @Published var slideIndex = 0
 13 |
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:87:9: warning: sending 'self.captureSession' risks causing data races; this is an error in the Swift 6 language mode
 85 |
 86 |     func makePlatformView(context: Context) -> CameraView {
 87 |         CameraView(captureSession: captureSession)
    |         |- warning: sending 'self.captureSession' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'self.captureSession' to main actor-isolated initializer 'init(captureSession:)' risks causing data races between main actor-isolated and task-isolated uses
 88 |     }
 89 |
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Views/CameraView.swift:143:29: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
141 |                     if granted {
142 |                         DispatchQueue.main.async {
143 |                             self?.isGranted = granted
    |                             |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
144 |                         }
145 |                     }
[51/55] Compiling DeckUI CodeComponentFormat.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.SwiftUIAttributes, AttributeScopes.SwiftUIAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.SwiftUIAttributes, AttributeScopes.SwiftUIAttributes.BackgroundColorAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.SwiftUIAttributes, AttributeScopes.SwiftUIAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Syntax Highlight/CodeTheme.swift:52:23: warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import SwiftUI
10 |
11 | public struct CodeTheme {
   |               `- note: consider making struct 'CodeTheme' conform to the 'Sendable' protocol
12 |     public var font: SwiftUI.Font
13 |     public var plainTextColor: SwiftUI.Color
   :
50 |
51 | extension CodeTheme {
52 |     public static let xcodeDark: CodeTheme = CodeTheme(
   |                       |- warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'xcodeDark' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |         font: Font.system(size: 22, weight: .regular, design: .monospaced),
54 |         plainTextColor: Color(hex: "#FFFFFF"),
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[52/55] Compiling DeckUI CodeTheme.swift
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.SwiftUIAttributes, AttributeScopes.SwiftUIAttributes.FontAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.SwiftUIAttributes, AttributeScopes.SwiftUIAttributes.BackgroundColorAttribute>'; this is an error in the Swift 6 language mode
<unknown>:0: warning: cannot form key path that captures non-sendable type 'KeyPath<AttributeScopes.SwiftUIAttributes, AttributeScopes.SwiftUIAttributes.ForegroundColorAttribute>'; this is an error in the Swift 6 language mode
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/Syntax Highlight/CodeTheme.swift:52:23: warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import SwiftUI
10 |
11 | public struct CodeTheme {
   |               `- note: consider making struct 'CodeTheme' conform to the 'Sendable' protocol
12 |     public var font: SwiftUI.Font
13 |     public var plainTextColor: SwiftUI.Color
   :
50 |
51 | extension CodeTheme {
52 |     public static let xcodeDark: CodeTheme = CodeTheme(
   |                       |- warning: static property 'xcodeDark' is not concurrency-safe because non-'Sendable' type 'CodeTheme' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'xcodeDark' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |         font: Font.system(size: 22, weight: .regular, design: .monospaced),
54 |         plainTextColor: Color(hex: "#FFFFFF"),
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
1 | public class KeyPath<Root, Value> : PartialKeyPath<Root> {
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              |- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
  |              `- note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[53/55] Compiling DeckUI Code.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/ContentItems/Media.swift:50:21: error: cannot find 'VideoPlayer' in scope
48 |                     let url = Bundle.main.url(forResource: name, withExtension: nil)!
49 |                     let player = AVPlayer(url: url)
50 |                     VideoPlayer(player: player).task {
   |                     `- error: cannot find 'VideoPlayer' in scope
51 |                         await player.play()
52 |                     }
[54/55] Compiling DeckUI Columns.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/ContentItems/Media.swift:50:21: error: cannot find 'VideoPlayer' in scope
48 |                     let url = Bundle.main.url(forResource: name, withExtension: nil)!
49 |                     let player = AVPlayer(url: url)
50 |                     VideoPlayer(player: player).task {
   |                     `- error: cannot find 'VideoPlayer' in scope
51 |                         await player.play()
52 |                     }
[55/55] Compiling DeckUI Media.swift
/Users/admin/builder/spi-builder-workspace/Sources/DeckUI/DSL/ContentItems/Media.swift:50:21: error: cannot find 'VideoPlayer' in scope
48 |                     let url = Bundle.main.url(forResource: name, withExtension: nil)!
49 |                     let player = AVPlayer(url: url)
50 |                     VideoPlayer(player: player).task {
   |                     `- error: cannot find 'VideoPlayer' in scope
51 |                         await player.play()
52 |                     }
Fetching https://github.com/johnsundell/Splash.git
[1/2118] Fetching splash
Fetched https://github.com/johnsundell/Splash.git from cache (0.98s)
Computing version for https://github.com/johnsundell/Splash.git
Computed https://github.com/johnsundell/Splash.git at 0.16.0 (0.67s)
Creating working copy for https://github.com/johnsundell/Splash.git
Working copy of https://github.com/johnsundell/Splash.git resolved at 0.16.0
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.