Build Information
Successful build of SwiftUIContacts, reference 0.0.6 (c188b3
), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 13:03:28 UTC.
Swift 6 data race errors: 30
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.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/edonv/SwiftUIContacts.git
Reference: 0.0.6
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/edonv/SwiftUIContacts
* tag 0.0.6 -> FETCH_HEAD
HEAD is now at c188b30 Update README.md
Cloned https://github.com/edonv/SwiftUIContacts.git
Revision (git rev-parse @):
c188b308ebe3f576e8de7e05be7e9dc3f15747db
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/edonv/SwiftUIContacts.git at 0.0.6
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "swiftuicontacts",
"name": "SwiftUIContacts",
"url": "https://github.com/edonv/SwiftUIContacts.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SwiftUIContacts",
"dependencies": [
]
}
]
}
Fetching https://github.com/edonv/SwiftUIContacts.git
[1/181] Fetching swiftuicontacts
Fetched https://github.com/edonv/SwiftUIContacts.git from cache (0.61s)
Creating working copy for https://github.com/edonv/SwiftUIContacts.git
Working copy of https://github.com/edonv/SwiftUIContacts.git resolved at 0.0.6 (c188b30)
warning: '.resolve-product-dependencies': dependency 'swiftuicontacts' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/edonv/SwiftUIContacts.git
https://github.com/edonv/SwiftUIContacts.git
{
"dependencies" : [
],
"manifest_display_name" : "SwiftUIContacts",
"name" : "SwiftUIContacts",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "SwiftUIContacts",
"targets" : [
"SwiftUIContacts"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftUIContactsTests",
"module_type" : "SwiftTarget",
"name" : "SwiftUIContactsTests",
"path" : "Tests/SwiftUIContactsTests",
"sources" : [
"SwiftUIContactsTests.swift"
],
"target_dependencies" : [
"SwiftUIContacts"
],
"type" : "test"
},
{
"c99name" : "SwiftUIContacts",
"module_type" : "SwiftTarget",
"name" : "SwiftUIContacts",
"path" : "Sources/SwiftUIContacts",
"product_memberships" : [
"SwiftUIContacts"
],
"sources" : [
"CNContactPickerViewController/ContactPicker+ViewModifiers.swift",
"CNContactPickerViewController/ContactPicker.swift",
"CNContactViewController/ContactView+ViewModifiers.swift",
"CNContactViewController/ContactView.swift",
"Extensions/Contacts+Constants.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/8] Compiling SwiftUIContacts ContactView+ViewModifiers.swift
[4/8] Compiling SwiftUIContacts ContactView.swift
[5/8] Emitting module SwiftUIContacts
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:19:23: warning: static property 'identifierKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
17 |
18 | // Properties that are always fetched. Can be used with key value coding and observing.
19 | public static let identifierKey: ContactsConstant = ContactsConstant(rawValue: CNContactIdentifierKey)
| |- warning: static property 'identifierKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'identifierKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | // Optional properties that can be fetched. Can be used with key value coding and observing.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:22:23: warning: static property 'namePrefixKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
20 |
21 | // Optional properties that can be fetched. Can be used with key value coding and observing.
22 | public static let namePrefixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNamePrefixKey)
| |- warning: static property 'namePrefixKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'namePrefixKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | public static let givenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactGivenNameKey)
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:23:23: warning: static property 'givenNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
21 | // Optional properties that can be fetched. Can be used with key value coding and observing.
22 | public static let namePrefixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNamePrefixKey)
23 | public static let givenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactGivenNameKey)
| |- warning: static property 'givenNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'givenNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:24:23: warning: static property 'middleNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
22 | public static let namePrefixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNamePrefixKey)
23 | public static let givenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactGivenNameKey)
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
| |- warning: static property 'middleNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'middleNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:25:23: warning: static property 'familyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
23 | public static let givenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactGivenNameKey)
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
| |- warning: static property 'familyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'familyNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:26:23: warning: static property 'previousFamilyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
| |- warning: static property 'previousFamilyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'previousFamilyNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:27:23: warning: static property 'nameSuffixKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
| |- warning: static property 'nameSuffixKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameSuffixKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:28:23: warning: static property 'nicknameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
| |- warning: static property 'nicknameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nicknameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:29:23: warning: static property 'organizationNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
| |- warning: static property 'organizationNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'organizationNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:30:23: warning: static property 'departmentNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
| |- warning: static property 'departmentNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'departmentNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:31:23: warning: static property 'jobTitleKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
| |- warning: static property 'jobTitleKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'jobTitleKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:32:23: warning: static property 'phoneticGivenNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
| |- warning: static property 'phoneticGivenNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneticGivenNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:33:23: warning: static property 'phoneticMiddleNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
| |- warning: static property 'phoneticMiddleNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneticMiddleNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:34:23: warning: static property 'phoneticFamilyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
| |- warning: static property 'phoneticFamilyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneticFamilyNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:35:23: warning: static property 'phoneticOrganizationNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
| |- warning: static property 'phoneticOrganizationNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneticOrganizationNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:36:23: warning: static property 'birthdayKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
| |- warning: static property 'birthdayKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'birthdayKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:37:23: warning: static property 'nonGregorianBirthdayKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
| |- warning: static property 'nonGregorianBirthdayKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nonGregorianBirthdayKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:38:23: warning: static property 'noteKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
| |- warning: static property 'noteKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'noteKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:39:23: warning: static property 'imageDataKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
| |- warning: static property 'imageDataKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'imageDataKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:40:23: warning: static property 'thumbnailImageDataKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
| |- warning: static property 'thumbnailImageDataKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'thumbnailImageDataKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:41:23: warning: static property 'imageDataAvailableKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
| |- warning: static property 'imageDataAvailableKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'imageDataAvailableKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:42:23: warning: static property 'typeKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
| |- warning: static property 'typeKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'typeKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:43:23: warning: static property 'phoneNumbersKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
| |- warning: static property 'phoneNumbersKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneNumbersKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:44:23: warning: static property 'emailAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
| |- warning: static property 'emailAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'emailAddressesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:45:23: warning: static property 'postalAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
| |- warning: static property 'postalAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'postalAddressesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:46:23: warning: static property 'datesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
| |- warning: static property 'datesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'datesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:47:23: warning: static property 'urlAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
| |- warning: static property 'urlAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'urlAddressesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
49 | public static let socialProfilesKey: ContactsConstant = ContactsConstant(rawValue: CNContactSocialProfilesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:48:23: warning: static property 'relationsKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
| |- warning: static property 'relationsKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'relationsKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | public static let socialProfilesKey: ContactsConstant = ContactsConstant(rawValue: CNContactSocialProfilesKey)
50 | public static let instantMessageAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactInstantMessageAddressesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:49:23: warning: static property 'socialProfilesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
49 | public static let socialProfilesKey: ContactsConstant = ContactsConstant(rawValue: CNContactSocialProfilesKey)
| |- warning: static property 'socialProfilesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'socialProfilesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | public static let instantMessageAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactInstantMessageAddressesKey)
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:50:23: warning: static property 'instantMessageAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
49 | public static let socialProfilesKey: ContactsConstant = ContactsConstant(rawValue: CNContactSocialProfilesKey)
50 | public static let instantMessageAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactInstantMessageAddressesKey)
| |- warning: static property 'instantMessageAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instantMessageAddressesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | }
52 |
[6/8] Compiling SwiftUIContacts Contacts+Constants.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:19:23: warning: static property 'identifierKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
17 |
18 | // Properties that are always fetched. Can be used with key value coding and observing.
19 | public static let identifierKey: ContactsConstant = ContactsConstant(rawValue: CNContactIdentifierKey)
| |- warning: static property 'identifierKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'identifierKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | // Optional properties that can be fetched. Can be used with key value coding and observing.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:22:23: warning: static property 'namePrefixKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
20 |
21 | // Optional properties that can be fetched. Can be used with key value coding and observing.
22 | public static let namePrefixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNamePrefixKey)
| |- warning: static property 'namePrefixKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'namePrefixKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | public static let givenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactGivenNameKey)
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:23:23: warning: static property 'givenNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
21 | // Optional properties that can be fetched. Can be used with key value coding and observing.
22 | public static let namePrefixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNamePrefixKey)
23 | public static let givenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactGivenNameKey)
| |- warning: static property 'givenNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'givenNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:24:23: warning: static property 'middleNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
22 | public static let namePrefixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNamePrefixKey)
23 | public static let givenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactGivenNameKey)
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
| |- warning: static property 'middleNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'middleNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:25:23: warning: static property 'familyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
23 | public static let givenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactGivenNameKey)
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
| |- warning: static property 'familyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'familyNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:26:23: warning: static property 'previousFamilyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
24 | public static let middleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactMiddleNameKey)
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
| |- warning: static property 'previousFamilyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'previousFamilyNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:27:23: warning: static property 'nameSuffixKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
25 | public static let familyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactFamilyNameKey)
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
| |- warning: static property 'nameSuffixKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameSuffixKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:28:23: warning: static property 'nicknameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
26 | public static let previousFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPreviousFamilyNameKey)
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
| |- warning: static property 'nicknameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nicknameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:29:23: warning: static property 'organizationNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
27 | public static let nameSuffixKey: ContactsConstant = ContactsConstant(rawValue: CNContactNameSuffixKey)
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
| |- warning: static property 'organizationNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'organizationNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:30:23: warning: static property 'departmentNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
28 | public static let nicknameKey: ContactsConstant = ContactsConstant(rawValue: CNContactNicknameKey)
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
| |- warning: static property 'departmentNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'departmentNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:31:23: warning: static property 'jobTitleKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
29 | public static let organizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactOrganizationNameKey)
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
| |- warning: static property 'jobTitleKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'jobTitleKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:32:23: warning: static property 'phoneticGivenNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
30 | public static let departmentNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactDepartmentNameKey)
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
| |- warning: static property 'phoneticGivenNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneticGivenNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:33:23: warning: static property 'phoneticMiddleNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
31 | public static let jobTitleKey: ContactsConstant = ContactsConstant(rawValue: CNContactJobTitleKey)
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
| |- warning: static property 'phoneticMiddleNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneticMiddleNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:34:23: warning: static property 'phoneticFamilyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
32 | public static let phoneticGivenNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticGivenNameKey)
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
| |- warning: static property 'phoneticFamilyNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneticFamilyNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:35:23: warning: static property 'phoneticOrganizationNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
33 | public static let phoneticMiddleNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticMiddleNameKey)
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
| |- warning: static property 'phoneticOrganizationNameKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneticOrganizationNameKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:36:23: warning: static property 'birthdayKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
34 | public static let phoneticFamilyNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticFamilyNameKey)
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
| |- warning: static property 'birthdayKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'birthdayKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:37:23: warning: static property 'nonGregorianBirthdayKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
35 | public static let phoneticOrganizationNameKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneticOrganizationNameKey)
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
| |- warning: static property 'nonGregorianBirthdayKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nonGregorianBirthdayKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:38:23: warning: static property 'noteKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
36 | public static let birthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactBirthdayKey)
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
| |- warning: static property 'noteKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'noteKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:39:23: warning: static property 'imageDataKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
37 | public static let nonGregorianBirthdayKey: ContactsConstant = ContactsConstant(rawValue: CNContactNonGregorianBirthdayKey)
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
| |- warning: static property 'imageDataKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'imageDataKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:40:23: warning: static property 'thumbnailImageDataKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
38 | public static let noteKey: ContactsConstant = ContactsConstant(rawValue: CNContactNoteKey)
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
| |- warning: static property 'thumbnailImageDataKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'thumbnailImageDataKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:41:23: warning: static property 'imageDataAvailableKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
39 | public static let imageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataKey)
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
| |- warning: static property 'imageDataAvailableKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'imageDataAvailableKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:42:23: warning: static property 'typeKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
40 | public static let thumbnailImageDataKey: ContactsConstant = ContactsConstant(rawValue: CNContactThumbnailImageDataKey)
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
| |- warning: static property 'typeKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'typeKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:43:23: warning: static property 'phoneNumbersKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
41 | public static let imageDataAvailableKey: ContactsConstant = ContactsConstant(rawValue: CNContactImageDataAvailableKey)
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
| |- warning: static property 'phoneNumbersKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'phoneNumbersKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:44:23: warning: static property 'emailAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
42 | public static let typeKey: ContactsConstant = ContactsConstant(rawValue: CNContactTypeKey)
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
| |- warning: static property 'emailAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'emailAddressesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:45:23: warning: static property 'postalAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
43 | public static let phoneNumbersKey: ContactsConstant = ContactsConstant(rawValue: CNContactPhoneNumbersKey)
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
| |- warning: static property 'postalAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'postalAddressesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:46:23: warning: static property 'datesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
44 | public static let emailAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactEmailAddressesKey)
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
| |- warning: static property 'datesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'datesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:47:23: warning: static property 'urlAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
45 | public static let postalAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactPostalAddressesKey)
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
| |- warning: static property 'urlAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'urlAddressesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
49 | public static let socialProfilesKey: ContactsConstant = ContactsConstant(rawValue: CNContactSocialProfilesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:48:23: warning: static property 'relationsKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
46 | public static let datesKey: ContactsConstant = ContactsConstant(rawValue: CNContactDatesKey)
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
| |- warning: static property 'relationsKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'relationsKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | public static let socialProfilesKey: ContactsConstant = ContactsConstant(rawValue: CNContactSocialProfilesKey)
50 | public static let instantMessageAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactInstantMessageAddressesKey)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:49:23: warning: static property 'socialProfilesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
47 | public static let urlAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactUrlAddressesKey)
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
49 | public static let socialProfilesKey: ContactsConstant = ContactsConstant(rawValue: CNContactSocialProfilesKey)
| |- warning: static property 'socialProfilesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'socialProfilesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | public static let instantMessageAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactInstantMessageAddressesKey)
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIContacts/Extensions/Contacts+Constants.swift:50:23: warning: static property 'instantMessageAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
9 | import Contacts
10 |
11 | public struct ContactsConstant: RawRepresentable {
| `- note: consider making struct 'ContactsConstant' conform to the 'Sendable' protocol
12 | public var rawValue: String
13 |
:
48 | public static let relationsKey: ContactsConstant = ContactsConstant(rawValue: CNContactRelationsKey)
49 | public static let socialProfilesKey: ContactsConstant = ContactsConstant(rawValue: CNContactSocialProfilesKey)
50 | public static let instantMessageAddressesKey: ContactsConstant = ContactsConstant(rawValue: CNContactInstantMessageAddressesKey)
| |- warning: static property 'instantMessageAddressesKey' is not concurrency-safe because non-'Sendable' type 'ContactsConstant' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'instantMessageAddressesKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | }
52 |
[7/8] Compiling SwiftUIContacts ContactPicker+ViewModifiers.swift
[8/8] Compiling SwiftUIContacts ContactPicker.swift
Build complete! (5.05s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SwiftUIContacts",
"name" : "SwiftUIContacts",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "SwiftUIContacts",
"targets" : [
"SwiftUIContacts"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftUIContactsTests",
"module_type" : "SwiftTarget",
"name" : "SwiftUIContactsTests",
"path" : "Tests/SwiftUIContactsTests",
"sources" : [
"SwiftUIContactsTests.swift"
],
"target_dependencies" : [
"SwiftUIContacts"
],
"type" : "test"
},
{
"c99name" : "SwiftUIContacts",
"module_type" : "SwiftTarget",
"name" : "SwiftUIContacts",
"path" : "Sources/SwiftUIContacts",
"product_memberships" : [
"SwiftUIContacts"
],
"sources" : [
"CNContactPickerViewController/ContactPicker+ViewModifiers.swift",
"CNContactPickerViewController/ContactPicker.swift",
"CNContactViewController/ContactView+ViewModifiers.swift",
"CNContactViewController/ContactView.swift",
"Extensions/Contacts+Constants.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/edonv/swiftuicontacts/0.0.6
Repository: edonv/SwiftUIContacts
Swift version used: 6.1
Target: SwiftUIContacts
Extracting symbol information for 'SwiftUIContacts'...
Finished extracting symbol information for 'SwiftUIContacts'. (2.90s)
Building documentation for 'SwiftUIContacts'...
Finished building documentation for 'SwiftUIContacts' (0.12s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/edonv/swiftuicontacts/0.0.6
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.44s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (1.02s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.71s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.34s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module Snippets
[7/53] Compiling Snippets Snippet.swift
[8/53] Compiling Snippets SnippetParser.swift
[9/53] Emitting module SymbolKit
[10/57] Compiling SymbolKit Names.swift
[11/57] Compiling SymbolKit SPI.swift
[12/57] Compiling SymbolKit Snippet.swift
[13/57] Compiling SymbolKit Extension.swift
[14/57] Compiling SymbolKit GenericConstraint.swift
[15/57] Compiling SymbolKit GenericParameter.swift
[16/57] Compiling SymbolKit Generics.swift
[17/57] Compiling SymbolKit Namespace.swift
[18/57] Compiling SymbolKit Relationship.swift
[19/57] Compiling SymbolKit RelationshipKind.swift
[20/57] Compiling SymbolKit SourceOrigin.swift
[21/57] Compiling SymbolKit GenericConstraints.swift
[22/57] Compiling SymbolKit Swift.swift
[23/57] Compiling SymbolKit Identifier.swift
[24/57] Compiling SymbolKit KindIdentifier.swift
[25/57] Compiling SymbolKit Location.swift
[26/57] Compiling SymbolKit Mutability.swift
[27/57] Compiling SymbolKit DeclarationFragments.swift
[28/57] Compiling SymbolKit Fragment.swift
[29/57] Compiling SymbolKit FragmentKind.swift
[30/57] Compiling SymbolKit FunctionParameter.swift
[31/57] Compiling SymbolKit FunctionSignature.swift
[32/57] Compiling SymbolKit SourceRange.swift
[33/57] Compiling SymbolKit Metadata.swift
[34/57] Compiling SymbolKit Module.swift
[35/57] Compiling SymbolKit OperatingSystem.swift
[36/57] Compiling SymbolKit Platform.swift
[37/57] Compiling SymbolKit SemanticVersion.swift
[38/57] Compiling SymbolKit AccessControl.swift
[39/57] Compiling SymbolKit Availability.swift
[40/57] Compiling SymbolKit AvailabilityItem.swift
[41/57] Compiling SymbolKit Domain.swift
[42/57] Compiling SymbolKit Symbol.swift
[43/57] Compiling SymbolKit SymbolKind.swift
[44/57] Compiling SymbolKit SymbolGraph.swift
[45/57] Compiling SymbolKit GraphCollector.swift
[46/57] Compiling SymbolKit Mixin+Equals.swift
[47/57] Compiling SymbolKit Mixin+Hash.swift
[48/57] Compiling SymbolKit Mixin.swift
[49/57] Compiling SymbolKit LineList.swift
[50/57] Compiling SymbolKit Position.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.11s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/7] Compiling SwiftUIContacts ContactView+ViewModifiers.swift
[3/7] Compiling SwiftUIContacts ContactView.swift
[4/7] Compiling SwiftUIContacts ContactPicker.swift
[5/7] Emitting module SwiftUIContacts
[6/7] Compiling SwiftUIContacts Contacts+Constants.swift
[7/7] Compiling SwiftUIContacts ContactPicker+ViewModifiers.swift
Build of target: 'SwiftUIContacts' complete! (0.72s)
120
2 /Users/admin/builder/spi-builder-workspace/.docs/edonv/swiftuicontacts/0.0.6
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/edonv/swiftuicontacts/0.0.6
File count: 120
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-edonv-swiftuicontacts-0.0.6-768dc784.zip to s3://spi-docs-inbox/prod-edonv-swiftuicontacts-0.0.6-768dc784.zip
Copying... [17%]
Copying... [34%]
Copying... [51%]
Copying... [68%]
Copying... [84%]
Copying... [100%]
Done.