The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftUIContacts, reference main (c188b3), with Swift 6.0 for macOS (SPM) on 30 Nov 2024 19:20:32 UTC.

Swift 6 data race errors: 30

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.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.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/edonv/SwiftUIContacts.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/edonv/SwiftUIContacts
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
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 main
========================================
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.66s)
Creating working copy for https://github.com/edonv/SwiftUIContacts.git
Working copy of https://github.com/edonv/SwiftUIContacts.git resolved at main (c188b30)
warning: '.resolve-product-dependencies': dependency 'swiftuicontacts' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
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.1.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--7754E27361AE5C74.txt
[3/8] Compiling SwiftUIContacts ContactView+ViewModifiers.swift
[4/8] Compiling SwiftUIContacts ContactPicker.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: annotate 'identifierKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'namePrefixKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'givenNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'middleNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'familyNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'previousFamilyNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'nameSuffixKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'nicknameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'organizationNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'departmentNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'jobTitleKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneticGivenNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneticMiddleNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneticFamilyNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneticOrganizationNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'birthdayKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'nonGregorianBirthdayKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'noteKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'imageDataKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'thumbnailImageDataKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'imageDataAvailableKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'typeKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneNumbersKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'emailAddressesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'postalAddressesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'datesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'urlAddressesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'relationsKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'socialProfilesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'instantMessageAddressesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | }
52 |
[6/8] Compiling SwiftUIContacts ContactPicker+ViewModifiers.swift
[7/8] Compiling SwiftUIContacts ContactView.swift
[8/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: annotate 'identifierKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'namePrefixKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'givenNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'middleNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'familyNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'previousFamilyNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'nameSuffixKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'nicknameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'organizationNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'departmentNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'jobTitleKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneticGivenNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneticMiddleNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneticFamilyNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneticOrganizationNameKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'birthdayKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'nonGregorianBirthdayKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'noteKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'imageDataKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'thumbnailImageDataKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'imageDataAvailableKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'typeKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'phoneNumbersKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'emailAddressesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'postalAddressesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'datesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'urlAddressesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'relationsKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'socialProfilesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
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: annotate 'instantMessageAddressesKey' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | }
52 |
Build complete! (7.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/main
Repository:               edonv/SwiftUIContacts
Swift version used:       6.0
Target:                   SwiftUIContacts
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'SwiftUIContacts'...
Finished extracting symbol information for 'SwiftUIContacts'. (2.65s)
Building documentation for 'SwiftUIContacts'...
Finished building documentation for 'SwiftUIContacts' (0.10s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/edonv/swiftuicontacts/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.27s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.53s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3188] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.23s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.55s)
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
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit SemanticVersion.swift
[7/53] Compiling SymbolKit AccessControl.swift
[8/53] Compiling SymbolKit Availability.swift
[9/53] Compiling SymbolKit AvailabilityItem.swift
[10/53] Compiling SymbolKit Domain.swift
[11/57] Compiling SymbolKit Mixin+Equals.swift
[12/57] Compiling SymbolKit Mixin+Hash.swift
[13/57] Compiling SymbolKit Mixin.swift
[14/57] Compiling SymbolKit LineList.swift
[15/57] Compiling SymbolKit Position.swift
[16/57] Compiling SymbolKit Identifier.swift
[17/57] Compiling SymbolKit KindIdentifier.swift
[18/57] Compiling SymbolKit Location.swift
[19/57] Compiling SymbolKit Mutability.swift
[20/57] Compiling SymbolKit Relationship.swift
[21/57] Compiling SymbolKit RelationshipKind.swift
[22/57] Compiling SymbolKit SourceOrigin.swift
[23/57] Compiling SymbolKit GenericConstraints.swift
[24/57] Compiling SymbolKit Swift.swift
[25/57] Compiling Snippets Snippet.swift
[26/57] Compiling Snippets SnippetParser.swift
[27/57] Emitting module Snippets
[28/57] Compiling SymbolKit DeclarationFragments.swift
[29/57] Compiling SymbolKit Fragment.swift
[30/57] Compiling SymbolKit FragmentKind.swift
[31/57] Compiling SymbolKit FunctionParameter.swift
[32/57] Compiling SymbolKit FunctionSignature.swift
[33/57] Compiling SymbolKit GenericConstraint.swift
[34/57] Compiling SymbolKit GenericParameter.swift
[35/57] Compiling SymbolKit Generics.swift
[36/57] Compiling SymbolKit Namespace.swift
[37/57] Emitting module SymbolKit
[38/57] Compiling SymbolKit Symbol.swift
[39/57] Compiling SymbolKit SymbolKind.swift
[40/57] Compiling SymbolKit SymbolGraph.swift
[41/57] Compiling SymbolKit GraphCollector.swift
[42/57] Compiling SymbolKit Names.swift
[43/57] Compiling SymbolKit SPI.swift
[44/57] Compiling SymbolKit Snippet.swift
[45/57] Compiling SymbolKit Extension.swift
[46/57] Compiling SymbolKit SourceRange.swift
[47/57] Compiling SymbolKit Metadata.swift
[48/57] Compiling SymbolKit Module.swift
[49/57] Compiling SymbolKit OperatingSystem.swift
[50/57] Compiling SymbolKit Platform.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] Emitting module snippet_extract
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.13s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/7] Compiling SwiftUIContacts ContactPicker.swift
[3/7] Compiling SwiftUIContacts ContactView+ViewModifiers.swift
[4/7] Compiling SwiftUIContacts ContactView.swift
[5/7] Emitting module SwiftUIContacts
[6/7] Compiling SwiftUIContacts ContactPicker+ViewModifiers.swift
[7/7] Compiling SwiftUIContacts Contacts+Constants.swift
Build of target: 'SwiftUIContacts' complete! (0.50s)
     120
2	/Users/admin/builder/spi-builder-workspace/.docs/edonv/swiftuicontacts/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/edonv/swiftuicontacts/main
File count: 120
Doc size:   2.0MB
Preparing doc bundle ...
Uploading prod-edonv-swiftuicontacts-main-e3b7fa1d.zip to s3://spi-docs-inbox/prod-edonv-swiftuicontacts-main-e3b7fa1d.zip
Copying... [17%]
Copying... [34%]
Copying... [51%]
Copying... [68%]
Copying... [84%]
Copying... [100%]
Done.