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 Swiftagram, reference main (de8a5d), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 20:31:31 UTC.

Swift 6 data race errors: 33

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

Build Log

31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Location/Endpoint+Location.swift:78:16: warning: static property 'locations' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 76 | extension Request {
 77 |     /// A locations related request.
 78 |     static let locations = Request.version1.locations.appendingDefaultHeader()
    |                |- warning: static property 'locations' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'locations' 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
 79 |
 80 |     /// A location related request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Media/Endpoint+Media.swift:93:16: warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | extension Request {
 92 |     /// The media request.
 93 |     static let media = Request.version1.media.appendingDefaultHeader()
    |                |- warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'media' 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
 94 |
 95 |     /// A specific media request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Media/Endpoint+Media.swift:108:14: warning: associated value 'artifact' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
106 |     enum Error: Swift.Error {
107 |         /// Artifact.
108 |         case artifact(Wrapper)
    |              `- warning: associated value 'artifact' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
109 |         /// Invalid shortchode.
110 |         case invalidShortcode(String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Wrapper/Wrapper.swift:12:15: note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a generic and abstract `Codable` value.
 11 | @dynamicMemberLookup
 12 | public struct Wrapper {
    |               `- note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 13 |     /// An accessory for an empty `Wrapper`.
 14 |     public static var empty: Wrapper { .init(value: NSNull()) }
[95/124] Compiling Swiftagram Endpoint+Posts.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Posts/Endpoint+Posts.swift:17:16: warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining posts-related endpoints.
12 |     final class Posts { }
   |                 `- note: class 'Posts' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for posts-specific endpoints.
17 |     static let posts: Endpoint.Group.Posts = .init()
   |                |- warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posts' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Archived/Endpoint+Archived.swift:17:16: warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining archive-related endpoints.
12 |     struct Archived { }
   |            `- note: consider making struct 'Archived' conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for archive-related endpoints.
17 |     static let archived: Endpoint.Group.Archived = .init()
   |                |- warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'archived' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:17:16: warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | public extension Endpoint.Group {
 11 |     /// A `class` defining a recent wrapper.
 12 |     final class Recent { }
    |                 `- note: class 'Recent' does not conform to the 'Sendable' protocol
 13 | }
 14 |
 15 | public extension Endpoint {
 16 |     /// A wrapper for timeline-specific endpoints.
 17 |     static let recent: Group.Recent = .init()
    |                |- warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'recent' 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
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Saved/Endpoint+Saved.swift:19:16: warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining saved-related endpoints.
12 |     struct Saved { }
   |            `- note: consider making struct 'Saved' conform to the 'Sendable' protocol
13 | }
14 |
   :
17 |     ///
18 |     /// - returns: A valid `Endpoint.Group.Saved`.
19 |     static let saved: Endpoint.Group.Saved = .init()
   |                |- warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'saved' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:22:16: warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | extension Request {
 21 |     /// The `feed` base request.
 22 |     static let feed = Request.version1.feed.appendingDefaultHeader()
    |                |- warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'feed' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |     /// The timeline request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Stories/Endpoint+Stories.swift:17:16: warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining stories-related endpoints.
12 |     final class Stories { }
   |                 `- note: class 'Stories' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for stories-specific endpoints.
17 |     static let stories: Endpoint.Group.Stories = .init()
   |                |- warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'stories' 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
18 |
19 |     /// An endpoint for loading specific endpoints.
[96/124] Compiling Swiftagram Endpoint+Recent.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Posts/Endpoint+Posts.swift:17:16: warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining posts-related endpoints.
12 |     final class Posts { }
   |                 `- note: class 'Posts' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for posts-specific endpoints.
17 |     static let posts: Endpoint.Group.Posts = .init()
   |                |- warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posts' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Archived/Endpoint+Archived.swift:17:16: warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining archive-related endpoints.
12 |     struct Archived { }
   |            `- note: consider making struct 'Archived' conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for archive-related endpoints.
17 |     static let archived: Endpoint.Group.Archived = .init()
   |                |- warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'archived' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:17:16: warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | public extension Endpoint.Group {
 11 |     /// A `class` defining a recent wrapper.
 12 |     final class Recent { }
    |                 `- note: class 'Recent' does not conform to the 'Sendable' protocol
 13 | }
 14 |
 15 | public extension Endpoint {
 16 |     /// A wrapper for timeline-specific endpoints.
 17 |     static let recent: Group.Recent = .init()
    |                |- warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'recent' 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
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Saved/Endpoint+Saved.swift:19:16: warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining saved-related endpoints.
12 |     struct Saved { }
   |            `- note: consider making struct 'Saved' conform to the 'Sendable' protocol
13 | }
14 |
   :
17 |     ///
18 |     /// - returns: A valid `Endpoint.Group.Saved`.
19 |     static let saved: Endpoint.Group.Saved = .init()
   |                |- warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'saved' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:22:16: warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | extension Request {
 21 |     /// The `feed` base request.
 22 |     static let feed = Request.version1.feed.appendingDefaultHeader()
    |                |- warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'feed' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |     /// The timeline request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Stories/Endpoint+Stories.swift:17:16: warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining stories-related endpoints.
12 |     final class Stories { }
   |                 `- note: class 'Stories' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for stories-specific endpoints.
17 |     static let stories: Endpoint.Group.Stories = .init()
   |                |- warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'stories' 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
18 |
19 |     /// An endpoint for loading specific endpoints.
[97/124] Compiling Swiftagram Endpoint+Saved.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Posts/Endpoint+Posts.swift:17:16: warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining posts-related endpoints.
12 |     final class Posts { }
   |                 `- note: class 'Posts' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for posts-specific endpoints.
17 |     static let posts: Endpoint.Group.Posts = .init()
   |                |- warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posts' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Archived/Endpoint+Archived.swift:17:16: warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining archive-related endpoints.
12 |     struct Archived { }
   |            `- note: consider making struct 'Archived' conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for archive-related endpoints.
17 |     static let archived: Endpoint.Group.Archived = .init()
   |                |- warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'archived' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:17:16: warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | public extension Endpoint.Group {
 11 |     /// A `class` defining a recent wrapper.
 12 |     final class Recent { }
    |                 `- note: class 'Recent' does not conform to the 'Sendable' protocol
 13 | }
 14 |
 15 | public extension Endpoint {
 16 |     /// A wrapper for timeline-specific endpoints.
 17 |     static let recent: Group.Recent = .init()
    |                |- warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'recent' 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
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Saved/Endpoint+Saved.swift:19:16: warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining saved-related endpoints.
12 |     struct Saved { }
   |            `- note: consider making struct 'Saved' conform to the 'Sendable' protocol
13 | }
14 |
   :
17 |     ///
18 |     /// - returns: A valid `Endpoint.Group.Saved`.
19 |     static let saved: Endpoint.Group.Saved = .init()
   |                |- warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'saved' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:22:16: warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | extension Request {
 21 |     /// The `feed` base request.
 22 |     static let feed = Request.version1.feed.appendingDefaultHeader()
    |                |- warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'feed' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |     /// The timeline request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Stories/Endpoint+Stories.swift:17:16: warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining stories-related endpoints.
12 |     final class Stories { }
   |                 `- note: class 'Stories' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for stories-specific endpoints.
17 |     static let stories: Endpoint.Group.Stories = .init()
   |                |- warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'stories' 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
18 |
19 |     /// An endpoint for loading specific endpoints.
[98/124] Compiling Swiftagram Endpoint+SavedCollection.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Posts/Endpoint+Posts.swift:17:16: warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining posts-related endpoints.
12 |     final class Posts { }
   |                 `- note: class 'Posts' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for posts-specific endpoints.
17 |     static let posts: Endpoint.Group.Posts = .init()
   |                |- warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posts' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Archived/Endpoint+Archived.swift:17:16: warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining archive-related endpoints.
12 |     struct Archived { }
   |            `- note: consider making struct 'Archived' conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for archive-related endpoints.
17 |     static let archived: Endpoint.Group.Archived = .init()
   |                |- warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'archived' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:17:16: warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | public extension Endpoint.Group {
 11 |     /// A `class` defining a recent wrapper.
 12 |     final class Recent { }
    |                 `- note: class 'Recent' does not conform to the 'Sendable' protocol
 13 | }
 14 |
 15 | public extension Endpoint {
 16 |     /// A wrapper for timeline-specific endpoints.
 17 |     static let recent: Group.Recent = .init()
    |                |- warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'recent' 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
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Saved/Endpoint+Saved.swift:19:16: warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining saved-related endpoints.
12 |     struct Saved { }
   |            `- note: consider making struct 'Saved' conform to the 'Sendable' protocol
13 | }
14 |
   :
17 |     ///
18 |     /// - returns: A valid `Endpoint.Group.Saved`.
19 |     static let saved: Endpoint.Group.Saved = .init()
   |                |- warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'saved' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:22:16: warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | extension Request {
 21 |     /// The `feed` base request.
 22 |     static let feed = Request.version1.feed.appendingDefaultHeader()
    |                |- warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'feed' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |     /// The timeline request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Stories/Endpoint+Stories.swift:17:16: warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining stories-related endpoints.
12 |     final class Stories { }
   |                 `- note: class 'Stories' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for stories-specific endpoints.
17 |     static let stories: Endpoint.Group.Stories = .init()
   |                |- warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'stories' 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
18 |
19 |     /// An endpoint for loading specific endpoints.
[99/124] Compiling Swiftagram Endpoint+Stories.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Posts/Endpoint+Posts.swift:17:16: warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining posts-related endpoints.
12 |     final class Posts { }
   |                 `- note: class 'Posts' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for posts-specific endpoints.
17 |     static let posts: Endpoint.Group.Posts = .init()
   |                |- warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posts' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Archived/Endpoint+Archived.swift:17:16: warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining archive-related endpoints.
12 |     struct Archived { }
   |            `- note: consider making struct 'Archived' conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for archive-related endpoints.
17 |     static let archived: Endpoint.Group.Archived = .init()
   |                |- warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'archived' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:17:16: warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | public extension Endpoint.Group {
 11 |     /// A `class` defining a recent wrapper.
 12 |     final class Recent { }
    |                 `- note: class 'Recent' does not conform to the 'Sendable' protocol
 13 | }
 14 |
 15 | public extension Endpoint {
 16 |     /// A wrapper for timeline-specific endpoints.
 17 |     static let recent: Group.Recent = .init()
    |                |- warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'recent' 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
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Saved/Endpoint+Saved.swift:19:16: warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining saved-related endpoints.
12 |     struct Saved { }
   |            `- note: consider making struct 'Saved' conform to the 'Sendable' protocol
13 | }
14 |
   :
17 |     ///
18 |     /// - returns: A valid `Endpoint.Group.Saved`.
19 |     static let saved: Endpoint.Group.Saved = .init()
   |                |- warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'saved' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:22:16: warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | extension Request {
 21 |     /// The `feed` base request.
 22 |     static let feed = Request.version1.feed.appendingDefaultHeader()
    |                |- warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'feed' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |     /// The timeline request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Stories/Endpoint+Stories.swift:17:16: warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining stories-related endpoints.
12 |     final class Stories { }
   |                 `- note: class 'Stories' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for stories-specific endpoints.
17 |     static let stories: Endpoint.Group.Stories = .init()
   |                |- warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'stories' 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
18 |
19 |     /// An endpoint for loading specific endpoints.
[100/124] Compiling Swiftagram Endpoint+Tag.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Posts/Endpoint+Posts.swift:17:16: warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining posts-related endpoints.
12 |     final class Posts { }
   |                 `- note: class 'Posts' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for posts-specific endpoints.
17 |     static let posts: Endpoint.Group.Posts = .init()
   |                |- warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posts' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Archived/Endpoint+Archived.swift:17:16: warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining archive-related endpoints.
12 |     struct Archived { }
   |            `- note: consider making struct 'Archived' conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for archive-related endpoints.
17 |     static let archived: Endpoint.Group.Archived = .init()
   |                |- warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'archived' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:17:16: warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | public extension Endpoint.Group {
 11 |     /// A `class` defining a recent wrapper.
 12 |     final class Recent { }
    |                 `- note: class 'Recent' does not conform to the 'Sendable' protocol
 13 | }
 14 |
 15 | public extension Endpoint {
 16 |     /// A wrapper for timeline-specific endpoints.
 17 |     static let recent: Group.Recent = .init()
    |                |- warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'recent' 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
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Saved/Endpoint+Saved.swift:19:16: warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining saved-related endpoints.
12 |     struct Saved { }
   |            `- note: consider making struct 'Saved' conform to the 'Sendable' protocol
13 | }
14 |
   :
17 |     ///
18 |     /// - returns: A valid `Endpoint.Group.Saved`.
19 |     static let saved: Endpoint.Group.Saved = .init()
   |                |- warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'saved' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:22:16: warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | extension Request {
 21 |     /// The `feed` base request.
 22 |     static let feed = Request.version1.feed.appendingDefaultHeader()
    |                |- warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'feed' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |     /// The timeline request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Stories/Endpoint+Stories.swift:17:16: warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining stories-related endpoints.
12 |     final class Stories { }
   |                 `- note: class 'Stories' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for stories-specific endpoints.
17 |     static let stories: Endpoint.Group.Stories = .init()
   |                |- warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'stories' 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
18 |
19 |     /// An endpoint for loading specific endpoints.
[101/124] Compiling Swiftagram Constants.swift
[102/124] Compiling Swiftagram HTTPCookie.swift
[103/124] Compiling Swiftagram Header.swift
[104/124] Compiling Swiftagram Paginatable.swift
[105/124] Compiling Swiftagram Publisher.swift
[106/124] Compiling Swiftagram URLSession.swift
[107/124] Emitting module Swiftagram
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Authentication/Authenticator+Error.swift:28:14: warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
26 |         case invalidUsername
27 |         /// Two factor authentication challenge.
28 |         case twoFactorChallenge(TwoFactor)
   |              `- warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
29 |     }
30 | }
   :
33 |     /// A `struct` defining a list of properties used for
34 |     /// resolving a two factor authentication challenge.
35 |     struct TwoFactor {
   |            `- note: consider making struct 'TwoFactor' conform to the 'Sendable' protocol
36 |         /// The storage.
37 |         public let storage: AnyStorage<Secret>
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:29:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     /// - note: Replace it with your own for custom `Device` management.
 28 |     /// -  warning: `Client.default` is not guaranteed to remain the same.
 29 |     public static var `default`: Client = .iPhone11ProMax
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     #endif
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:72:16: warning: static property 'iPhone11ProMax' is not concurrency-safe because non-'Sendable' type 'Client' may have shared mutable state; this is an error in the Swift 6 language mode
 15 | ///
 16 | /// -  warning: `Client.default` is not guaranteed to remain the same.
 17 | public struct Client: Equatable, Codable, CustomStringConvertible {
    |               `- note: consider making struct 'Client' conform to the 'Sendable' protocol
 18 |     #if canImport(UIKit) && !canImport(WatchKit)
 19 |     /// The default `Client`. Defaults to `current`, if available, otherwise `iPhone11ProMax`.
    :
 70 |
 71 |     /// An **iPhone 11 Pro Max**.
 72 |     static let iPhone11ProMax = Client(application: .iOS(),
    |                |- warning: static property 'iPhone11ProMax' is not concurrency-safe because non-'Sendable' type 'Client' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'iPhone11ProMax' 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
 73 |                                        device: .iOS("iOS 14_0",
 74 |                                                     language: "en_US",
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:58:16: warning: static property 'samsungGalaxyS20' is not concurrency-safe because non-'Sendable' type 'Client' may have shared mutable state; this is an error in the Swift 6 language mode
 15 | ///
 16 | /// -  warning: `Client.default` is not guaranteed to remain the same.
 17 | public struct Client: Equatable, Codable, CustomStringConvertible {
    |               `- note: consider making struct 'Client' conform to the 'Sendable' protocol
 18 |     #if canImport(UIKit) && !canImport(WatchKit)
 19 |     /// The default `Client`. Defaults to `current`, if available, otherwise `iPhone11ProMax`.
    :
 56 | public extension Client {
 57 |     /// A **Samsung Galaxy S20**.
 58 |     static let samsungGalaxyS20 = Client(application: .android(),
    |                |- warning: static property 'samsungGalaxyS20' is not concurrency-safe because non-'Sendable' type 'Client' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'samsungGalaxyS20' 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
 59 |                                          device: .android("29/10",
 60 |                                                           language: "en_US",
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Archived/Endpoint+Archived.swift:17:16: warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining archive-related endpoints.
12 |     struct Archived { }
   |            `- note: consider making struct 'Archived' conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for archive-related endpoints.
17 |     static let archived: Endpoint.Group.Archived = .init()
   |                |- warning: static property 'archived' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Archived' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'archived' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Direct/Endpoint+Direct.swift:17:16: warning: static property 'direct' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Direct' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | public extension Endpoint.Group {
 11 |     /// A `class` defining `direct_v2` endpoints.
 12 |     final class Direct { }
    |                 `- note: class 'Direct' does not conform to the 'Sendable' protocol
 13 | }
 14 |
 15 | public extension Endpoint {
 16 |     /// A wrapper for direct endpoints.
 17 |     static let direct: Group.Direct = .init()
    |                |- warning: static property 'direct' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Direct' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'direct' 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
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Direct/Endpoint+Direct.swift:22:16: warning: static property 'direct' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | extension Request {
 21 |     /// The `direct_v2` base request.
 22 |     static let direct = Request.version1.direct_v2.appendingDefaultHeader()
    |                |- warning: static property 'direct' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'direct' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |     /// The threads base request.
 24 |     static let directThreads = Request.direct.threads.appendingDefaultHeader()
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Direct/Endpoint+Direct.swift:24:16: warning: static property 'directThreads' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |     static let direct = Request.version1.direct_v2.appendingDefaultHeader()
 23 |     /// The threads base request.
 24 |     static let directThreads = Request.direct.threads.appendingDefaultHeader()
    |                |- warning: static property 'directThreads' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'directThreads' 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 | }
 26 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:30:16: warning: static property 'api' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
28 | public extension Request {
29 |     /// An `Endpoint` pointing to `i.instagram.com`.
30 |     static let api: Request = .init("https://i.instagram.com")
   |                |- warning: static property 'api' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'api' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:36:16: warning: static property 'generic' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
36 |     static let generic: Request = .init("https://www.instagram.com")
   |                |- warning: static property 'generic' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'generic' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Explore/Endpoint+Explore.swift:17:16: warning: static property 'explore' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Explore' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining `explore` endpoints.
12 |     final class Explore { }
   |                 `- note: class 'Explore' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for explore endpoints.
17 |     static let explore: Group.Explore = .init()
   |                |- warning: static property 'explore' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Explore' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'explore' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Explore/Endpoint+Explore.swift:22:16: warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
20 | extension Request {
21 |     /// A discover related request.
22 |     static let discover = Request.version1.discover.appendingDefaultHeader()
   |                |- warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'discover' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Location/Endpoint+Location.swift:78:16: warning: static property 'locations' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 76 | extension Request {
 77 |     /// A locations related request.
 78 |     static let locations = Request.version1.locations.appendingDefaultHeader()
    |                |- warning: static property 'locations' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'locations' 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
 79 |
 80 |     /// A location related request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Media/Endpoint+Media.swift:93:16: warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 91 | extension Request {
 92 |     /// The media request.
 93 |     static let media = Request.version1.media.appendingDefaultHeader()
    |                |- warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'media' 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
 94 |
 95 |     /// A specific media request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Media/Endpoint+Media.swift:108:14: warning: associated value 'artifact' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
106 |     enum Error: Swift.Error {
107 |         /// Artifact.
108 |         case artifact(Wrapper)
    |              `- warning: associated value 'artifact' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
109 |         /// Invalid shortchode.
110 |         case invalidShortcode(String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Wrapper/Wrapper.swift:12:15: note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a generic and abstract `Codable` value.
 11 | @dynamicMemberLookup
 12 | public struct Wrapper {
    |               `- note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 13 |     /// An accessory for an empty `Wrapper`.
 14 |     public static var empty: Wrapper { .init(value: NSNull()) }
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Posts/Endpoint+Posts.swift:17:16: warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining posts-related endpoints.
12 |     final class Posts { }
   |                 `- note: class 'Posts' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for posts-specific endpoints.
17 |     static let posts: Endpoint.Group.Posts = .init()
   |                |- warning: static property 'posts' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Posts' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'posts' 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
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:17:16: warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | public extension Endpoint.Group {
 11 |     /// A `class` defining a recent wrapper.
 12 |     final class Recent { }
    |                 `- note: class 'Recent' does not conform to the 'Sendable' protocol
 13 | }
 14 |
 15 | public extension Endpoint {
 16 |     /// A wrapper for timeline-specific endpoints.
 17 |     static let recent: Group.Recent = .init()
    |                |- warning: static property 'recent' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Recent' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'recent' 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
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Recent/Endpoint+Recent.swift:22:16: warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | extension Request {
 21 |     /// The `feed` base request.
 22 |     static let feed = Request.version1.feed.appendingDefaultHeader()
    |                |- warning: static property 'feed' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'feed' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |
 24 |     /// The timeline request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Saved/Endpoint+Saved.swift:19:16: warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `struct` defining saved-related endpoints.
12 |     struct Saved { }
   |            `- note: consider making struct 'Saved' conform to the 'Sendable' protocol
13 | }
14 |
   :
17 |     ///
18 |     /// - returns: A valid `Endpoint.Group.Saved`.
19 |     static let saved: Endpoint.Group.Saved = .init()
   |                |- warning: static property 'saved' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Saved' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'saved' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Stories/Endpoint+Stories.swift:17:16: warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining stories-related endpoints.
12 |     final class Stories { }
   |                 `- note: class 'Stories' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for stories-specific endpoints.
17 |     static let stories: Endpoint.Group.Stories = .init()
   |                |- warning: static property 'stories' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Stories' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'stories' 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
18 |
19 |     /// An endpoint for loading specific endpoints.
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:73:16: warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension Request {
 72 |     /// A specific friendship based reqeust.
 73 |     static let friendships = Request.version1.friendships.appendingDefaultHeader()
    |                |- warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'friendships' 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
 74 |
 75 |     /// A specific users based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:76:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     /// A specific users based request.
 76 |     static let users = Request.version1.users.appendingDefaultHeader()
    |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'users' 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
 77 |
 78 |     /// A specic friendship based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+Users.swift:17:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining users-related endpoints.
12 |     final class Users { }
   |                 `- note: class 'Users' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for users endpoints.
17 |     static let users: Group.Users = .init()
   |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'users' 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
18 |
19 |     /// All user matching `query`.
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/Specialized.swift:13:10: warning: associated value 'generic(_:response:)' of 'Sendable'-conforming enum 'SpecializedError' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
11 | public enum SpecializedError: Error {
12 |     /// A generic `Error`.
13 |     case generic(String, response: Wrapper)
   |          `- warning: associated value 'generic(_:response:)' of 'Sendable'-conforming enum 'SpecializedError' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
14 |     /// Unforseen `status`.
15 |     /// Check the underlying `Wrapper` to find out more.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Wrapper/Wrapper.swift:12:15: note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a generic and abstract `Codable` value.
 11 | @dynamicMemberLookup
 12 | public struct Wrapper {
    |               `- note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 13 |     /// An accessory for an empty `Wrapper`.
 14 |     public static var empty: Wrapper { .init(value: NSNull()) }
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/Specialized.swift:16:10: warning: associated value 'unforseen(_:response:)' of 'Sendable'-conforming enum 'SpecializedError' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
14 |     /// Unforseen `status`.
15 |     /// Check the underlying `Wrapper` to find out more.
16 |     case unforseen(String?, response: Wrapper)
   |          `- warning: associated value 'unforseen(_:response:)' of 'Sendable'-conforming enum 'SpecializedError' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
17 |     /// The `status` was marked as `fail`, but no `message` was provided.
18 |     /// Check the underlying `Wrapper` to find out more.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Wrapper/Wrapper.swift:12:15: note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a generic and abstract `Codable` value.
 11 | @dynamicMemberLookup
 12 | public struct Wrapper {
    |               `- note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 13 |     /// An accessory for an empty `Wrapper`.
 14 |     public static var empty: Wrapper { .init(value: NSNull()) }
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/Specialized.swift:19:10: warning: associated value 'unknown(response:)' of 'Sendable'-conforming enum 'SpecializedError' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
17 |     /// The `status` was marked as `fail`, but no `message` was provided.
18 |     /// Check the underlying `Wrapper` to find out more.
19 |     case unknown(response: Wrapper)
   |          `- warning: associated value 'unknown(response:)' of 'Sendable'-conforming enum 'SpecializedError' has non-sendable type 'Wrapper'; this is an error in the Swift 6 language mode
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Wrapper/Wrapper.swift:12:15: note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a generic and abstract `Codable` value.
 11 | @dynamicMemberLookup
 12 | public struct Wrapper {
    |               `- note: struct 'Wrapper' does not conform to the 'Sendable' protocol
 13 |     /// An accessory for an empty `Wrapper`.
 14 |     public static var empty: Wrapper { .init(value: NSNull()) }
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:25:27: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 23 |
 24 |         /// A private account.
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:27:27: warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'verified' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:29:27: warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'business' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:31:27: warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'creator' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     }
 33 |
[108/124] Compiling Swiftagram Authentication.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:29:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     /// - note: Replace it with your own for custom `Device` management.
 28 |     /// -  warning: `Client.default` is not guaranteed to remain the same.
 29 |     public static var `default`: Client = .iPhone11ProMax
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     #endif
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Authentication/Authenticator+Error.swift:28:14: warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
26 |         case invalidUsername
27 |         /// Two factor authentication challenge.
28 |         case twoFactorChallenge(TwoFactor)
   |              `- warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
29 |     }
30 | }
   :
33 |     /// A `struct` defining a list of properties used for
34 |     /// resolving a two factor authentication challenge.
35 |     struct TwoFactor {
   |            `- note: consider making struct 'TwoFactor' conform to the 'Sendable' protocol
36 |         /// The storage.
37 |         public let storage: AnyStorage<Secret>
[109/124] Compiling Swiftagram Authenticator+Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:29:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     /// - note: Replace it with your own for custom `Device` management.
 28 |     /// -  warning: `Client.default` is not guaranteed to remain the same.
 29 |     public static var `default`: Client = .iPhone11ProMax
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     #endif
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Authentication/Authenticator+Error.swift:28:14: warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
26 |         case invalidUsername
27 |         /// Two factor authentication challenge.
28 |         case twoFactorChallenge(TwoFactor)
   |              `- warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
29 |     }
30 | }
   :
33 |     /// A `struct` defining a list of properties used for
34 |     /// resolving a two factor authentication challenge.
35 |     struct TwoFactor {
   |            `- note: consider making struct 'TwoFactor' conform to the 'Sendable' protocol
36 |         /// The storage.
37 |         public let storage: AnyStorage<Secret>
[110/124] Compiling Swiftagram Authenticator+Key.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:29:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     /// - note: Replace it with your own for custom `Device` management.
 28 |     /// -  warning: `Client.default` is not guaranteed to remain the same.
 29 |     public static var `default`: Client = .iPhone11ProMax
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     #endif
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Authentication/Authenticator+Error.swift:28:14: warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
26 |         case invalidUsername
27 |         /// Two factor authentication challenge.
28 |         case twoFactorChallenge(TwoFactor)
   |              `- warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
29 |     }
30 | }
   :
33 |     /// A `struct` defining a list of properties used for
34 |     /// resolving a two factor authentication challenge.
35 |     struct TwoFactor {
   |            `- note: consider making struct 'TwoFactor' conform to the 'Sendable' protocol
36 |         /// The storage.
37 |         public let storage: AnyStorage<Secret>
[111/124] Compiling Swiftagram Authenticator+Keys.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:29:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     /// - note: Replace it with your own for custom `Device` management.
 28 |     /// -  warning: `Client.default` is not guaranteed to remain the same.
 29 |     public static var `default`: Client = .iPhone11ProMax
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     #endif
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Authentication/Authenticator+Error.swift:28:14: warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
26 |         case invalidUsername
27 |         /// Two factor authentication challenge.
28 |         case twoFactorChallenge(TwoFactor)
   |              `- warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
29 |     }
30 | }
   :
33 |     /// A `struct` defining a list of properties used for
34 |     /// resolving a two factor authentication challenge.
35 |     struct TwoFactor {
   |            `- note: consider making struct 'TwoFactor' conform to the 'Sendable' protocol
36 |         /// The storage.
37 |         public let storage: AnyStorage<Secret>
[112/124] Compiling Swiftagram Authenticator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:29:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     /// - note: Replace it with your own for custom `Device` management.
 28 |     /// -  warning: `Client.default` is not guaranteed to remain the same.
 29 |     public static var `default`: Client = .iPhone11ProMax
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     #endif
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Authentication/Authenticator+Error.swift:28:14: warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
26 |         case invalidUsername
27 |         /// Two factor authentication challenge.
28 |         case twoFactorChallenge(TwoFactor)
   |              `- warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
29 |     }
30 | }
   :
33 |     /// A `struct` defining a list of properties used for
34 |     /// resolving a two factor authentication challenge.
35 |     struct TwoFactor {
   |            `- note: consider making struct 'TwoFactor' conform to the 'Sendable' protocol
36 |         /// The storage.
37 |         public let storage: AnyStorage<Secret>
[113/124] Compiling Swiftagram Secret.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Client/Client.swift:29:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     /// - note: Replace it with your own for custom `Device` management.
 28 |     /// -  warning: `Client.default` is not guaranteed to remain the same.
 29 |     public static var `default`: Client = .iPhone11ProMax
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     #endif
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Authentication/Authenticator+Error.swift:28:14: warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
26 |         case invalidUsername
27 |         /// Two factor authentication challenge.
28 |         case twoFactorChallenge(TwoFactor)
   |              `- warning: associated value 'twoFactorChallenge' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Authenticator.Error.TwoFactor'; this is an error in the Swift 6 language mode
29 |     }
30 | }
   :
33 |     /// A `struct` defining a list of properties used for
34 |     /// resolving a two factor authentication challenge.
35 |     struct TwoFactor {
   |            `- note: consider making struct 'TwoFactor' conform to the 'Sendable' protocol
36 |         /// The storage.
37 |         public let storage: AnyStorage<Secret>
[114/124] Compiling Swiftagram Endpoint+TagPosts.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:73:16: warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension Request {
 72 |     /// A specific friendship based reqeust.
 73 |     static let friendships = Request.version1.friendships.appendingDefaultHeader()
    |                |- warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'friendships' 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
 74 |
 75 |     /// A specific users based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:76:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     /// A specific users based request.
 76 |     static let users = Request.version1.users.appendingDefaultHeader()
    |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'users' 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
 77 |
 78 |     /// A specic friendship based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Explore/Endpoint+Explore.swift:22:16: warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
20 | extension Request {
21 |     /// A discover related request.
22 |     static let discover = Request.version1.discover.appendingDefaultHeader()
   |                |- warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'discover' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+Users.swift:17:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining users-related endpoints.
12 |     final class Users { }
   |                 `- note: class 'Users' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for users endpoints.
17 |     static let users: Group.Users = .init()
   |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'users' 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
18 |
19 |     /// All user matching `query`.
[115/124] Compiling Swiftagram Endpoint+ManyUsers.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:73:16: warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension Request {
 72 |     /// A specific friendship based reqeust.
 73 |     static let friendships = Request.version1.friendships.appendingDefaultHeader()
    |                |- warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'friendships' 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
 74 |
 75 |     /// A specific users based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:76:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     /// A specific users based request.
 76 |     static let users = Request.version1.users.appendingDefaultHeader()
    |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'users' 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
 77 |
 78 |     /// A specic friendship based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Explore/Endpoint+Explore.swift:22:16: warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
20 | extension Request {
21 |     /// A discover related request.
22 |     static let discover = Request.version1.discover.appendingDefaultHeader()
   |                |- warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'discover' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+Users.swift:17:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining users-related endpoints.
12 |     final class Users { }
   |                 `- note: class 'Users' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for users endpoints.
17 |     static let users: Group.Users = .init()
   |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'users' 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
18 |
19 |     /// All user matching `query`.
[116/124] Compiling Swiftagram Endpoint+User.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:73:16: warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension Request {
 72 |     /// A specific friendship based reqeust.
 73 |     static let friendships = Request.version1.friendships.appendingDefaultHeader()
    |                |- warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'friendships' 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
 74 |
 75 |     /// A specific users based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:76:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     /// A specific users based request.
 76 |     static let users = Request.version1.users.appendingDefaultHeader()
    |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'users' 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
 77 |
 78 |     /// A specic friendship based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Explore/Endpoint+Explore.swift:22:16: warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
20 | extension Request {
21 |     /// A discover related request.
22 |     static let discover = Request.version1.discover.appendingDefaultHeader()
   |                |- warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'discover' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+Users.swift:17:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining users-related endpoints.
12 |     final class Users { }
   |                 `- note: class 'Users' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for users endpoints.
17 |     static let users: Group.Users = .init()
   |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'users' 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
18 |
19 |     /// All user matching `query`.
[117/124] Compiling Swiftagram Endpoint+Users.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:73:16: warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension Request {
 72 |     /// A specific friendship based reqeust.
 73 |     static let friendships = Request.version1.friendships.appendingDefaultHeader()
    |                |- warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'friendships' 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
 74 |
 75 |     /// A specific users based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:76:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     /// A specific users based request.
 76 |     static let users = Request.version1.users.appendingDefaultHeader()
    |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'users' 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
 77 |
 78 |     /// A specic friendship based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Explore/Endpoint+Explore.swift:22:16: warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
20 | extension Request {
21 |     /// A discover related request.
22 |     static let discover = Request.version1.discover.appendingDefaultHeader()
   |                |- warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'discover' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+Users.swift:17:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining users-related endpoints.
12 |     final class Users { }
   |                 `- note: class 'Users' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for users endpoints.
17 |     static let users: Group.Users = .init()
   |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'users' 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
18 |
19 |     /// All user matching `query`.
[118/124] Compiling Swiftagram @_exported.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:73:16: warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension Request {
 72 |     /// A specific friendship based reqeust.
 73 |     static let friendships = Request.version1.friendships.appendingDefaultHeader()
    |                |- warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'friendships' 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
 74 |
 75 |     /// A specific users based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:76:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     /// A specific users based request.
 76 |     static let users = Request.version1.users.appendingDefaultHeader()
    |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'users' 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
 77 |
 78 |     /// A specic friendship based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Explore/Endpoint+Explore.swift:22:16: warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
20 | extension Request {
21 |     /// A discover related request.
22 |     static let discover = Request.version1.discover.appendingDefaultHeader()
   |                |- warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'discover' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+Users.swift:17:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining users-related endpoints.
12 |     final class Users { }
   |                 `- note: class 'Users' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for users endpoints.
17 |     static let users: Group.Users = .init()
   |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'users' 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
18 |
19 |     /// All user matching `query`.
[119/124] Compiling Swiftagram Agnostic.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:73:16: warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 71 | extension Request {
 72 |     /// A specific friendship based reqeust.
 73 |     static let friendships = Request.version1.friendships.appendingDefaultHeader()
    |                |- warning: static property 'friendships' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'friendships' 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
 74 |
 75 |     /// A specific users based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Endpoint.swift:33:16: warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     /// An `Endpoint` pointing to `api/v1`.
33 |     static let version1: Request = api.path(appending: "/api/v1")
   |                |- warning: static property 'version1' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'version1' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// An `Endpoint` pointing to the Instagram homepage.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+User.swift:76:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     /// A specific users based request.
 76 |     static let users = Request.version1.users.appendingDefaultHeader()
    |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'users' 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
 77 |
 78 |     /// A specic friendship based request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/Explore/Endpoint+Explore.swift:22:16: warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
20 | extension Request {
21 |     /// A discover related request.
22 |     static let discover = Request.version1.discover.appendingDefaultHeader()
   |                |- warning: static property 'discover' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'discover' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | }
24 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Endpoints/User/Endpoint+Users.swift:17:16: warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
10 | public extension Endpoint.Group {
11 |     /// A `class` defining users-related endpoints.
12 |     final class Users { }
   |                 `- note: class 'Users' does not conform to the 'Sendable' protocol
13 | }
14 |
15 | public extension Endpoint {
16 |     /// A wrapper for users endpoints.
17 |     static let users: Group.Users = .init()
   |                |- warning: static property 'users' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Users' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'users' 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
18 |
19 |     /// All user matching `query`.
[120/124] Compiling Swiftagram Sticker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:25:27: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 23 |
 24 |         /// A private account.
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:27:27: warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'verified' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:29:27: warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'business' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:31:27: warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'creator' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     }
 33 |
[121/124] Compiling Swiftagram Tag.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:25:27: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 23 |
 24 |         /// A private account.
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:27:27: warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'verified' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:29:27: warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'business' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:31:27: warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'creator' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     }
 33 |
[122/124] Compiling Swiftagram TrayItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:25:27: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 23 |
 24 |         /// A private account.
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:27:27: warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'verified' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:29:27: warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'business' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:31:27: warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'creator' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     }
 33 |
[123/124] Compiling Swiftagram User.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:25:27: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 23 |
 24 |         /// A private account.
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:27:27: warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'verified' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:29:27: warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'business' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:31:27: warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'creator' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     }
 33 |
[124/124] Compiling Swiftagram UserTag.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:25:27: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 23 |
 24 |         /// A private account.
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
    |                           |- warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:27:27: warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 25 |         public static let `private`: Access = .init(rawValue: 1 << 0)
 26 |         /// A verified account.
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
    |                           |- warning: static property 'verified' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'verified' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:29:27: warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 27 |         public static let verified: Access = .init(rawValue: 1 << 1)
 28 |         /// A business account.
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
    |                           |- warning: static property 'business' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'business' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
/Users/admin/builder/spi-builder-workspace/Sources/Swiftagram/Models/Specialized/User.swift:31:27: warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | public struct User: Wrapped {
 12 |     /// An `enum` representing an access status.
 13 |     public struct Access: OptionSet, Hashable, Codable {
    |                   `- note: consider making struct 'Access' conform to the 'Sendable' protocol
 14 |         /// The underlying raw value.
 15 |         public let rawValue: Int
    :
 29 |         public static let business: Access = .init(rawValue: 1 << 2)
 30 |         /// A creator account.
 31 |         public static let creator: Access = .init(rawValue: 1 << 3)
    |                           |- warning: static property 'creator' is not concurrency-safe because non-'Sendable' type 'User.Access' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'creator' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     }
 33 |
[125/137] Compiling SwiftagramCrypto Endpoint+User.swift
[126/138] Compiling SwiftagramCrypto Crypto.swift
[127/138] Compiling SwiftagramCrypto Authenticator+TwoFactor.swift
[128/138] Compiling SwiftagramCrypto Endpoint+Comment.swift
[129/138] Compiling SwiftagramCrypto Endpoint+ManyComments.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Media.swift:12:16: warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | extension Request {
 11 |     /// The media request.
 12 |     static let media = Request.version1.media.appendingDefaultHeader()
    |                |- warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'media' 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
 13 |
 14 |     /// A specific media request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
[130/138] Compiling SwiftagramCrypto Endpoint+Media.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Media.swift:12:16: warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | extension Request {
 11 |     /// The media request.
 12 |     static let media = Request.version1.media.appendingDefaultHeader()
    |                |- warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'media' 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
 13 |
 14 |     /// A specific media request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
[131/138] Emitting module SwiftagramCrypto
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Media.swift:12:16: warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | extension Request {
 11 |     /// The media request.
 12 |     static let media = Request.version1.media.appendingDefaultHeader()
    |                |- warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'media' 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
 13 |
 14 |     /// A specific media request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Uploader.swift:25:16: warning: static property 'uploader' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Uploader' may have shared mutable state; this is an error in the Swift 6 language mode
 18 | extension Endpoint.Group {
 19 |     /// A `class` defining shared code for the upload process.
 20 |     final class Uploader { }
    |                 `- note: class 'Uploader' does not conform to the 'Sendable' protocol
 21 | }
 22 |
 23 | extension Endpoint {
 24 |     /// A wrapper for uploader code.
 25 |     static let uploader: Group.Uploader = .init()
    |                |- warning: static property 'uploader' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Uploader' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'uploader' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 | }
 27 |
[132/138] Compiling SwiftagramCrypto Endpoint+Stories.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Uploader.swift:25:16: warning: static property 'uploader' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Uploader' may have shared mutable state; this is an error in the Swift 6 language mode
 18 | extension Endpoint.Group {
 19 |     /// A `class` defining shared code for the upload process.
 20 |     final class Uploader { }
    |                 `- note: class 'Uploader' does not conform to the 'Sendable' protocol
 21 | }
 22 |
 23 | extension Endpoint {
 24 |     /// A wrapper for uploader code.
 25 |     static let uploader: Group.Uploader = .init()
    |                |- warning: static property 'uploader' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Uploader' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'uploader' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 | }
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Media.swift:12:16: warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | extension Request {
 11 |     /// The media request.
 12 |     static let media = Request.version1.media.appendingDefaultHeader()
    |                |- warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'media' 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
 13 |
 14 |     /// A specific media request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
[133/138] Compiling SwiftagramCrypto Endpoint+Posts.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Uploader.swift:25:16: warning: static property 'uploader' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Uploader' may have shared mutable state; this is an error in the Swift 6 language mode
 18 | extension Endpoint.Group {
 19 |     /// A `class` defining shared code for the upload process.
 20 |     final class Uploader { }
    |                 `- note: class 'Uploader' does not conform to the 'Sendable' protocol
 21 | }
 22 |
 23 | extension Endpoint {
 24 |     /// A wrapper for uploader code.
 25 |     static let uploader: Group.Uploader = .init()
    |                |- warning: static property 'uploader' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Uploader' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'uploader' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 | }
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Media.swift:12:16: warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | extension Request {
 11 |     /// The media request.
 12 |     static let media = Request.version1.media.appendingDefaultHeader()
    |                |- warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'media' 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
 13 |
 14 |     /// A specific media request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
[134/138] Compiling SwiftagramCrypto Authenticator+Keychain.swift
[135/138] Compiling SwiftagramCrypto Authenticator+Basic.swift
[136/138] Compiling SwiftagramCrypto Endpoint+Tag.swift
[137/138] Compiling SwiftagramCrypto @_exported.swift
[138/138] Compiling SwiftagramCrypto Endpoint+Uploader.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Uploader.swift:25:16: warning: static property 'uploader' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Uploader' may have shared mutable state; this is an error in the Swift 6 language mode
 18 | extension Endpoint.Group {
 19 |     /// A `class` defining shared code for the upload process.
 20 |     final class Uploader { }
    |                 `- note: class 'Uploader' does not conform to the 'Sendable' protocol
 21 | }
 22 |
 23 | extension Endpoint {
 24 |     /// A wrapper for uploader code.
 25 |     static let uploader: Group.Uploader = .init()
    |                |- warning: static property 'uploader' is not concurrency-safe because non-'Sendable' type 'Endpoint.Group.Uploader' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'uploader' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 | }
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftagramCrypto/Endpoints/Endpoint+Media.swift:12:16: warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | extension Request {
 11 |     /// The media request.
 12 |     static let media = Request.version1.media.appendingDefaultHeader()
    |                |- warning: static property 'media' is not concurrency-safe because non-'Sendable' type 'Request' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'media' 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
 13 |
 14 |     /// A specific media request.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ComposableRequest/Sources/ComposableRequest/Request/Request.swift:12:15: note: struct 'Request' does not conform to the 'Sendable' protocol
 10 | /// A `struct` defining a composable `URLRequest`.
 11 | @dynamicMemberLookup
 12 | public struct Request: Hashable {
    |               `- note: struct 'Request' does not conform to the 'Sendable' protocol
 13 |     /// Some valid `URLComponents`.
 14 |     public var components: URLComponents?
Build complete! (49.53s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "composablerequest",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.3.1",
            "upper_bound" : "5.4.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sbertix/ComposableRequest"
    },
    {
      "identity" : "swcrypt",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.1.0",
            "upper_bound" : "5.2.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sbertix/SwCrypt.git"
    }
  ],
  "manifest_display_name" : "Swiftagram",
  "name" : "Swiftagram",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Swiftagram",
      "targets" : [
        "Swiftagram"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftagramCrypto",
      "targets" : [
        "SwiftagramCrypto"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftagramTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftagramTests",
      "path" : "Tests/SwiftagramTests",
      "sources" : [
        "AuthenticatorTests.swift",
        "ClientTests.swift",
        "EndpointTests.swift",
        "ModelTests.swift",
        "Shared/Media+Content.swift",
        "Shared/Reflection/Comment.swift",
        "Shared/Reflection/Conversation.swift",
        "Shared/Reflection/Friendship.swift",
        "Shared/Reflection/Location.swift",
        "Shared/Reflection/Media.swift",
        "Shared/Reflection/Recipient.swift",
        "Shared/Reflection/Reflected.swift",
        "Shared/Reflection/SavedCollection.swift",
        "Shared/Reflection/Status.swift",
        "Shared/Reflection/Sticker.swift",
        "Shared/Reflection/Tag.swift",
        "Shared/Reflection/TrayItem.swift",
        "Shared/Reflection/User.swift",
        "Shared/Reflection/UserTag.swift"
      ],
      "target_dependencies" : [
        "Swiftagram",
        "SwiftagramCrypto"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftagramCrypto",
      "module_type" : "SwiftTarget",
      "name" : "SwiftagramCrypto",
      "path" : "Sources/SwiftagramCrypto",
      "product_dependencies" : [
        "StorageCrypto",
        "SwCrypt"
      ],
      "product_memberships" : [
        "SwiftagramCrypto"
      ],
      "sources" : [
        "Authentication/Authenticator+Keychain.swift",
        "Authentication/Basic/Authenticator+Basic.swift",
        "Authentication/Basic/Authenticator+TwoFactor.swift",
        "Endpoints/Endpoint+Comment.swift",
        "Endpoints/Endpoint+ManyComments.swift",
        "Endpoints/Endpoint+Media.swift",
        "Endpoints/Endpoint+Posts.swift",
        "Endpoints/Endpoint+Stories.swift",
        "Endpoints/Endpoint+Tag.swift",
        "Endpoints/Endpoint+Uploader.swift",
        "Endpoints/Endpoint+User.swift",
        "Extensions/@_exported.swift",
        "Extensions/Crypto.swift"
      ],
      "target_dependencies" : [
        "Swiftagram"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Swiftagram",
      "module_type" : "SwiftTarget",
      "name" : "Swiftagram",
      "path" : "Sources/Swiftagram",
      "product_dependencies" : [
        "Requests",
        "Storage"
      ],
      "product_memberships" : [
        "Swiftagram",
        "SwiftagramCrypto"
      ],
      "sources" : [
        "Authentication/Authentication.swift",
        "Authentication/Authenticator+Error.swift",
        "Authentication/Authenticator+Key.swift",
        "Authentication/Authenticator+Keys.swift",
        "Authentication/Authenticator.swift",
        "Authentication/Secret.swift",
        "Authentication/Visual/Authenticator+Visual.swift",
        "Authentication/Visual/AuthenticatorWebView.swift",
        "Client/Application.swift",
        "Client/Client.swift",
        "Client/Device.swift",
        "Client/LegacyDevice.swift",
        "Endpoints/Archived/Endpoint+Archived.swift",
        "Endpoints/Direct/Endpoint+Conversation.swift",
        "Endpoints/Direct/Endpoint+ConversationRequest.swift",
        "Endpoints/Direct/Endpoint+Direct.swift",
        "Endpoints/Direct/Endpoint+Message.swift",
        "Endpoints/Endpoint.swift",
        "Endpoints/Explore/Endpoint+Explore.swift",
        "Endpoints/Location/Endpoint+Location.swift",
        "Endpoints/Location/Endpoint+LocationPosts.swift",
        "Endpoints/Media/Endpoint+Comment.swift",
        "Endpoints/Media/Endpoint+ManyComments.swift",
        "Endpoints/Media/Endpoint+Media.swift",
        "Endpoints/Posts/Endpoint+Posts.swift",
        "Endpoints/Recent/Endpoint+Recent.swift",
        "Endpoints/Saved/Endpoint+Saved.swift",
        "Endpoints/Saved/Endpoint+SavedCollection.swift",
        "Endpoints/Stories/Endpoint+Stories.swift",
        "Endpoints/Tag/Endpoint+Tag.swift",
        "Endpoints/Tag/Endpoint+TagPosts.swift",
        "Endpoints/User/Endpoint+ManyUsers.swift",
        "Endpoints/User/Endpoint+User.swift",
        "Endpoints/User/Endpoint+Users.swift",
        "Extensions/@_exported.swift",
        "Extensions/Agnostic.swift",
        "Extensions/Constants.swift",
        "Extensions/HTTPCookie.swift",
        "Extensions/Header.swift",
        "Extensions/Paginatable.swift",
        "Extensions/Publisher.swift",
        "Extensions/URLSession.swift",
        "Models/Errors/AuthenticationError.swift",
        "Models/Specialized/Comment.swift",
        "Models/Specialized/Conversation.swift",
        "Models/Specialized/Friendship.swift",
        "Models/Specialized/Location.swift",
        "Models/Specialized/Media.swift",
        "Models/Specialized/Recipient.swift",
        "Models/Specialized/SavedCollection.swift",
        "Models/Specialized/Section.swift",
        "Models/Specialized/Specialized.swift",
        "Models/Specialized/Status.swift",
        "Models/Specialized/Sticker.swift",
        "Models/Specialized/Tag.swift",
        "Models/Specialized/TrayItem.swift",
        "Models/Specialized/User.swift",
        "Models/Specialized/UserTag.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.