The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of PutioKit, reference 1.0.0 (e94233), with Swift 6.0 for macOS (SPM) on 30 Oct 2024 22:47:22 UTC.

Swift 6 data race errors: 5

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ipavlidakis/PutioKit.git
Reference: 1.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ipavlidakis/PutioKit
 * tag               1.0.0      -> FETCH_HEAD
HEAD is now at e94233a Update README.md
Cloned https://github.com/ipavlidakis/PutioKit.git
Revision (git rev-parse @):
e94233a4152b045e3ef24820e1dd3a3977cc2047
SUCCESS checkout https://github.com/ipavlidakis/PutioKit.git at 1.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "putiokit",
      "name": "PutioKit",
      "url": "https://github.com/ipavlidakis/PutioKit.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/PutioKit",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/ipavlidakis/PutioKit.git
[1/531] Fetching putiokit
Fetched https://github.com/ipavlidakis/PutioKit.git from cache (0.78s)
Creating working copy for https://github.com/ipavlidakis/PutioKit.git
Working copy of https://github.com/ipavlidakis/PutioKit.git resolved at 1.0.0 (e94233a)
warning: '.resolve-product-dependencies': dependency 'putiokit' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/ipavlidakis/PutioKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/44] Compiling PutioKit ZipService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[4/44] Compiling PutioKit ApiClientModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[5/44] Compiling PutioKit CompletionTypes.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[6/44] Compiling PutioKit Constants.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[7/48] Compiling PutioKit URLQueryItemConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
[8/48] Compiling PutioKit AccountService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
[9/48] Compiling PutioKit AccountService+Model.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
[10/48] Compiling PutioKit AuthenticationService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
[11/48] Compiling PutioKit AuthenticationService+Models.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
[12/48] Compiling PutioKit FriendsService+Model.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[13/48] Compiling PutioKit RSSService+Models.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[14/48] Compiling PutioKit RSSService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[15/48] Compiling PutioKit SharesService+Model.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[16/48] Emitting module PutioKit
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/CreatedAndUpdatedDateFormatter.swift:11:13: warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | final class CreatedAndUpdatedDateFormatter: DateFormatter {
   |             `- warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
12 |
13 |     override func date(from string: String) -> Date? {
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:16:16: warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
   |                |- warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptSubrip' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptSubrip' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
18 |
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:17:16: warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
   |                |- warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptVTT' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptVTT' with '@MainActor' 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 |     static func basicAuthorization(username: String, password: String) -> URLRequest.HeaderPair? {
[17/48] Compiling PutioKit Swime.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[18/48] Compiling PutioKit ErrorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[19/48] Compiling PutioKit SuccessModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[20/48] Compiling PutioKit CredentialsStoring.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[21/48] Compiling PutioKit FileOrTransferProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[22/48] Compiling PutioKit Data+MimeType.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[23/48] Compiling PutioKit Data+MultipartForm.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[24/48] Compiling PutioKit Decodable+GenericInit.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[25/48] Compiling PutioKit JSONDecoder+PutioKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[26/48] Compiling PutioKit MimeType.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/External/Swime/MimeType.swift:101:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
 69 | }
 70 |
 71 | public struct MimeType {
    |               `- note: consider making struct 'MimeType' conform to the 'Sendable' protocol
 72 |     /// Mime type string representation. For example "application/pdf"
 73 |     public let mime: String
    :
 99 |
100 |     /// List of all supported `MimeType`s
101 |     public static let all: [MimeType] = [
    |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[MimeType]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |         MimeType(
103 |             mime: "image/jpeg",
[27/48] Compiling PutioKit SharesService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[28/48] Compiling PutioKit TransfersService+Model.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[29/48] Compiling PutioKit TransfersService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[30/48] Compiling PutioKit ZipService+Models.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[31/48] Compiling PutioKit ConfigService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[32/48] Compiling PutioKit EventsService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[33/48] Compiling PutioKit EventsService+Models.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[34/48] Compiling PutioKit FilesService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[35/48] Compiling PutioKit FilesService+Model.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[36/48] Compiling PutioKit CreatedAndUpdatedDateFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/CreatedAndUpdatedDateFormatter.swift:11:13: warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | final class CreatedAndUpdatedDateFormatter: DateFormatter {
   |             `- warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
12 |
13 |     override func date(from string: String) -> Date? {
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/NetworkHandler.swift:99:21: warning: capture of 'downstream' with non-sendable type 'PassthroughSubject<(data: Data, response: URLResponse), any Error>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             switch (data, response, error) {
 98 |                 case let (data, response?, nil):
 99 |                     downstream.send((data ?? Data(), response))
    |                     `- warning: capture of 'downstream' with non-sendable type 'PassthroughSubject<(data: Data, response: URLResponse), any Error>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                     downstream.send(completion: .finished)
101 |                 case let (_, _, error as URLError):
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 2 | final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
   |                    `- note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
 3 |     public init()
 4 |     @objc deinit
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/NetworkHandler.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
  7 |
  8 | import Foundation
  9 | import Combine
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
 10 |
 11 | public protocol NetworkHandling {
[37/48] Compiling PutioKit HTTPMethod.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/CreatedAndUpdatedDateFormatter.swift:11:13: warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | final class CreatedAndUpdatedDateFormatter: DateFormatter {
   |             `- warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
12 |
13 |     override func date(from string: String) -> Date? {
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/NetworkHandler.swift:99:21: warning: capture of 'downstream' with non-sendable type 'PassthroughSubject<(data: Data, response: URLResponse), any Error>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             switch (data, response, error) {
 98 |                 case let (data, response?, nil):
 99 |                     downstream.send((data ?? Data(), response))
    |                     `- warning: capture of 'downstream' with non-sendable type 'PassthroughSubject<(data: Data, response: URLResponse), any Error>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                     downstream.send(completion: .finished)
101 |                 case let (_, _, error as URLError):
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 2 | final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
   |                    `- note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
 3 |     public init()
 4 |     @objc deinit
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/NetworkHandler.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
  7 |
  8 | import Foundation
  9 | import Combine
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
 10 |
 11 | public protocol NetworkHandling {
[38/48] Compiling PutioKit Helpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/CreatedAndUpdatedDateFormatter.swift:11:13: warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | final class CreatedAndUpdatedDateFormatter: DateFormatter {
   |             `- warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
12 |
13 |     override func date(from string: String) -> Date? {
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/NetworkHandler.swift:99:21: warning: capture of 'downstream' with non-sendable type 'PassthroughSubject<(data: Data, response: URLResponse), any Error>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             switch (data, response, error) {
 98 |                 case let (data, response?, nil):
 99 |                     downstream.send((data ?? Data(), response))
    |                     `- warning: capture of 'downstream' with non-sendable type 'PassthroughSubject<(data: Data, response: URLResponse), any Error>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                     downstream.send(completion: .finished)
101 |                 case let (_, _, error as URLError):
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 2 | final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
   |                    `- note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
 3 |     public init()
 4 |     @objc deinit
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/NetworkHandler.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
  7 |
  8 | import Foundation
  9 | import Combine
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
 10 |
 11 | public protocol NetworkHandling {
[39/48] Compiling PutioKit NetworkHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/CreatedAndUpdatedDateFormatter.swift:11:13: warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
 9 | import Foundation
10 |
11 | final class CreatedAndUpdatedDateFormatter: DateFormatter {
   |             `- warning: class 'CreatedAndUpdatedDateFormatter' must restate inherited '@unchecked Sendable' conformance
12 |
13 |     override func date(from string: String) -> Date? {
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/NetworkHandler.swift:99:21: warning: capture of 'downstream' with non-sendable type 'PassthroughSubject<(data: Data, response: URLResponse), any Error>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             switch (data, response, error) {
 98 |                 case let (data, response?, nil):
 99 |                     downstream.send((data ?? Data(), response))
    |                     `- warning: capture of 'downstream' with non-sendable type 'PassthroughSubject<(data: Data, response: URLResponse), any Error>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |                     downstream.send(completion: .finished)
101 |                 case let (_, _, error as URLError):
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
 2 | final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
   |                    `- note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
 3 |     public init()
 4 |     @objc deinit
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/NetworkHandler.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
  7 |
  8 | import Foundation
  9 | import Combine
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
 10 |
 11 | public protocol NetworkHandling {
[40/48] Compiling PutioKit FilesService+CRUD.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[41/48] Compiling PutioKit FilesService+Listing.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[42/48] Compiling PutioKit FilesService+Searching.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[43/48] Compiling PutioKit FilesService+VideoOperations.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[44/48] Compiling PutioKit FriendsService.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
[45/48] Compiling PutioKit PutIOKitError.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:16:16: warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
   |                |- warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptSubrip' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptSubrip' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
18 |
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:17:16: warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
   |                |- warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptVTT' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptVTT' with '@MainActor' 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 |     static func basicAuthorization(username: String, password: String) -> URLRequest.HeaderPair? {
[46/48] Compiling PutioKit URLRequest+HeaderPair.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:16:16: warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
   |                |- warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptSubrip' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptSubrip' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
18 |
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:17:16: warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
   |                |- warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptVTT' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptVTT' with '@MainActor' 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 |     static func basicAuthorization(username: String, password: String) -> URLRequest.HeaderPair? {
[47/48] Compiling PutioKit URLRequest+PutIOKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:16:16: warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
   |                |- warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptSubrip' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptSubrip' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
18 |
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:17:16: warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
   |                |- warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptVTT' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptVTT' with '@MainActor' 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 |     static func basicAuthorization(username: String, password: String) -> URLRequest.HeaderPair? {
[48/48] Compiling PutioKit URLRequest+QueryItemEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:14:16: warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension URLRequest.HeaderPair {
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
   |                |- warning: static property 'contentTypeFormURLEncoded' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeFormURLEncoded' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeFormURLEncoded' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:15:16: warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
   |                |- warning: static property 'contentTypeJSON' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'contentTypeJSON' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'contentTypeJSON' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:16:16: warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var contentTypeFormURLEncoded = URLRequest.HeaderPair(name: "Content-Type", value: "application/x-www-form-urlencoded")
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
   |                |- warning: static property 'acceptSubrip' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptSubrip' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptSubrip' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
18 |
/Users/admin/builder/spi-builder-workspace/Sources/PutioKit/Utilities/URLRequest/URLRequest+HeaderPair.swift:17:16: warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var contentTypeJSON = URLRequest.HeaderPair(name: "Content-Type", value: "application/json")
16 |     static var acceptSubrip = URLRequest.HeaderPair(name: "Accept", value: "application/x-subrip")
17 |     static var acceptVTT = URLRequest.HeaderPair(name: "Accept", value: "text/vtt")
   |                |- warning: static property 'acceptVTT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'acceptVTT' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'acceptVTT' with '@MainActor' 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 |     static func basicAuthorization(username: String, password: String) -> URLRequest.HeaderPair? {
Build complete! (16.33s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "PutioKit",
  "name" : "PutioKit",
  "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" : "PutioKit",
      "targets" : [
        "PutioKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PutioKitTests",
      "module_type" : "SwiftTarget",
      "name" : "PutioKitTests",
      "path" : "Tests/PutioKitTests",
      "sources" : [
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "PutioKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PutioKit",
      "module_type" : "SwiftTarget",
      "name" : "PutioKit",
      "path" : "Sources/PutioKit",
      "product_memberships" : [
        "PutioKit"
      ],
      "sources" : [
        "Extensions/Data+MimeType.swift",
        "Extensions/Data+MultipartForm.swift",
        "Extensions/Decodable+GenericInit.swift",
        "Extensions/JSONDecoder+PutioKit.swift",
        "External/Swime/MimeType.swift",
        "External/Swime/Swime.swift",
        "Models/ErrorModel.swift",
        "Models/SuccessModel.swift",
        "Protocols/CredentialsStoring.swift",
        "Protocols/FileOrTransferProtocol.swift",
        "Protocols/URLQueryItemConvertible.swift",
        "Services/Account/AccountService.swift",
        "Services/Account/Models/AccountService+Model.swift",
        "Services/Authentication/AuthenticationService.swift",
        "Services/Authentication/Models/AuthenticationService+Models.swift",
        "Services/Config/ConfigService.swift",
        "Services/Events/EventsService.swift",
        "Services/Events/Models/EventsService+Models.swift",
        "Services/Files/FilesService.swift",
        "Services/Files/Models/FilesService+Model.swift",
        "Services/Files/Subservices/FilesService+CRUD.swift",
        "Services/Files/Subservices/FilesService+Listing.swift",
        "Services/Files/Subservices/FilesService+Searching.swift",
        "Services/Files/Subservices/FilesService+VideoOperations.swift",
        "Services/Friends/FriendsService.swift",
        "Services/Friends/Models/FriendsService+Model.swift",
        "Services/RSS/Models/RSSService+Models.swift",
        "Services/RSS/RSSService.swift",
        "Services/Shares/Models/SharesService+Model.swift",
        "Services/Shares/SharesService.swift",
        "Services/Transfers/Models/TransfersService+Model.swift",
        "Services/Transfers/TransfersService.swift",
        "Services/Zip/Models/ZipService+Models.swift",
        "Services/Zip/ZipService.swift",
        "Utilities/ApiClientModel.swift",
        "Utilities/CompletionTypes.swift",
        "Utilities/Constants.swift",
        "Utilities/CreatedAndUpdatedDateFormatter.swift",
        "Utilities/HTTPMethod.swift",
        "Utilities/Helpers.swift",
        "Utilities/NetworkHandler.swift",
        "Utilities/PutIOKitError.swift",
        "Utilities/URLRequest/URLRequest+HeaderPair.swift",
        "Utilities/URLRequest/URLRequest+PutIOKit.swift",
        "Utilities/URLRequest/URLRequest+QueryItemEncoder.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.