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 SFSymbolsFinder, reference master (955b81), with Swift 6.0 for macOS (SPM) on 28 Nov 2024 07:54:07 UTC.

Swift 6 data race errors: 21

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.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/abadikaka/SFSymbolsFinder.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/abadikaka/SFSymbolsFinder
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 955b818 Merge pull request #10 from kfinteractive/master
Cloned https://github.com/abadikaka/SFSymbolsFinder.git
Revision (git rev-parse @):
955b818250237756389a9e27d163142e983e77f3
SUCCESS checkout https://github.com/abadikaka/SFSymbolsFinder.git at master
========================================
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": "sfsymbolsfinder",
      "name": "SFSymbolsFinder",
      "url": "https://github.com/abadikaka/SFSymbolsFinder.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SFSymbolsFinder",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/abadikaka/SFSymbolsFinder.git
[5/206] Fetching sfsymbolsfinder
Fetched https://github.com/abadikaka/SFSymbolsFinder.git from cache (0.76s)
Creating working copy for https://github.com/abadikaka/SFSymbolsFinder.git
Working copy of https://github.com/abadikaka/SFSymbolsFinder.git resolved at master (955b818)
warning: '.resolve-product-dependencies': dependency 'sfsymbolsfinder' 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/abadikaka/SFSymbolsFinder.git
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/5] Emitting module SFSymbolsFinder
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:121:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
  72 |
  73 | /// General category for sf symbols, not included in any category
  74 | public enum General: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
  75 |     // MARK: iOS 13+
  76 |
     :
 119 |     case xmarkSquareFill
 120 |
 121 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 122 |         return rawValue
 123 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:224:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 132 |
 133 | /// Communication category for sf symbols
 134 | public enum Communication: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                         `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 135 |     // MARK: iOS 13+
 136 |
     :
 222 |     case envelopeBadegFill
 223 |
 224 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 225 |         return rawValue
 226 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:309:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 235 |
 236 | /// Weather category for sf symbols
 237 | public enum Weather: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 238 |     // MARK: iOS 13+
 239 |
     :
 307 |     case thermometer
 308 |
 309 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 310 |         return rawValue
 311 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:560:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 319 |
 320 | /// Object and tools category sf symbols
 321 | public enum ObjectAndTools: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                          `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 322 |     // MARK: iOS 13+
 323 |
     :
 558 |     case lightbulbSlashFill
 559 |
 560 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 561 |         return rawValue
 562 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:592:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 570 |
 571 | /// Devices category for sf symbols
 572 | public enum Devices: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 573 |     // MARK: iOS 13+
 574 |
     :
 590 |     case headphones
 591 |
 592 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 593 |         return rawValue
 594 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:616:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 602 |
 603 | /// Connectivity category for sf symbols
 604 | public enum Connectivity: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                        `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 605 |     // MARK: iOS 13+
 606 |
     :
 614 |     case antennaRadiowavesLeftAndRight
 615 |
 616 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 617 |         return rawValue
 618 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:636:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 626 |
 627 | /// Transportation category for sf symbols
 628 | public enum Transportation: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                          `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 629 |     // MARK: iOS 13+
 630 |
     :
 634 |     case airplane
 635 |
 636 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 637 |         return rawValue
 638 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:701:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 646 |
 647 | /// Human category for sf symbol
 648 | public enum Human: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                 `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 649 |     // MARK: iOS 13+
 650 |
     :
 699 |     case handPointRightFill
 700 |
 701 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 702 |         return rawValue
 703 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:734:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 711 |
 712 | /// Nature category for sf symbols
 713 | public enum Nature: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                  `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 714 |     // MARK: iOS 13+
 715 |
     :
 732 |     case leafArrowCirclepath
 733 |
 734 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 735 |         return rawValue
 736 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:797:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 744 |
 745 | /// Editing category for editing sf symbols
 746 | public enum Editing: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 747 |     // MARK: iOS 13+
 748 |
     :
 795 |     case circleRighthalfFill
 796 |
 797 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 798 |         return rawValue
 799 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:845:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 807 |
 808 | /// Text formatting category for sf symbols
 809 | public enum TextFormatting: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                          `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 810 |     // MARK: iOS 13+
 811 |
     :
 843 |     case textbox
 844 |
 845 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 846 |         return rawValue
 847 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:940:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 855 |
 856 | /// Media category for sf symbols
 857 | public enum Media: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                 `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 858 |     // MARK: iOS 13+
 859 |
     :
 938 |     case gobackwardMinus
 939 |
 940 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 941 |         return rawValue
 942 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:984:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 950 |
 951 | /// Keyboard category for sf symbols
 952 | public enum Keyboard: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                    `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 953 |     // MARK: iOS 13+
 954 |
     :
 982 |     case projective
 983 |
 984 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 985 |         return rawValue
 986 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1015:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 994 |
 995 | /// Commerce category for sf symbols
 996 | public enum Commerce: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                    `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 997 |     // MARK: iOS 13+
 998 |
     :
1013 |     case creditcardFill
1014 |
1015 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1016 |         return rawValue
1017 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1097:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1075 |
1076 | /// Shape category representation
1077 | public enum Shapes: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                  `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1078 |     // MARK: iOS 13+
1079 |
     :
1095 |     case squareFill
1096 |
1097 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1098 |         return rawValue
1099 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1301:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1107 |
1108 | /// SF Symbols for arrow representation
1109 | public enum Arrows: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                  `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1110 |     // MARK: iOS 13+
1111 |
     :
1299 |     case arrowtriangleRightSquareFill
1300 |
1301 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1302 |         return rawValue
1303 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1440:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1311 |
1312 | /// SFSymbols for indices category symbols
1313 | public enum Indices: String, SFFinderConvertable, SFSymbolsEnum, View  {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1314 |     // MARK: iOS 13+
1315 |
     :
1438 |     }
1439 |
1440 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1441 |         return rawValue
1442 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1506:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1451 |
1452 | /// SFSymbol for mathematics operation
1453 | public enum Math: String, SFFinderConvertable, SFSymbolsEnum, View  {
     |                                                `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1454 |     // MARK: iOS 13+
1455 |
     :
1504 |     case xSquareroot
1505 |
1506 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1507 |         return rawValue
1508 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1589:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1516 |
1517 | /// SFSymbol for gaming icon
1518 | public enum Gaming: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                  `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1519 |     // MARK: iOS 14+
1520 |     case circleGridCross
     :
1587 |     case lineHorizontal3CircleFill
1588 |
1589 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1590 |         return rawValue
1591 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1771:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1599 |
1600 | /// SFSymbol for multicolor icon
1601 | public enum Multicolor: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                      `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1602 |
1603 |     // MARK: iOS 14+
     :
1769 |     case checkmarkCircleFill
1770 |
1771 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1772 |         return rawValue
1773 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:4782:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1781 |
1782 | /// All category for sf symbols, not included in any category, exclude the number need to use Indices
1783 | public enum All: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                               `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1784 |     case squareAndArrowUpTrianglebadgeExclamationmark
1785 |     case rectanglePortraitAndArrowRight
     :
4780 |     case applelogo
4781 |
4782 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
4783 |         return rawValue
4784 |     }
[4/5] Compiling SFSymbolsFinder SFSymbolsValidator.swift
[5/5] Compiling SFSymbolsFinder SFSymbolsFinder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:121:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
  72 |
  73 | /// General category for sf symbols, not included in any category
  74 | public enum General: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
  75 |     // MARK: iOS 13+
  76 |
     :
 119 |     case xmarkSquareFill
 120 |
 121 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 122 |         return rawValue
 123 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:224:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 132 |
 133 | /// Communication category for sf symbols
 134 | public enum Communication: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                         `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 135 |     // MARK: iOS 13+
 136 |
     :
 222 |     case envelopeBadegFill
 223 |
 224 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 225 |         return rawValue
 226 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:309:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 235 |
 236 | /// Weather category for sf symbols
 237 | public enum Weather: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 238 |     // MARK: iOS 13+
 239 |
     :
 307 |     case thermometer
 308 |
 309 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 310 |         return rawValue
 311 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:560:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 319 |
 320 | /// Object and tools category sf symbols
 321 | public enum ObjectAndTools: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                          `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 322 |     // MARK: iOS 13+
 323 |
     :
 558 |     case lightbulbSlashFill
 559 |
 560 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 561 |         return rawValue
 562 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:592:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 570 |
 571 | /// Devices category for sf symbols
 572 | public enum Devices: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 573 |     // MARK: iOS 13+
 574 |
     :
 590 |     case headphones
 591 |
 592 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 593 |         return rawValue
 594 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:616:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 602 |
 603 | /// Connectivity category for sf symbols
 604 | public enum Connectivity: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                        `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 605 |     // MARK: iOS 13+
 606 |
     :
 614 |     case antennaRadiowavesLeftAndRight
 615 |
 616 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 617 |         return rawValue
 618 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:636:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 626 |
 627 | /// Transportation category for sf symbols
 628 | public enum Transportation: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                          `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 629 |     // MARK: iOS 13+
 630 |
     :
 634 |     case airplane
 635 |
 636 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 637 |         return rawValue
 638 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:701:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 646 |
 647 | /// Human category for sf symbol
 648 | public enum Human: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                 `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 649 |     // MARK: iOS 13+
 650 |
     :
 699 |     case handPointRightFill
 700 |
 701 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 702 |         return rawValue
 703 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:734:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 711 |
 712 | /// Nature category for sf symbols
 713 | public enum Nature: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                  `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 714 |     // MARK: iOS 13+
 715 |
     :
 732 |     case leafArrowCirclepath
 733 |
 734 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 735 |         return rawValue
 736 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:797:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 744 |
 745 | /// Editing category for editing sf symbols
 746 | public enum Editing: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 747 |     // MARK: iOS 13+
 748 |
     :
 795 |     case circleRighthalfFill
 796 |
 797 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 798 |         return rawValue
 799 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:845:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 807 |
 808 | /// Text formatting category for sf symbols
 809 | public enum TextFormatting: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                          `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 810 |     // MARK: iOS 13+
 811 |
     :
 843 |     case textbox
 844 |
 845 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 846 |         return rawValue
 847 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:940:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 855 |
 856 | /// Media category for sf symbols
 857 | public enum Media: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                 `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 858 |     // MARK: iOS 13+
 859 |
     :
 938 |     case gobackwardMinus
 939 |
 940 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 941 |         return rawValue
 942 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:984:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 950 |
 951 | /// Keyboard category for sf symbols
 952 | public enum Keyboard: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                    `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 953 |     // MARK: iOS 13+
 954 |
     :
 982 |     case projective
 983 |
 984 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 985 |         return rawValue
 986 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1015:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
 994 |
 995 | /// Commerce category for sf symbols
 996 | public enum Commerce: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                    `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
 997 |     // MARK: iOS 13+
 998 |
     :
1013 |     case creditcardFill
1014 |
1015 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1016 |         return rawValue
1017 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1097:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1075 |
1076 | /// Shape category representation
1077 | public enum Shapes: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                  `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1078 |     // MARK: iOS 13+
1079 |
     :
1095 |     case squareFill
1096 |
1097 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1098 |         return rawValue
1099 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1301:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1107 |
1108 | /// SF Symbols for arrow representation
1109 | public enum Arrows: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                  `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1110 |     // MARK: iOS 13+
1111 |
     :
1299 |     case arrowtriangleRightSquareFill
1300 |
1301 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1302 |         return rawValue
1303 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1440:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1311 |
1312 | /// SFSymbols for indices category symbols
1313 | public enum Indices: String, SFFinderConvertable, SFSymbolsEnum, View  {
     |                                                   `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1314 |     // MARK: iOS 13+
1315 |
     :
1438 |     }
1439 |
1440 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1441 |         return rawValue
1442 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1506:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1451 |
1452 | /// SFSymbol for mathematics operation
1453 | public enum Math: String, SFFinderConvertable, SFSymbolsEnum, View  {
     |                                                `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1454 |     // MARK: iOS 13+
1455 |
     :
1504 |     case xSquareroot
1505 |
1506 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1507 |         return rawValue
1508 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1589:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1516 |
1517 | /// SFSymbol for gaming icon
1518 | public enum Gaming: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                  `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1519 |     // MARK: iOS 14+
1520 |     case circleGridCross
     :
1587 |     case lineHorizontal3CircleFill
1588 |
1589 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1590 |         return rawValue
1591 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:1771:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1599 |
1600 | /// SFSymbol for multicolor icon
1601 | public enum Multicolor: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                                      `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1602 |
1603 |     // MARK: iOS 14+
     :
1769 |     case checkmarkCircleFill
1770 |
1771 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
1772 |         return rawValue
1773 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsFinder/SFSymbolsFinder.swift:4782:9: warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  56 |
  57 | protocol SFSymbolsEnum: SFSymbolsHasValidator {
  58 |     var enumRawValue: String { get }
     |         `- note: 'enumRawValue' declared here
  59 | }
  60 |
     :
1781 |
1782 | /// All category for sf symbols, not included in any category, exclude the number need to use Indices
1783 | public enum All: String, SFFinderConvertable, SFSymbolsEnum, View {
     |                                               `- note: add '@preconcurrency' to the 'SFSymbolsEnum' conformance to defer isolation checking to run time
1784 |     case squareAndArrowUpTrianglebadgeExclamationmark
1785 |     case rectanglePortraitAndArrowRight
     :
4780 |     case applelogo
4781 |
4782 |     var enumRawValue: String {
     |         `- warning: main actor-isolated property 'enumRawValue' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
4783 |         return rawValue
4784 |     }
Build complete! (22.69s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SFSymbolsFinder",
  "name" : "SFSymbolsFinder",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "SFSymbolsFinder",
      "targets" : [
        "SFSymbolsFinder"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SFSymbolsFinderTests",
      "module_type" : "SwiftTarget",
      "name" : "SFSymbolsFinderTests",
      "path" : "Tests/SFSymbolsFinderTests",
      "sources" : [
        "SFSymbolsFinderTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "SFSymbolsFinder"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SFSymbolsFinder",
      "module_type" : "SwiftTarget",
      "name" : "SFSymbolsFinder",
      "path" : "Sources/SFSymbolsFinder",
      "product_memberships" : [
        "SFSymbolsFinder"
      ],
      "sources" : [
        "SFSymbolsFinder.swift",
        "Validator/SFSymbolsValidator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.