Build Information
Successful build of swiftui-property-picker, reference 4.4.6 (18bd1d
), with Swift 6.1 for macOS (SPM) on 30 Apr 2025 00:43:47 UTC.
Swift 6 data race errors: 19
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
========================================
RunAll
========================================
Builder version: 4.61.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ipedro/swiftui-property-picker.git
Reference: 4.4.6
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ipedro/swiftui-property-picker
* tag 4.4.6 -> FETCH_HEAD
HEAD is now at 18bd1d6 Generated PropertyPicker.swift
Cloned https://github.com/ipedro/swiftui-property-picker.git
Revision (git rev-parse @):
18bd1d659c65768f565e931c5ce9e4ba769d9a04
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ipedro/swiftui-property-picker.git at 4.4.6
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/ipedro/swiftui-property-picker.git
https://github.com/ipedro/swiftui-property-picker.git
{
"dependencies" : [
{
"identity" : "swiftlintplugins",
"requirement" : {
"range" : [
{
"lower_bound" : "0.55.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SimplyDanny/SwiftLintPlugins"
},
{
"identity" : "swiftformat",
"requirement" : {
"range" : [
{
"lower_bound" : "0.54.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/nicklockwood/SwiftFormat"
}
],
"manifest_display_name" : "swiftui-property-picker",
"name" : "swiftui-property-picker",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "PropertyPicker",
"targets" : [
"PropertyPicker"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "PropertyPicker-Examples",
"targets" : [
"PropertyPicker-Examples"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "PropertyPicker_Examples",
"module_type" : "SwiftTarget",
"name" : "PropertyPicker-Examples",
"path" : "Examples",
"product_memberships" : [
"PropertyPicker-Examples"
],
"sources" : [
"InlineExample.swift",
"ListExample.swift",
"SheetExample.swift"
],
"target_dependencies" : [
"PropertyPicker"
],
"type" : "library"
},
{
"c99name" : "PropertyPicker",
"module_type" : "SwiftTarget",
"name" : "PropertyPicker",
"path" : "Development",
"product_memberships" : [
"PropertyPicker",
"PropertyPicker-Examples"
],
"sources" : [
"Environment/EvironmentKeys.swift",
"Environment/PreferenceKeys.swift",
"Models/AnimationBox.swift",
"Models/Context.Data.swift",
"Models/Property.swift",
"Models/PropertyID.swift",
"Models/PropertyOption.swift",
"Models/PropertyPickerRowSorting.swift",
"Models/PropertyPickerSafeAreaAdjustmentStyle.swift",
"Models/PropertyPickerTextTransformation.swift",
"Models/RowBuilder.swift",
"PropertyPicker+View.swift",
"PropertyPicker.swift",
"PropertyWrappers/PropertyPickerState.swift",
"Protocols/PropertyPickerKey.swift",
"Protocols/PropertyPickerStyle.swift",
"Styles/_InlinePropertyPicker.swift",
"Styles/_ListPropertyPicker.swift",
"Styles/_SheetPropertyPicker.swift",
"ViewModifiers/Context.swift",
"ViewModifiers/PreferenceWriter.swift",
"ViewModifiers/PropertyWriter.swift",
"ViewModifiers/RowBuilderWriter.swift",
"Views/InlineRow.swift",
"Views/ListRow.swift",
"Views/Rows.swift",
"Views/Title.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
[1/1] Compiling plugin SwiftFormatPlugin
[2/2] Compiling plugin SwiftLintCommandPlugin
[3/3] Compiling plugin SwiftLintBuildToolPlugin
Building for debugging...
[3/6] Write sources
[5/6] Write swift-version-2F0A5646E1D333AE.txt
[7/32] Emitting module PropertyPicker
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:4:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | struct SafeAreaAdjustmentKey: EnvironmentKey {
4 | static var defaultValue: PropertyPickerSafeAreaAdjustmentStyle = .automatic
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | struct SheetAnimationKey: EnvironmentKey {
8 | static var defaultValue: Animation? = .easeOut
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:12:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct SelectionAnimationKey: EnvironmentKey {
12 | static var defaultValue: Animation?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:16:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | struct TitleTransformKey: EnvironmentKey {
16 | static var defaultValue: PropertyPickerTextTransformation = [.camelCaseToWords, .snakeCaseToWords, .capitalize]
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | struct RowSortingKey: EnvironmentKey {
20 | static var defaultValue: PropertyPickerRowSorting? = .ascending
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:24:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | struct RowBackgroundKey: EnvironmentKey {
24 | static var defaultValue: AnyView?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | struct LabelTransformKey: EnvironmentKey {
29 | @usableFromInline
30 | static var defaultValue: PropertyPickerTextTransformation = [.camelCaseToWords, .snakeCaseToWords, .capitalize]
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:35:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | @available(iOS 16.0, macOS 13.0, *)
34 | struct PresentationDetentKey: EnvironmentKey {
35 | static var defaultValue: Binding<PresentationDetent>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | }
37 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | @available(iOS 16.0, macOS 13.0, *)
39 | struct PresentationDetentsKey: EnvironmentKey {
40 | static var defaultValue: Set<PresentationDetent> = [
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | .fraction(1 / 3),
42 | .fraction(2 / 3),
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:44:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
42 | struct ViewBuilderPreference: PreferenceKey {
43 | /// The default value is an empty dictionary, indicating no custom view builders are provided initially.
44 | static let defaultValue = [PropertyID: RowBuilder]()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Merges view builders provided by child views, preferring the builder set closest to the root.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyID.swift:6:15: note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
4 | /// facilitating the tracking and management of property picker states and configurations
5 | /// across different components of an application.
6 | public struct PropertyID: Hashable, CustomDebugStringConvertible {
| `- note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
7 | public var metadata: UnsafeRawPointer
8 |
/Users/admin/builder/spi-builder-workspace/Development/Models/RowBuilder.swift:3:8: note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
1 | import SwiftUI
2 |
3 | struct RowBuilder: Equatable, Identifiable {
| `- note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
4 | let id: PropertyID
5 | let body: (Property) -> AnyView?
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:60:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | struct PropertyPreference: PreferenceKey {
59 | /// The default value, an empty set, indicates that no properties are collected initially.
60 | static var defaultValue: Set<Property> = []
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// Reduces multiple sets of properties into a single set, adding any new properties found in child views to the existing set.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'capitalize' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lowercase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'uppercase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'camelCaseToWords' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'snakeCaseToWords' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[8/34] Compiling PropertyPicker Rows.swift
[9/34] Compiling PropertyPicker Title.swift
[10/34] Compiling PropertyPicker PropertyWriter.swift
[11/34] Compiling PropertyPicker RowBuilderWriter.swift
[12/34] Compiling PropertyPicker EvironmentKeys.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:4:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | struct SafeAreaAdjustmentKey: EnvironmentKey {
4 | static var defaultValue: PropertyPickerSafeAreaAdjustmentStyle = .automatic
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | struct SheetAnimationKey: EnvironmentKey {
8 | static var defaultValue: Animation? = .easeOut
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:12:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct SelectionAnimationKey: EnvironmentKey {
12 | static var defaultValue: Animation?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:16:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | struct TitleTransformKey: EnvironmentKey {
16 | static var defaultValue: PropertyPickerTextTransformation = [.camelCaseToWords, .snakeCaseToWords, .capitalize]
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | struct RowSortingKey: EnvironmentKey {
20 | static var defaultValue: PropertyPickerRowSorting? = .ascending
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:24:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | struct RowBackgroundKey: EnvironmentKey {
24 | static var defaultValue: AnyView?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | struct LabelTransformKey: EnvironmentKey {
29 | @usableFromInline
30 | static var defaultValue: PropertyPickerTextTransformation = [.camelCaseToWords, .snakeCaseToWords, .capitalize]
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:35:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | @available(iOS 16.0, macOS 13.0, *)
34 | struct PresentationDetentKey: EnvironmentKey {
35 | static var defaultValue: Binding<PresentationDetent>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | }
37 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | @available(iOS 16.0, macOS 13.0, *)
39 | struct PresentationDetentsKey: EnvironmentKey {
40 | static var defaultValue: Set<PresentationDetent> = [
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | .fraction(1 / 3),
42 | .fraction(2 / 3),
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:44:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
42 | struct ViewBuilderPreference: PreferenceKey {
43 | /// The default value is an empty dictionary, indicating no custom view builders are provided initially.
44 | static let defaultValue = [PropertyID: RowBuilder]()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Merges view builders provided by child views, preferring the builder set closest to the root.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyID.swift:6:15: note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
4 | /// facilitating the tracking and management of property picker states and configurations
5 | /// across different components of an application.
6 | public struct PropertyID: Hashable, CustomDebugStringConvertible {
| `- note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
7 | public var metadata: UnsafeRawPointer
8 |
/Users/admin/builder/spi-builder-workspace/Development/Models/RowBuilder.swift:3:8: note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
1 | import SwiftUI
2 |
3 | struct RowBuilder: Equatable, Identifiable {
| `- note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
4 | let id: PropertyID
5 | let body: (Property) -> AnyView?
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:60:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | struct PropertyPreference: PreferenceKey {
59 | /// The default value, an empty set, indicates that no properties are collected initially.
60 | static var defaultValue: Set<Property> = []
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// Reduces multiple sets of properties into a single set, adding any new properties found in child views to the existing set.
[13/34] Compiling PropertyPicker PreferenceKeys.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:4:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | struct SafeAreaAdjustmentKey: EnvironmentKey {
4 | static var defaultValue: PropertyPickerSafeAreaAdjustmentStyle = .automatic
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | struct SheetAnimationKey: EnvironmentKey {
8 | static var defaultValue: Animation? = .easeOut
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:12:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct SelectionAnimationKey: EnvironmentKey {
12 | static var defaultValue: Animation?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:16:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | struct TitleTransformKey: EnvironmentKey {
16 | static var defaultValue: PropertyPickerTextTransformation = [.camelCaseToWords, .snakeCaseToWords, .capitalize]
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | struct RowSortingKey: EnvironmentKey {
20 | static var defaultValue: PropertyPickerRowSorting? = .ascending
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:24:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | struct RowBackgroundKey: EnvironmentKey {
24 | static var defaultValue: AnyView?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | struct LabelTransformKey: EnvironmentKey {
29 | @usableFromInline
30 | static var defaultValue: PropertyPickerTextTransformation = [.camelCaseToWords, .snakeCaseToWords, .capitalize]
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:35:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | @available(iOS 16.0, macOS 13.0, *)
34 | struct PresentationDetentKey: EnvironmentKey {
35 | static var defaultValue: Binding<PresentationDetent>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | }
37 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | @available(iOS 16.0, macOS 13.0, *)
39 | struct PresentationDetentsKey: EnvironmentKey {
40 | static var defaultValue: Set<PresentationDetent> = [
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | .fraction(1 / 3),
42 | .fraction(2 / 3),
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:44:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
42 | struct ViewBuilderPreference: PreferenceKey {
43 | /// The default value is an empty dictionary, indicating no custom view builders are provided initially.
44 | static let defaultValue = [PropertyID: RowBuilder]()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Merges view builders provided by child views, preferring the builder set closest to the root.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyID.swift:6:15: note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
4 | /// facilitating the tracking and management of property picker states and configurations
5 | /// across different components of an application.
6 | public struct PropertyID: Hashable, CustomDebugStringConvertible {
| `- note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
7 | public var metadata: UnsafeRawPointer
8 |
/Users/admin/builder/spi-builder-workspace/Development/Models/RowBuilder.swift:3:8: note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
1 | import SwiftUI
2 |
3 | struct RowBuilder: Equatable, Identifiable {
| `- note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
4 | let id: PropertyID
5 | let body: (Property) -> AnyView?
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:60:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | struct PropertyPreference: PreferenceKey {
59 | /// The default value, an empty set, indicates that no properties are collected initially.
60 | static var defaultValue: Set<Property> = []
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// Reduces multiple sets of properties into a single set, adding any new properties found in child views to the existing set.
[14/34] Compiling PropertyPicker AnimationBox.swift
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:4:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | struct SafeAreaAdjustmentKey: EnvironmentKey {
4 | static var defaultValue: PropertyPickerSafeAreaAdjustmentStyle = .automatic
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:8:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | struct SheetAnimationKey: EnvironmentKey {
8 | static var defaultValue: Animation? = .easeOut
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:12:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | struct SelectionAnimationKey: EnvironmentKey {
12 | static var defaultValue: Animation?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:16:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | struct TitleTransformKey: EnvironmentKey {
16 | static var defaultValue: PropertyPickerTextTransformation = [.camelCaseToWords, .snakeCaseToWords, .capitalize]
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | struct RowSortingKey: EnvironmentKey {
20 | static var defaultValue: PropertyPickerRowSorting? = .ascending
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:24:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | struct RowBackgroundKey: EnvironmentKey {
24 | static var defaultValue: AnyView?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | struct LabelTransformKey: EnvironmentKey {
29 | @usableFromInline
30 | static var defaultValue: PropertyPickerTextTransformation = [.camelCaseToWords, .snakeCaseToWords, .capitalize]
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:35:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | @available(iOS 16.0, macOS 13.0, *)
34 | struct PresentationDetentKey: EnvironmentKey {
35 | static var defaultValue: Binding<PresentationDetent>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | }
37 |
/Users/admin/builder/spi-builder-workspace/Development/Environment/EvironmentKeys.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | @available(iOS 16.0, macOS 13.0, *)
39 | struct PresentationDetentsKey: EnvironmentKey {
40 | static var defaultValue: Set<PresentationDetent> = [
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | .fraction(1 / 3),
42 | .fraction(2 / 3),
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:10:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
8 | struct TitlePreference: PreferenceKey {
9 | /// The default title shown if no other title is specified by child views.
10 | static var defaultValue: Text?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | static func reduce(value: inout Text?, nextValue: () -> Text?) {
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:27:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// The default value for the background context, initially nil indicating no background is applied.
26 | @usableFromInline
27 | static var defaultValue: AnimationBox<AnyShapeStyle>?
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 | /// Combines multiple values into a single context, prioritizing the latest value set by any child view.
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:44:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
42 | struct ViewBuilderPreference: PreferenceKey {
43 | /// The default value is an empty dictionary, indicating no custom view builders are provided initially.
44 | static let defaultValue = [PropertyID: RowBuilder]()
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[PropertyID : RowBuilder]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | /// Merges view builders provided by child views, preferring the builder set closest to the root.
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyID.swift:6:15: note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
4 | /// facilitating the tracking and management of property picker states and configurations
5 | /// across different components of an application.
6 | public struct PropertyID: Hashable, CustomDebugStringConvertible {
| `- note: consider making struct 'PropertyID' conform to the 'Sendable' protocol
7 | public var metadata: UnsafeRawPointer
8 |
/Users/admin/builder/spi-builder-workspace/Development/Models/RowBuilder.swift:3:8: note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
1 | import SwiftUI
2 |
3 | struct RowBuilder: Equatable, Identifiable {
| `- note: consider making struct 'RowBuilder' conform to the 'Sendable' protocol
4 | let id: PropertyID
5 | let body: (Property) -> AnyView?
/Users/admin/builder/spi-builder-workspace/Development/Environment/PreferenceKeys.swift:60:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | struct PropertyPreference: PreferenceKey {
59 | /// The default value, an empty set, indicates that no properties are collected initially.
60 | static var defaultValue: Set<Property> = []
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 |
62 | /// Reduces multiple sets of properties into a single set, adding any new properties found in child views to the existing set.
[15/34] Compiling PropertyPicker InlineRow.swift
[16/34] Compiling PropertyPicker ListRow.swift
[17/34] Compiling PropertyPicker PropertyOption.swift
[18/34] Compiling PropertyPicker PropertyPickerRowSorting.swift
[19/34] Compiling PropertyPicker PropertyPickerSafeAreaAdjustmentStyle.swift
[20/34] Compiling PropertyPicker PropertyPicker.swift
[21/34] Compiling PropertyPicker PropertyPickerState.swift
[22/34] Compiling PropertyPicker PropertyPickerKey.swift
[23/34] Compiling PropertyPicker Context.Data.swift
[24/34] Compiling PropertyPicker Property.swift
[25/34] Compiling PropertyPicker PropertyID.swift
[26/34] Compiling PropertyPicker PropertyPickerTextTransformation.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'capitalize' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lowercase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'uppercase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'camelCaseToWords' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'snakeCaseToWords' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[27/34] Compiling PropertyPicker RowBuilder.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'capitalize' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lowercase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'uppercase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'camelCaseToWords' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'snakeCaseToWords' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[28/34] Compiling PropertyPicker PropertyPicker+View.swift
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:10:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
8 | }
9 |
10 | public static let none = Self()
| |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:11:23: warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
9 |
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
| |- warning: static property 'capitalize' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'capitalize' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:12:23: warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
10 | public static let none = Self()
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
| |- warning: static property 'lowercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'lowercase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:13:23: warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
11 | public static let capitalize = Self(rawValue: 1 << 0)
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
| |- warning: static property 'uppercase' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'uppercase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:14:23: warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
12 | public static let lowercase = Self(rawValue: 1 << 1)
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
| |- warning: static property 'camelCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'camelCaseToWords' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
16 |
/Users/admin/builder/spi-builder-workspace/Development/Models/PropertyPickerTextTransformation.swift:15:23: warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct PropertyPickerTextTransformation: OptionSet {
| `- note: consider making struct 'PropertyPickerTextTransformation' conform to the 'Sendable' protocol
4 | public let rawValue: Int8
5 |
:
13 | public static let uppercase = Self(rawValue: 1 << 2)
14 | public static let camelCaseToWords = Self(rawValue: 1 << 3)
15 | public static let snakeCaseToWords = Self(rawValue: 1 << 4)
| |- warning: static property 'snakeCaseToWords' is not concurrency-safe because non-'Sendable' type 'PropertyPickerTextTransformation' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'snakeCaseToWords' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | func apply(to text: String) -> String {
[29/34] Compiling PropertyPicker _SheetPropertyPicker.swift
[30/34] Compiling PropertyPicker Context.swift
[31/34] Compiling PropertyPicker PreferenceWriter.swift
[32/34] Compiling PropertyPicker PropertyPickerStyle.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| |- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: converting function value of type '@MainActor @Sendable (Property) -> ListRow' to '(Property) -> ListRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: converting function value of type '@MainActor @Sendable (Property) -> ListRow' to '(Property) -> ListRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| |- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: converting function value of type '@MainActor @Sendable (Property) -> InlineRow' to '(Property) -> InlineRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: converting function value of type '@MainActor @Sendable (Property) -> InlineRow' to '(Property) -> InlineRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | @EnvironmentObject
5 | private var context: Context.Data
[33/34] Compiling PropertyPicker _InlinePropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| |- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: converting function value of type '@MainActor @Sendable (Property) -> ListRow' to '(Property) -> ListRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: converting function value of type '@MainActor @Sendable (Property) -> ListRow' to '(Property) -> ListRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| |- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: converting function value of type '@MainActor @Sendable (Property) -> InlineRow' to '(Property) -> InlineRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: converting function value of type '@MainActor @Sendable (Property) -> InlineRow' to '(Property) -> InlineRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | @EnvironmentObject
5 | private var context: Context.Data
[34/34] Compiling PropertyPicker _ListPropertyPicker.swift
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:21: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| |- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:17:28: warning: converting function value of type '@MainActor @Sendable (Property) -> ListRow' to '(Property) -> ListRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
15 | /// These rows typically display selectable options or properties within the picker.
16 | var listRows: some View {
17 | Rows<ListRow>(row: ListRow.init(data:))
| `- warning: converting function value of type '@MainActor @Sendable (Property) -> ListRow' to '(Property) -> ListRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:23: warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: call to main actor-isolated initializer 'init(row:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Views/Rows.swift:3:8: note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Rows<V>: View where V: View {
| |- note: calls to initializer 'init(row:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | var row: (Property) -> V
5 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:21:30: warning: converting function value of type '@MainActor @Sendable (Property) -> InlineRow' to '(Property) -> InlineRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
19 |
20 | var inlineRows: some View {
21 | Rows<InlineRow>(row: InlineRow.init(data:))
| `- warning: converting function value of type '@MainActor @Sendable (Property) -> InlineRow' to '(Property) -> InlineRow' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
22 | }
23 |
/Users/admin/builder/spi-builder-workspace/Development/Protocols/PropertyPickerStyle.swift:27:9: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 | /// This view is generally used to display a header or title for the picker section.
26 | var title: some View {
27 | Title()
| `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Development/Views/Title.swift:3:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
1 | import SwiftUI
2 |
3 | struct Title: View {
| |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
4 | @EnvironmentObject
5 | private var context: Context.Data
[35/38] Compiling PropertyPicker_Examples SheetExample.swift
/Users/admin/builder/spi-builder-workspace/Examples/SheetExample.swift:76:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private enum InteractionKey: String, PropertyPickerKey {
76 | static var defaultValue: InteractionKey = .enabled
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | case disabled, enabled
[36/38] Compiling PropertyPicker_Examples ListExample.swift
[37/38] Emitting module PropertyPicker_Examples
/Users/admin/builder/spi-builder-workspace/Examples/InlineExample.swift:81:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
79 |
80 | private enum InteractionKey: String, PropertyPickerKey {
81 | static var defaultValue: InteractionKey = .enabled
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | case disabled, enabled
/Users/admin/builder/spi-builder-workspace/Examples/SheetExample.swift:76:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private enum InteractionKey: String, PropertyPickerKey {
76 | static var defaultValue: InteractionKey = .enabled
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | case disabled, enabled
[38/38] Compiling PropertyPicker_Examples InlineExample.swift
/Users/admin/builder/spi-builder-workspace/Examples/InlineExample.swift:81:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
79 |
80 | private enum InteractionKey: String, PropertyPickerKey {
81 | static var defaultValue: InteractionKey = .enabled
| |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |
83 | case disabled, enabled
Build complete! (38.84s)
Fetching https://github.com/nicklockwood/SwiftFormat
Fetching https://github.com/SimplyDanny/SwiftLintPlugins
[1/199] Fetching swiftlintplugins
[199/46945] Fetching swiftlintplugins, swiftformat
Fetched https://github.com/SimplyDanny/SwiftLintPlugins from cache (20.40s)
Fetched https://github.com/nicklockwood/SwiftFormat from cache (20.40s)
Computing version for https://github.com/SimplyDanny/SwiftLintPlugins
Computed https://github.com/SimplyDanny/SwiftLintPlugins at 0.59.1 (20.88s)
Computing version for https://github.com/nicklockwood/SwiftFormat
Computed https://github.com/nicklockwood/SwiftFormat at 0.55.5 (0.98s)
Creating working copy for https://github.com/SimplyDanny/SwiftLintPlugins
Working copy of https://github.com/SimplyDanny/SwiftLintPlugins resolved at 0.59.1
Creating working copy for https://github.com/nicklockwood/SwiftFormat
Working copy of https://github.com/nicklockwood/SwiftFormat resolved at 0.55.5
Downloading binary artifact https://github.com/realm/SwiftLint/releases/download/0.59.1/SwiftLintBinary.artifactbundle.zip
[16375/41085097] Downloading https://github.com/realm/SwiftLint/releases/download/0.59.1/SwiftLintBinary.artifactbundle.zip
Downloaded https://github.com/realm/SwiftLint/releases/download/0.59.1/SwiftLintBinary.artifactbundle.zip (2.74s)
Build complete.
{
"dependencies" : [
{
"identity" : "swiftlintplugins",
"requirement" : {
"range" : [
{
"lower_bound" : "0.55.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SimplyDanny/SwiftLintPlugins"
},
{
"identity" : "swiftformat",
"requirement" : {
"range" : [
{
"lower_bound" : "0.54.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/nicklockwood/SwiftFormat"
}
],
"manifest_display_name" : "swiftui-property-picker",
"name" : "swiftui-property-picker",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "PropertyPicker",
"targets" : [
"PropertyPicker"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "PropertyPicker-Examples",
"targets" : [
"PropertyPicker-Examples"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "PropertyPicker_Examples",
"module_type" : "SwiftTarget",
"name" : "PropertyPicker-Examples",
"path" : "Examples",
"product_memberships" : [
"PropertyPicker-Examples"
],
"sources" : [
"InlineExample.swift",
"ListExample.swift",
"SheetExample.swift"
],
"target_dependencies" : [
"PropertyPicker"
],
"type" : "library"
},
{
"c99name" : "PropertyPicker",
"module_type" : "SwiftTarget",
"name" : "PropertyPicker",
"path" : "Development",
"product_memberships" : [
"PropertyPicker",
"PropertyPicker-Examples"
],
"sources" : [
"Environment/EvironmentKeys.swift",
"Environment/PreferenceKeys.swift",
"Models/AnimationBox.swift",
"Models/Context.Data.swift",
"Models/Property.swift",
"Models/PropertyID.swift",
"Models/PropertyOption.swift",
"Models/PropertyPickerRowSorting.swift",
"Models/PropertyPickerSafeAreaAdjustmentStyle.swift",
"Models/PropertyPickerTextTransformation.swift",
"Models/RowBuilder.swift",
"PropertyPicker+View.swift",
"PropertyPicker.swift",
"PropertyWrappers/PropertyPickerState.swift",
"Protocols/PropertyPickerKey.swift",
"Protocols/PropertyPickerStyle.swift",
"Styles/_InlinePropertyPicker.swift",
"Styles/_ListPropertyPicker.swift",
"Styles/_SheetPropertyPicker.swift",
"ViewModifiers/Context.swift",
"ViewModifiers/PreferenceWriter.swift",
"ViewModifiers/PropertyWriter.swift",
"ViewModifiers/RowBuilderWriter.swift",
"Views/InlineRow.swift",
"Views/ListRow.swift",
"Views/Rows.swift",
"Views/Title.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.