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

The Swift Package Index logo.Swift Package Index

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

Build Information

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

Swift 6 data race errors: 21

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Kuniwak/MultipartFormDataKit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Kuniwak/MultipartFormDataKit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 666c171 Ready to be 2.0.0
Cloned https://github.com/Kuniwak/MultipartFormDataKit.git
Revision (git rev-parse @):
666c1715f6e70f4589d11ae2936eb16bf018ccd4
SUCCESS checkout https://github.com/Kuniwak/MultipartFormDataKit.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/Kuniwak/MultipartFormDataKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/14] Compiling MultipartFormDataKit Name.swift
[4/15] Compiling MultipartFormDataKit MIMEType.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:8:23: warning: static property 'multipartFormData' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     }
 7 |
 8 |     public static var multipartFormData = MIMEType(text: "multipart/form-data")
   |                       |- warning: static property 'multipartFormData' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'multipartFormData' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'multipartFormData' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |
10 |     public static var textPlain = MIMEType(text: "text/plain")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:10:23: warning: static property 'textPlain' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var multipartFormData = MIMEType(text: "multipart/form-data")
 9 |
10 |     public static var textPlain = MIMEType(text: "text/plain")
   |                       |- warning: static property 'textPlain' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'textPlain' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'textPlain' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static var textHtml = MIMEType(text: "text/html")
12 |     public static var textCss = MIMEType(text: "text/css")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:11:23: warning: static property 'textHtml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 |     public static var textPlain = MIMEType(text: "text/plain")
11 |     public static var textHtml = MIMEType(text: "text/html")
   |                       |- warning: static property 'textHtml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'textHtml' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'textHtml' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static var textCss = MIMEType(text: "text/css")
13 |     public static var textJavascript = MIMEType(text: "text/javascript")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:12:23: warning: static property 'textCss' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     public static var textPlain = MIMEType(text: "text/plain")
11 |     public static var textHtml = MIMEType(text: "text/html")
12 |     public static var textCss = MIMEType(text: "text/css")
   |                       |- warning: static property 'textCss' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'textCss' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'textCss' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var textJavascript = MIMEType(text: "text/javascript")
14 |
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:13:23: warning: static property 'textJavascript' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     public static var textHtml = MIMEType(text: "text/html")
12 |     public static var textCss = MIMEType(text: "text/css")
13 |     public static var textJavascript = MIMEType(text: "text/javascript")
   |                       |- warning: static property 'textJavascript' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'textJavascript' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'textJavascript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var imageGif = MIMEType(text: "image/gif")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:15:23: warning: static property 'imageGif' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var textJavascript = MIMEType(text: "text/javascript")
14 |
15 |     public static var imageGif = MIMEType(text: "image/gif")
   |                       |- warning: static property 'imageGif' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageGif' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageGif' with '@MainActor' 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 |     public static var imagePng = MIMEType(text: "image/png")
17 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:16:23: warning: static property 'imagePng' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 |     public static var imageGif = MIMEType(text: "image/gif")
16 |     public static var imagePng = MIMEType(text: "image/png")
   |                       |- warning: static property 'imagePng' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imagePng' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imagePng' with '@MainActor' 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 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
18 |     public static var imageBmp = MIMEType(text: "image/bmp")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:17:23: warning: static property 'imageJpeg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     public static var imageGif = MIMEType(text: "image/gif")
16 |     public static var imagePng = MIMEType(text: "image/png")
17 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
   |                       |- warning: static property 'imageJpeg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageJpeg' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageJpeg' with '@MainActor' 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 |     public static var imageBmp = MIMEType(text: "image/bmp")
19 |     public static var imageWebp = MIMEType(text: "image/webp")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:18:23: warning: static property 'imageBmp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     public static var imagePng = MIMEType(text: "image/png")
17 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
18 |     public static var imageBmp = MIMEType(text: "image/bmp")
   |                       |- warning: static property 'imageBmp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageBmp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageBmp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     public static var imageWebp = MIMEType(text: "image/webp")
20 |     public static var imageSvgXml = MIMEType(text: "image/svg+xml")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:19:23: warning: static property 'imageWebp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
18 |     public static var imageBmp = MIMEType(text: "image/bmp")
19 |     public static var imageWebp = MIMEType(text: "image/webp")
   |                       |- warning: static property 'imageWebp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageWebp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageWebp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static var imageSvgXml = MIMEType(text: "image/svg+xml")
21 |
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:20:23: warning: static property 'imageSvgXml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
18 |     public static var imageBmp = MIMEType(text: "image/bmp")
19 |     public static var imageWebp = MIMEType(text: "image/webp")
20 |     public static var imageSvgXml = MIMEType(text: "image/svg+xml")
   |                       |- warning: static property 'imageSvgXml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageSvgXml' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageSvgXml' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static var audioAudio = MIMEType(text: "audio/midi")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:22:23: warning: static property 'audioAudio' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     public static var imageSvgXml = MIMEType(text: "image/svg+xml")
21 |
22 |     public static var audioAudio = MIMEType(text: "audio/midi")
   |                       |- warning: static property 'audioAudio' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioAudio' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioAudio' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static var audioMpeg = MIMEType(text: "audio/mpeg")
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:23:23: warning: static property 'audioMpeg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
21 |
22 |     public static var audioAudio = MIMEType(text: "audio/midi")
23 |     public static var audioMpeg = MIMEType(text: "audio/mpeg")
   |                       |- warning: static property 'audioMpeg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioMpeg' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioMpeg' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
25 |     public static var audioOgg = MIMEType(text: "audio/ogg")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:24:23: warning: static property 'audioWebm' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
22 |     public static var audioAudio = MIMEType(text: "audio/midi")
23 |     public static var audioMpeg = MIMEType(text: "audio/mpeg")
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
   |                       |- warning: static property 'audioWebm' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioWebm' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioWebm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static var audioOgg = MIMEType(text: "audio/ogg")
26 |     public static var audioWav = MIMEType(text: "audio/wav")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:25:23: warning: static property 'audioOgg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
23 |     public static var audioMpeg = MIMEType(text: "audio/mpeg")
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
25 |     public static var audioOgg = MIMEType(text: "audio/ogg")
   |                       |- warning: static property 'audioOgg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioOgg' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioOgg' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static var audioWav = MIMEType(text: "audio/wav")
27 |
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:26:23: warning: static property 'audioWav' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
25 |     public static var audioOgg = MIMEType(text: "audio/ogg")
26 |     public static var audioWav = MIMEType(text: "audio/wav")
   |                       |- warning: static property 'audioWav' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioWav' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioWav' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public static var videoWebm = MIMEType(text: "video/webm")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:28:23: warning: static property 'videoWebm' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
26 |     public static var audioWav = MIMEType(text: "audio/wav")
27 |
28 |     public static var videoWebm = MIMEType(text: "video/webm")
   |                       |- warning: static property 'videoWebm' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'videoWebm' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'videoWebm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static var videoOgg = MIMEType(text: "video/ogg")
30 |
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:29:23: warning: static property 'videoOgg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 |     public static var videoWebm = MIMEType(text: "video/webm")
29 |     public static var videoOgg = MIMEType(text: "video/ogg")
   |                       |- warning: static property 'videoOgg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'videoOgg' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'videoOgg' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     public static var applicationOctetStream = MIMEType(text: "application/octet-stream")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:31:23: warning: static property 'applicationOctetStream' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     public static var videoOgg = MIMEType(text: "video/ogg")
30 |
31 |     public static var applicationOctetStream = MIMEType(text: "application/octet-stream")
   |                       |- warning: static property 'applicationOctetStream' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'applicationOctetStream' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'applicationOctetStream' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static var applicationXml = MIMEType(text: "application/xml")
33 |     public static var applicationJson = MIMEType(text: "application/json")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:32:23: warning: static property 'applicationXml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     public static var applicationOctetStream = MIMEType(text: "application/octet-stream")
32 |     public static var applicationXml = MIMEType(text: "application/xml")
   |                       |- warning: static property 'applicationXml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'applicationXml' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'applicationXml' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static var applicationJson = MIMEType(text: "application/json")
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:33:23: warning: static property 'applicationJson' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
31 |     public static var applicationOctetStream = MIMEType(text: "application/octet-stream")
32 |     public static var applicationXml = MIMEType(text: "application/xml")
33 |     public static var applicationJson = MIMEType(text: "application/json")
   |                       |- warning: static property 'applicationJson' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'applicationJson' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'applicationJson' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | }
[5/15] Compiling MultipartFormDataKit MultipartFormData+Part.swift
[6/15] Compiling MultipartFormDataKit MultipartFormData+Builder.swift
[7/15] Compiling MultipartFormDataKit MultipartFormData.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:8:23: warning: static property 'multipartFormData' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     }
 7 |
 8 |     public static var multipartFormData = MIMEType(text: "multipart/form-data")
   |                       |- warning: static property 'multipartFormData' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'multipartFormData' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'multipartFormData' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |
10 |     public static var textPlain = MIMEType(text: "text/plain")
[8/15] Compiling MultipartFormDataKit Dash.swift
[9/15] Compiling MultipartFormDataKit Filename.swift
[10/15] Compiling MultipartFormDataKit ContentDisposition.swift
[11/15] Compiling MultipartFormDataKit ContentType.swift
[12/15] Compiling MultipartFormDataKit BoundaryGenerator.swift
[13/15] Compiling MultipartFormDataKit CRLF.swift
[14/15] Emitting module MultipartFormDataKit
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:8:23: warning: static property 'multipartFormData' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 6 |     }
 7 |
 8 |     public static var multipartFormData = MIMEType(text: "multipart/form-data")
   |                       |- warning: static property 'multipartFormData' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'multipartFormData' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'multipartFormData' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9 |
10 |     public static var textPlain = MIMEType(text: "text/plain")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:10:23: warning: static property 'textPlain' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |     public static var multipartFormData = MIMEType(text: "multipart/form-data")
 9 |
10 |     public static var textPlain = MIMEType(text: "text/plain")
   |                       |- warning: static property 'textPlain' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'textPlain' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'textPlain' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     public static var textHtml = MIMEType(text: "text/html")
12 |     public static var textCss = MIMEType(text: "text/css")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:11:23: warning: static property 'textHtml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 |     public static var textPlain = MIMEType(text: "text/plain")
11 |     public static var textHtml = MIMEType(text: "text/html")
   |                       |- warning: static property 'textHtml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'textHtml' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'textHtml' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static var textCss = MIMEType(text: "text/css")
13 |     public static var textJavascript = MIMEType(text: "text/javascript")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:12:23: warning: static property 'textCss' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     public static var textPlain = MIMEType(text: "text/plain")
11 |     public static var textHtml = MIMEType(text: "text/html")
12 |     public static var textCss = MIMEType(text: "text/css")
   |                       |- warning: static property 'textCss' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'textCss' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'textCss' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var textJavascript = MIMEType(text: "text/javascript")
14 |
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:13:23: warning: static property 'textJavascript' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     public static var textHtml = MIMEType(text: "text/html")
12 |     public static var textCss = MIMEType(text: "text/css")
13 |     public static var textJavascript = MIMEType(text: "text/javascript")
   |                       |- warning: static property 'textJavascript' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'textJavascript' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'textJavascript' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     public static var imageGif = MIMEType(text: "image/gif")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:15:23: warning: static property 'imageGif' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var textJavascript = MIMEType(text: "text/javascript")
14 |
15 |     public static var imageGif = MIMEType(text: "image/gif")
   |                       |- warning: static property 'imageGif' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageGif' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageGif' with '@MainActor' 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 |     public static var imagePng = MIMEType(text: "image/png")
17 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:16:23: warning: static property 'imagePng' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 |     public static var imageGif = MIMEType(text: "image/gif")
16 |     public static var imagePng = MIMEType(text: "image/png")
   |                       |- warning: static property 'imagePng' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imagePng' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imagePng' with '@MainActor' 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 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
18 |     public static var imageBmp = MIMEType(text: "image/bmp")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:17:23: warning: static property 'imageJpeg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     public static var imageGif = MIMEType(text: "image/gif")
16 |     public static var imagePng = MIMEType(text: "image/png")
17 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
   |                       |- warning: static property 'imageJpeg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageJpeg' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageJpeg' with '@MainActor' 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 |     public static var imageBmp = MIMEType(text: "image/bmp")
19 |     public static var imageWebp = MIMEType(text: "image/webp")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:18:23: warning: static property 'imageBmp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     public static var imagePng = MIMEType(text: "image/png")
17 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
18 |     public static var imageBmp = MIMEType(text: "image/bmp")
   |                       |- warning: static property 'imageBmp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageBmp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageBmp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     public static var imageWebp = MIMEType(text: "image/webp")
20 |     public static var imageSvgXml = MIMEType(text: "image/svg+xml")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:19:23: warning: static property 'imageWebp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     public static var imageJpeg = MIMEType(text: "image/jpeg")
18 |     public static var imageBmp = MIMEType(text: "image/bmp")
19 |     public static var imageWebp = MIMEType(text: "image/webp")
   |                       |- warning: static property 'imageWebp' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageWebp' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageWebp' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static var imageSvgXml = MIMEType(text: "image/svg+xml")
21 |
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:20:23: warning: static property 'imageSvgXml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
18 |     public static var imageBmp = MIMEType(text: "image/bmp")
19 |     public static var imageWebp = MIMEType(text: "image/webp")
20 |     public static var imageSvgXml = MIMEType(text: "image/svg+xml")
   |                       |- warning: static property 'imageSvgXml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'imageSvgXml' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'imageSvgXml' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     public static var audioAudio = MIMEType(text: "audio/midi")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:22:23: warning: static property 'audioAudio' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |     public static var imageSvgXml = MIMEType(text: "image/svg+xml")
21 |
22 |     public static var audioAudio = MIMEType(text: "audio/midi")
   |                       |- warning: static property 'audioAudio' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioAudio' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioAudio' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static var audioMpeg = MIMEType(text: "audio/mpeg")
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:23:23: warning: static property 'audioMpeg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
21 |
22 |     public static var audioAudio = MIMEType(text: "audio/midi")
23 |     public static var audioMpeg = MIMEType(text: "audio/mpeg")
   |                       |- warning: static property 'audioMpeg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioMpeg' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioMpeg' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
25 |     public static var audioOgg = MIMEType(text: "audio/ogg")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:24:23: warning: static property 'audioWebm' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
22 |     public static var audioAudio = MIMEType(text: "audio/midi")
23 |     public static var audioMpeg = MIMEType(text: "audio/mpeg")
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
   |                       |- warning: static property 'audioWebm' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioWebm' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioWebm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static var audioOgg = MIMEType(text: "audio/ogg")
26 |     public static var audioWav = MIMEType(text: "audio/wav")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:25:23: warning: static property 'audioOgg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
23 |     public static var audioMpeg = MIMEType(text: "audio/mpeg")
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
25 |     public static var audioOgg = MIMEType(text: "audio/ogg")
   |                       |- warning: static property 'audioOgg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioOgg' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioOgg' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static var audioWav = MIMEType(text: "audio/wav")
27 |
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:26:23: warning: static property 'audioWav' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
24 |     public static var audioWebm = MIMEType(text: "audio/webm")
25 |     public static var audioOgg = MIMEType(text: "audio/ogg")
26 |     public static var audioWav = MIMEType(text: "audio/wav")
   |                       |- warning: static property 'audioWav' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'audioWav' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'audioWav' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     public static var videoWebm = MIMEType(text: "video/webm")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:28:23: warning: static property 'videoWebm' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
26 |     public static var audioWav = MIMEType(text: "audio/wav")
27 |
28 |     public static var videoWebm = MIMEType(text: "video/webm")
   |                       |- warning: static property 'videoWebm' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'videoWebm' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'videoWebm' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static var videoOgg = MIMEType(text: "video/ogg")
30 |
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:29:23: warning: static property 'videoOgg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 |     public static var videoWebm = MIMEType(text: "video/webm")
29 |     public static var videoOgg = MIMEType(text: "video/ogg")
   |                       |- warning: static property 'videoOgg' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'videoOgg' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'videoOgg' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     public static var applicationOctetStream = MIMEType(text: "application/octet-stream")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:31:23: warning: static property 'applicationOctetStream' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     public static var videoOgg = MIMEType(text: "video/ogg")
30 |
31 |     public static var applicationOctetStream = MIMEType(text: "application/octet-stream")
   |                       |- warning: static property 'applicationOctetStream' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'applicationOctetStream' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'applicationOctetStream' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static var applicationXml = MIMEType(text: "application/xml")
33 |     public static var applicationJson = MIMEType(text: "application/json")
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:32:23: warning: static property 'applicationXml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     public static var applicationOctetStream = MIMEType(text: "application/octet-stream")
32 |     public static var applicationXml = MIMEType(text: "application/xml")
   |                       |- warning: static property 'applicationXml' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'applicationXml' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'applicationXml' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static var applicationJson = MIMEType(text: "application/json")
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/MultipartFormDataKit/MIMEType.swift:33:23: warning: static property 'applicationJson' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
31 |     public static var applicationOctetStream = MIMEType(text: "application/octet-stream")
32 |     public static var applicationXml = MIMEType(text: "application/xml")
33 |     public static var applicationJson = MIMEType(text: "application/json")
   |                       |- warning: static property 'applicationJson' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'applicationJson' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'applicationJson' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | }
[15/15] Compiling MultipartFormDataKit ValidationResult.swift
Build complete! (21.78s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "MultipartFormDataKit",
  "name" : "MultipartFormDataKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "MultipartFormDataKit",
      "targets" : [
        "MultipartFormDataKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MultipartFormDataKitTests",
      "module_type" : "SwiftTarget",
      "name" : "MultipartFormDataKitTests",
      "path" : "Tests/MultipartFormDataKitTests",
      "sources" : [
        "CompatibilityTests.swift",
        "ContentDispositionTests.swift",
        "ContentTypeTests.swift",
        "FilenameTests.swift",
        "MultipartFormDataBuilderTests.swift",
        "MultipartFormDataTests.swift",
        "NameTests.swift"
      ],
      "target_dependencies" : [
        "MultipartFormDataKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MultipartFormDataKit",
      "module_type" : "SwiftTarget",
      "name" : "MultipartFormDataKit",
      "path" : "Sources/MultipartFormDataKit",
      "product_memberships" : [
        "MultipartFormDataKit"
      ],
      "sources" : [
        "BoundaryGenerator.swift",
        "CRLF.swift",
        "ContentDisposition.swift",
        "ContentType.swift",
        "Dash.swift",
        "Filename.swift",
        "MIMEType.swift",
        "MultipartFormData+Builder.swift",
        "MultipartFormData+Part.swift",
        "MultipartFormData.swift",
        "Name.swift",
        "ValidationResult.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.