The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Swiftagram, reference 5.4.0 (de8a5d), with Swift 6.0 for macOS (SPM) on 28 Nov 2024 05:12:40 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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

 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/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: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?
[97/124] Compiling Swiftagram Endpoint+Conversation.swift
/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: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/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/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: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?
[98/124] Compiling Swiftagram Endpoint+ConversationRequest.swift
/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: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/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/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: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?
[99/124] Compiling Swiftagram Endpoint+Direct.swift
/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: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/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/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: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?
[100/124] Compiling Swiftagram Endpoint+Message.swift
/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: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/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/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: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?
[101/124] Compiling Swiftagram Endpoint.swift
/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: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/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/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: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?
[102/124] Compiling Swiftagram Endpoint+Explore.swift
/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/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/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()) }
[103/124] Compiling Swiftagram Endpoint+Location.swift
/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/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/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()) }
[104/124] Compiling Swiftagram Endpoint+LocationPosts.swift
/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/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/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()) }
[105/124] Compiling Swiftagram Endpoint+Comment.swift
/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/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/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()) }
[106/124] Compiling Swiftagram Endpoint+ManyComments.swift
/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/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/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()) }
[107/124] Compiling Swiftagram Endpoint+Media.swift
/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/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/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()) }
[108/124] Compiling Swiftagram AuthenticationError.swift
[109/124] Compiling Swiftagram Comment.swift
[110/124] Compiling Swiftagram Conversation.swift
[111/124] Compiling Swiftagram Friendship.swift
[112/124] Compiling Swiftagram Location.swift
[113/124] Compiling Swiftagram Media.swift
[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 @_exported.swift
[126/138] Compiling SwiftagramCrypto Crypto.swift
[127/138] Compiling SwiftagramCrypto Endpoint+User.swift
[128/138] Compiling SwiftagramCrypto Endpoint+Tag.swift
[129/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?
[130/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?
[131/138] Compiling SwiftagramCrypto Authenticator+Keychain.swift
[132/138] Compiling SwiftagramCrypto Authenticator+Basic.swift
[133/138] Compiling SwiftagramCrypto Authenticator+TwoFactor.swift
[134/138] Compiling SwiftagramCrypto Endpoint+Comment.swift
[135/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?
[136/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?
[137/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 |
[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! (52.77s)
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.