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

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SyndiKit with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 4

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brightdigit/SyndiKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/brightdigit/SyndiKit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 468f156 v0.4.0 (#66)
Cloned https://github.com/brightdigit/SyndiKit.git
Revision (git rev-parse @):
468f15671688bcede7db40b51cbdb78df949e7e1
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/brightdigit/SyndiKit.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/brightdigit/SyndiKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/49] Emitting module XMLCoder
[5/54] Compiling XMLCoder KeyedBox.swift
[6/54] Compiling XMLCoder NullBox.swift
[7/54] Compiling XMLCoder SharedBox.swift
[8/54] Compiling XMLCoder SingleKeyedBox.swift
[9/54] Compiling XMLCoder StringBox.swift
[10/54] Compiling XMLCoder DateBox.swift
[11/54] Compiling XMLCoder DecimalBox.swift
[12/54] Compiling XMLCoder DoubleBox.swift
[13/54] Compiling XMLCoder FloatBox.swift
[14/54] Compiling XMLCoder IntBox.swift
[15/54] Compiling XMLCoder Attribute.swift
[16/54] Compiling XMLCoder BoolBox.swift
[17/54] Compiling XMLCoder Box.swift
[18/54] Compiling XMLCoder ChoiceBox.swift
[19/54] Compiling XMLCoder DataBox.swift
[20/54] Compiling XMLCoder DynamicNodeEncoding.swift
[21/54] Compiling XMLCoder EncodingErrorExtension.swift
[22/54] Compiling XMLCoder SingleValueEncodingContainer.swift
[23/54] Compiling XMLCoder XMLChoiceEncodingContainer.swift
[24/54] Compiling XMLCoder XMLEncoder.swift
[25/54] Compiling XMLCoder XMLChoiceCodingKey.swift
[26/54] Compiling XMLCoder XMLCoderElement.swift
[27/54] Compiling XMLCoder XMLDocumentType.swift
[28/54] Compiling XMLCoder XMLHeader.swift
[29/54] Compiling XMLCoder XMLKey.swift
[30/54] Compiling XMLCoder XMLEncoderImplementation.swift
[31/54] Compiling XMLCoder XMLEncodingStorage.swift
[32/54] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[33/54] Compiling XMLCoder XMLReferencingEncoder.swift
[34/54] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[35/54] Compiling XMLCoder XMLDecoder.swift
[36/54] Compiling XMLCoder XMLDecoderImplementation.swift
[37/54] Compiling XMLCoder XMLDecodingStorage.swift
[38/54] Compiling XMLCoder XMLKeyedDecodingContainer.swift
[39/54] Compiling XMLCoder XMLUnkeyedDecodingContainer.swift
[40/54] Compiling XMLCoder UIntBox.swift
[41/54] Compiling XMLCoder URLBox.swift
[42/54] Compiling XMLCoder UnkeyedBox.swift
[43/54] Compiling XMLCoder ValueBox.swift
[44/54] Compiling XMLCoder Element.swift
[45/54] Compiling XMLCoder ElementAndAttribute.swift
[46/54] Compiling XMLCoder ISO8601DateFormatter.swift
[47/54] Compiling XMLCoder KeyedStorage.swift
[48/54] Compiling XMLCoder Metatypes.swift
[49/54] Compiling XMLCoder String+Extensions.swift
[50/54] Compiling XMLCoder XMLStackParser.swift
[51/54] Compiling XMLCoder DecodingErrorExtension.swift
[52/54] Compiling XMLCoder DynamicNodeDecoding.swift
[53/54] Compiling XMLCoder SingleValueDecodingContainer.swift
[54/54] Compiling XMLCoder XMLChoiceDecodingContainer.swift
[55/135] Compiling SyndiKit UTF8EncodedURL.swift
[56/135] Compiling SyndiKit XMLStringInt.swift
[57/135] Compiling SyndiKit AnyDecoding.swift
[58/135] Compiling SyndiKit CustomDecoderSetup.swift
[59/135] Compiling SyndiKit DateFormatterDecoder.swift
[60/135] Compiling SyndiKit DecodableFeed.swift
[61/135] Compiling SyndiKit DecoderSetup.swift
[62/135] Compiling SyndiKit DecoderSource.swift
[63/135] Compiling SyndiKit Decoding.swift
[64/143] Compiling SyndiKit DecodingError.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[65/143] Compiling SyndiKit SynDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[66/143] Compiling SyndiKit TypeDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[67/143] Compiling SyndiKit Dictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[68/143] Compiling SyndiKit CategoryDescriptor.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[69/143] Compiling SyndiKit CategoryLanguage.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[70/143] Compiling SyndiKit Site.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[71/143] Compiling SyndiKit SiteCategory.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[72/143] Compiling SyndiKit SiteCategoryType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/SynDecoder.swift:87:77: warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 85 |   internal static func setupJSONDecoder(_ decoder: JSONDecoder) {
 86 |     decoder.keyDecodingStrategy = .convertFromSnakeCase
 87 |     decoder.dateDecodingStrategy = .custom(DateFormatterDecoder.RSS.decoder.decode(from:))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (any Decoder) throws -> Date' may introduce data races
 88 |   }
 89 |
[73/143] Compiling SyndiKit Character.swift
[74/143] Compiling SyndiKit Collection.swift
[75/143] Compiling SyndiKit Author.swift
[76/143] Compiling SyndiKit EntryCategory.swift
[77/143] Compiling SyndiKit Entryable.swift
[78/143] Compiling SyndiKit Feedable.swift
[79/143] Compiling SyndiKit Link.swift
[80/143] Compiling SyndiKit CData.swift
[81/143] Compiling SyndiKit ListString.swift
[82/143] Compiling SyndiKit YouTubeID.swift
[83/143] Compiling SyndiKit iTunesDuration.swift
[84/143] Compiling SyndiKit iTunesEpisode.swift
[85/143] Compiling SyndiKit iTunesImage.swift
[86/143] Compiling SyndiKit iTunesOwner.swift
[87/143] Compiling SyndiKit OPML+Body.swift
[88/143] Compiling SyndiKit OPML+Head.swift
[89/143] Compiling SyndiKit OPML+Outline.swift
[90/143] Compiling SyndiKit PodcastSoundbite.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[91/143] Compiling SyndiKit PodcastTranscript+MimeType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[92/143] Compiling SyndiKit PodcastTranscript.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[93/143] Compiling SyndiKit Video.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[94/143] Compiling SyndiKit WPCategory.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[95/143] Compiling SyndiKit WPPostMeta.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[96/143] Compiling SyndiKit WPTag.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[97/143] Compiling SyndiKit WordPressPost+RSSItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[98/143] Compiling SyndiKit WordPressPost.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[99/143] Compiling SyndiKit OPML.swift
[100/143] Compiling SyndiKit OutlineType.swift
[101/143] Compiling SyndiKit SyndicationUpdate.swift
[102/143] Compiling SyndiKit SyndicationUpdateFrequency.swift
[103/143] Compiling SyndiKit SyndicationUpdatePeriod.swift
[104/143] Compiling SyndiKit KeyedDecodingContainerProtocol.swift
[105/143] Compiling SyndiKit Substring.SubSequence.swift
[106/143] Compiling SyndiKit URL.swift
[107/143] Emitting module SyndiKit
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Media/Wordpress/WordPressPost.swift:8:8: warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  6 | /// An error type representing a missing field in a WordPress post.
  7 | public enum WordPressError: Error, Equatable {
  8 |   case missingField(WordPressPost.Field)
    |        `- warning: associated value 'missingField' of 'Sendable'-conforming enum 'WordPressError' has non-sendable type 'WordPressPost.Field'; this is an error in the Swift 6 language mode
  9 | }
 10 |
    :
 24 |
 25 |   /// An enum representing the fields of a WordPress post.
 26 |   public enum Field: Equatable {
    |               `- note: consider making enum 'Field' conform to the 'Sendable' protocol
 27 |     case name
 28 |     case title
[108/143] Compiling SyndiKit SiteCollection.swift
[109/143] Compiling SyndiKit SiteDirectory.swift
[110/143] Compiling SyndiKit SiteDirectoryBuilder.swift
[111/143] Compiling SyndiKit SiteLanguage.swift
[112/143] Compiling SyndiKit SiteLanguageCategory+Site.swift
[113/143] Compiling SyndiKit SiteLanguageCategory.swift
[114/143] Compiling SyndiKit SiteLanguageContent.swift
[115/143] Compiling SyndiKit SiteLanguageType.swift
[116/143] Compiling SyndiKit AtomCategory.swift
[117/143] Compiling SyndiKit PodcastEpisode.swift
[118/143] Compiling SyndiKit PodcastFunding.swift
[119/143] Compiling SyndiKit PodcastLocation+GeoURI.swift
[120/143] Compiling SyndiKit PodcastLocation+OsmQuery.swift
[121/143] Compiling SyndiKit PodcastLocation.swift
[122/143] Compiling SyndiKit PodcastLocked.swift
[123/143] Compiling SyndiKit PodcastPerson+Role.swift
[124/143] Compiling SyndiKit PodcastPerson.swift
[125/143] Compiling SyndiKit PodcastSeason.swift
[126/143] Compiling SyndiKit RSSFeed.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[127/143] Compiling SyndiKit RSSImage.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[128/143] Compiling SyndiKit RSSItem+Decodings.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[129/143] Compiling SyndiKit RSSItem+Init.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[130/143] Compiling SyndiKit RSSItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[131/143] Compiling SyndiKit RSSItemCategory.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[132/143] Compiling SyndiKit MediaContent.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[133/143] Compiling SyndiKit PodcastChapters+MimeType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[134/143] Compiling SyndiKit PodcastChapters.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/RSS/RSSFeed.swift:24:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension RSSFeed: DecodableFeed {
24 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 label: String = "RSS"
26 |
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[135/143] Compiling SyndiKit AtomEntry.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[136/143] Compiling SyndiKit AtomFeed.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[137/143] Compiling SyndiKit AtomMedia.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[138/143] Compiling SyndiKit AtomMediaGroup.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[139/143] Compiling SyndiKit JSONFeed.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[140/143] Compiling SyndiKit JSONItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[141/143] Compiling SyndiKit Enclosure.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[142/143] Compiling SyndiKit EntryID.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
[143/143] Compiling SyndiKit RSSChannel.swift
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/Atom/AtomFeed.swift:59:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
57 | extension AtomFeed: DecodableFeed {
58 |   /// The source of the decoder for AtomFeed.
59 |   internal static let source: DecoderSetup = DecoderSource.xml
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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
60 |
61 |   /// The label for AtomFeed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Formats/Feeds/JSONFeed/JSONFeed.swift:32:23: warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
30 | extension JSONFeed: DecodableFeed {
31 |   /// The source of the decoder for JSON feed.
32 |   internal static let source: DecoderSetup = DecoderSource.json
   |                       |- warning: static property 'source' is not concurrency-safe because non-'Sendable' type 'any DecoderSetup' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'source' 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 |
34 |   /// The label for the JSON feed.
/Users/admin/builder/spi-builder-workspace/Sources/SyndiKit/Decoding/DecoderSetup.swift:3:19: note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | internal protocol DecoderSetup {
  |                   `- note: protocol 'DecoderSetup' does not conform to the 'Sendable' protocol
4 |   var source: DecoderSource { get }
5 | }
Build complete! (28.20s)
Fetching https://github.com/CoreOffice/XMLCoder
[1/10011] Fetching xmlcoder
Fetched https://github.com/CoreOffice/XMLCoder from cache (1.23s)
Computing version for https://github.com/CoreOffice/XMLCoder
Computed https://github.com/CoreOffice/XMLCoder at 0.17.1 (0.68s)
Creating working copy for https://github.com/CoreOffice/XMLCoder
Working copy of https://github.com/CoreOffice/XMLCoder resolved at 0.17.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "xmlcoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.17.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/CoreOffice/XMLCoder"
    }
  ],
  "manifest_display_name" : "SyndiKit",
  "name" : "SyndiKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SyndiKit",
      "targets" : [
        "SyndiKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SyndiKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SyndiKitTests",
      "path" : "Tests/SyndiKitTests",
      "sources" : [
        "BlogTests.swift",
        "Content.Directories.swift",
        "Content.ResultDictionary.swift",
        "DecodingErrorTests.swift",
        "Extensions/FileManager.swift",
        "Extensions/JSONFeed.swift",
        "Extensions/Sequence.swift",
        "Extensions/SiteCollection.swift",
        "Extensions/String.swift",
        "Extensions/URL.swift",
        "OPMLTests.swift",
        "RSSCoded.Durations.swift",
        "RSSCodedTests.swift",
        "RSSGUIDTests.swift",
        "RSSItemCategoryTests.swift",
        "UTF8EncodedURLTests.swift",
        "WordPressElementsTests.swift",
        "WordpressTests.swift",
        "XMLStringIntTests.swift"
      ],
      "target_dependencies" : [
        "SyndiKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SyndiKit",
      "module_type" : "SwiftTarget",
      "name" : "SyndiKit",
      "path" : "Sources/SyndiKit",
      "product_dependencies" : [
        "XMLCoder"
      ],
      "product_memberships" : [
        "SyndiKit"
      ],
      "sources" : [
        "Character.swift",
        "Collection.swift",
        "Common/Author.swift",
        "Common/EntryCategory.swift",
        "Common/Entryable.swift",
        "Common/Feedable.swift",
        "Common/Link.swift",
        "Common/Primitives/CData.swift",
        "Common/Primitives/ListString.swift",
        "Common/Primitives/UTF8EncodedURL.swift",
        "Common/Primitives/XMLStringInt.swift",
        "Decoding/AnyDecoding.swift",
        "Decoding/CustomDecoderSetup.swift",
        "Decoding/DateFormatterDecoder.swift",
        "Decoding/DecodableFeed.swift",
        "Decoding/DecoderSetup.swift",
        "Decoding/DecoderSource.swift",
        "Decoding/Decoding.swift",
        "Decoding/DecodingError.swift",
        "Decoding/SynDecoder.swift",
        "Decoding/TypeDecoder.swift",
        "Dictionary.swift",
        "Formats/Blogs/CategoryDescriptor.swift",
        "Formats/Blogs/CategoryLanguage.swift",
        "Formats/Blogs/Site.swift",
        "Formats/Blogs/SiteCategory.swift",
        "Formats/Blogs/SiteCategoryType.swift",
        "Formats/Blogs/SiteCollection.swift",
        "Formats/Blogs/SiteDirectory.swift",
        "Formats/Blogs/SiteDirectoryBuilder.swift",
        "Formats/Blogs/SiteLanguage.swift",
        "Formats/Blogs/SiteLanguageCategory+Site.swift",
        "Formats/Blogs/SiteLanguageCategory.swift",
        "Formats/Blogs/SiteLanguageContent.swift",
        "Formats/Blogs/SiteLanguageType.swift",
        "Formats/Feeds/Atom/AtomCategory.swift",
        "Formats/Feeds/Atom/AtomEntry.swift",
        "Formats/Feeds/Atom/AtomFeed.swift",
        "Formats/Feeds/Atom/AtomMedia.swift",
        "Formats/Feeds/Atom/AtomMediaGroup.swift",
        "Formats/Feeds/JSONFeed/JSONFeed.swift",
        "Formats/Feeds/JSONFeed/JSONItem.swift",
        "Formats/Feeds/RSS/Enclosure.swift",
        "Formats/Feeds/RSS/EntryID.swift",
        "Formats/Feeds/RSS/RSSChannel.swift",
        "Formats/Feeds/RSS/RSSFeed.swift",
        "Formats/Feeds/RSS/RSSImage.swift",
        "Formats/Feeds/RSS/RSSItem+Decodings.swift",
        "Formats/Feeds/RSS/RSSItem+Init.swift",
        "Formats/Feeds/RSS/RSSItem.swift",
        "Formats/Feeds/RSS/RSSItemCategory.swift",
        "Formats/Media/MediaContent.swift",
        "Formats/Media/Podcast/PodcastChapters+MimeType.swift",
        "Formats/Media/Podcast/PodcastChapters.swift",
        "Formats/Media/Podcast/PodcastEpisode.swift",
        "Formats/Media/Podcast/PodcastFunding.swift",
        "Formats/Media/Podcast/PodcastLocation+GeoURI.swift",
        "Formats/Media/Podcast/PodcastLocation+OsmQuery.swift",
        "Formats/Media/Podcast/PodcastLocation.swift",
        "Formats/Media/Podcast/PodcastLocked.swift",
        "Formats/Media/Podcast/PodcastPerson+Role.swift",
        "Formats/Media/Podcast/PodcastPerson.swift",
        "Formats/Media/Podcast/PodcastSeason.swift",
        "Formats/Media/Podcast/PodcastSoundbite.swift",
        "Formats/Media/Podcast/PodcastTranscript+MimeType.swift",
        "Formats/Media/Podcast/PodcastTranscript.swift",
        "Formats/Media/Video.swift",
        "Formats/Media/Wordpress/WPCategory.swift",
        "Formats/Media/Wordpress/WPPostMeta.swift",
        "Formats/Media/Wordpress/WPTag.swift",
        "Formats/Media/Wordpress/WordPressPost+RSSItem.swift",
        "Formats/Media/Wordpress/WordPressPost.swift",
        "Formats/Media/YouTube/YouTubeID.swift",
        "Formats/Media/iTunes/iTunesDuration.swift",
        "Formats/Media/iTunes/iTunesEpisode.swift",
        "Formats/Media/iTunes/iTunesImage.swift",
        "Formats/Media/iTunes/iTunesOwner.swift",
        "Formats/OPML/OPML+Body.swift",
        "Formats/OPML/OPML+Head.swift",
        "Formats/OPML/OPML+Outline.swift",
        "Formats/OPML/OPML.swift",
        "Formats/OPML/OutlineType.swift",
        "Formats/SyndicationUpdate/SyndicationUpdate.swift",
        "Formats/SyndicationUpdate/SyndicationUpdateFrequency.swift",
        "Formats/SyndicationUpdate/SyndicationUpdatePeriod.swift",
        "KeyedDecodingContainerProtocol.swift",
        "Substring.SubSequence.swift",
        "URL.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.