Build Information
Successful build of MyNameIsURL, reference v0.5.1 (97c84b), with Swift 6.1 for Wasm on 27 May 2025 12:37:04 UTC.
Swift 6 data race errors: 15
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jemmons/MyNameIsURL.git
Reference: v0.5.1
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/jemmons/MyNameIsURL
* tag v0.5.1 -> FETCH_HEAD
HEAD is now at 97c84bf Adds a CFBundleVersion key to info.plist
Cloned https://github.com/jemmons/MyNameIsURL.git
Revision (git rev-parse @):
97c84bfa48060ce3860004126b3e7a77c91b1459
SUCCESS checkout https://github.com/jemmons/MyNameIsURL.git at v0.5.1
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/jemmons/MyNameIsURL.git
https://github.com/jemmons/MyNameIsURL.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "MyNameIsURL",
"name" : "MyNameIsURL",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "MyNameIsURL",
"targets" : [
"MyNameIsURL"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MyNameIsURLTests",
"module_type" : "SwiftTarget",
"name" : "MyNameIsURLTests",
"path" : "Tests/MyNameIsURLTests",
"sources" : [
"AndTests.swift",
"DomainTests.swift",
"HostSuffixTests.swift",
"HostTests.swift",
"NotTests.swift",
"OrTests.swift",
"PasswordTests.swift",
"PathPrefixTests.swift",
"PathTests.swift",
"PatternOperatorTests.swift",
"PortTests.swift",
"SchemeTests.swift",
"Support/Factory+DomainName.swift",
"Support/Factory+Host.swift",
"Support/Factory+HostSuffix.swift",
"Support/Factory+Password.swift",
"Support/Factory+Path.swift",
"Support/Factory+PathPrefix.swift",
"Support/Factory+Port.swift",
"Support/Factory+Scheme.swift",
"Support/Factory+User.swift",
"Support/Factory.swift",
"URLSchemeTests.swift",
"UserTests.swift"
],
"target_dependencies" : [
"MyNameIsURL"
],
"type" : "test"
},
{
"c99name" : "MyNameIsURL",
"module_type" : "SwiftTarget",
"name" : "MyNameIsURL",
"path" : "Sources/MyNameIsURL",
"product_memberships" : [
"MyNameIsURL"
],
"sources" : [
"Extensions/String+HostComponents.swift",
"Extensions/URL+Scheme.swift",
"Matchers/And.swift",
"Matchers/Host.swift",
"Matchers/HostSuffix.swift",
"Matchers/Not.swift",
"Matchers/Or.swift",
"Matchers/Password.swift",
"Matchers/Path.swift",
"Matchers/PathPrefix.swift",
"Matchers/Port.swift",
"Matchers/Scheme+URLMatchable.swift",
"Matchers/URLMatchable.swift",
"Matchers/User.swift",
"Types/Domain.swift",
"Types/PathComponent.swift",
"Types/Scheme.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:059e0fdbe549369b902c0d423739510ddee50a4a70258d1404125eb9394ef31c
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/18] Emitting module MyNameIsURL
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Host.swift:36:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
34 | ```
35 | */
36 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Password.swift:45:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ```
44 | */
45 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Path.swift:38:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
36 | ```
37 | */
38 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Port.swift:33:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
31 | ```
32 | */
33 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/User.swift:45:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ```
44 | */
45 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Domain.swift:83:22: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private enum Helper {
83 | private static var invalidCharacters: CharacterSet = {
| |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let validCharacters = CharacterSet(charactersIn: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLKMNOPQRSTUVWXYZ0123456789-")
85 | return validCharacters.inverted
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:42:21: warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
40 |
41 | /// Convienience for http scheme.
42 | public static let http = try! Scheme("http")
| |- warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'http' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | /// Convienience for https scheme.
44 | public static let https = try! Scheme("https")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:44:21: warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
42 | public static let http = try! Scheme("http")
43 | /// Convienience for https scheme.
44 | public static let https = try! Scheme("https")
| |- warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'https' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | /// Convienience for tel scheme.
46 | public static let tel = try! Scheme("tel")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:46:21: warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
44 | public static let https = try! Scheme("https")
45 | /// Convienience for tel scheme.
46 | public static let tel = try! Scheme("tel")
| |- warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | /// Convienience for telPrompt scheme.
48 | public static let telprompt = try! Scheme("telprompt")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:48:21: warning: static property 'telprompt' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
46 | public static let tel = try! Scheme("tel")
47 | /// Convienience for telPrompt scheme.
48 | public static let telprompt = try! Scheme("telprompt")
| |- warning: static property 'telprompt' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'telprompt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | /// Convienience for sms scheme.
50 | public static let sms = try! Scheme("sms")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:50:21: warning: static property 'sms' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
48 | public static let telprompt = try! Scheme("telprompt")
49 | /// Convienience for sms scheme.
50 | public static let sms = try! Scheme("sms")
| |- warning: static property 'sms' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sms' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | /// Convienience for mailto scheme.
52 | public static let mailto = try! Scheme("mailto")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:52:21: warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
50 | public static let sms = try! Scheme("sms")
51 | /// Convienience for mailto scheme.
52 | public static let mailto = try! Scheme("mailto")
| |- warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'mailto' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | /// Convienience for webcal scheme.
54 | public static let webcal = try! Scheme("webcal")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:54:21: warning: static property 'webcal' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
52 | public static let mailto = try! Scheme("mailto")
53 | /// Convienience for webcal scheme.
54 | public static let webcal = try! Scheme("webcal")
| |- warning: static property 'webcal' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'webcal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | /// Convienience for file scheme.
56 | public static let file = try! Scheme("file")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:56:21: warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
54 | public static let webcal = try! Scheme("webcal")
55 | /// Convienience for file scheme.
56 | public static let file = try! Scheme("file")
| |- warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'file' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | /// Convienience for ftp scheme.
58 | public static let ftp = try! Scheme("ftp")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:58:21: warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
56 | public static let file = try! Scheme("file")
57 | /// Convienience for ftp scheme.
58 | public static let ftp = try! Scheme("ftp")
| |- warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ftp' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 |
[4/20] Compiling MyNameIsURL String+HostComponents.swift
[5/20] Compiling MyNameIsURL URL+Scheme.swift
[6/20] Compiling MyNameIsURL And.swift
[7/20] Compiling MyNameIsURL PathComponent.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:42:21: warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
40 |
41 | /// Convienience for http scheme.
42 | public static let http = try! Scheme("http")
| |- warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'http' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | /// Convienience for https scheme.
44 | public static let https = try! Scheme("https")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:44:21: warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
42 | public static let http = try! Scheme("http")
43 | /// Convienience for https scheme.
44 | public static let https = try! Scheme("https")
| |- warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'https' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | /// Convienience for tel scheme.
46 | public static let tel = try! Scheme("tel")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:46:21: warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
44 | public static let https = try! Scheme("https")
45 | /// Convienience for tel scheme.
46 | public static let tel = try! Scheme("tel")
| |- warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | /// Convienience for telPrompt scheme.
48 | public static let telprompt = try! Scheme("telprompt")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:48:21: warning: static property 'telprompt' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
46 | public static let tel = try! Scheme("tel")
47 | /// Convienience for telPrompt scheme.
48 | public static let telprompt = try! Scheme("telprompt")
| |- warning: static property 'telprompt' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'telprompt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | /// Convienience for sms scheme.
50 | public static let sms = try! Scheme("sms")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:50:21: warning: static property 'sms' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
48 | public static let telprompt = try! Scheme("telprompt")
49 | /// Convienience for sms scheme.
50 | public static let sms = try! Scheme("sms")
| |- warning: static property 'sms' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sms' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | /// Convienience for mailto scheme.
52 | public static let mailto = try! Scheme("mailto")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:52:21: warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
50 | public static let sms = try! Scheme("sms")
51 | /// Convienience for mailto scheme.
52 | public static let mailto = try! Scheme("mailto")
| |- warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'mailto' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | /// Convienience for webcal scheme.
54 | public static let webcal = try! Scheme("webcal")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:54:21: warning: static property 'webcal' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
52 | public static let mailto = try! Scheme("mailto")
53 | /// Convienience for webcal scheme.
54 | public static let webcal = try! Scheme("webcal")
| |- warning: static property 'webcal' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'webcal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | /// Convienience for file scheme.
56 | public static let file = try! Scheme("file")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:56:21: warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
54 | public static let webcal = try! Scheme("webcal")
55 | /// Convienience for file scheme.
56 | public static let file = try! Scheme("file")
| |- warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'file' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | /// Convienience for ftp scheme.
58 | public static let ftp = try! Scheme("ftp")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:58:21: warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
56 | public static let file = try! Scheme("file")
57 | /// Convienience for ftp scheme.
58 | public static let ftp = try! Scheme("ftp")
| |- warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ftp' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 |
[8/20] Compiling MyNameIsURL Scheme.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:42:21: warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
40 |
41 | /// Convienience for http scheme.
42 | public static let http = try! Scheme("http")
| |- warning: static property 'http' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'http' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | /// Convienience for https scheme.
44 | public static let https = try! Scheme("https")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:44:21: warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
42 | public static let http = try! Scheme("http")
43 | /// Convienience for https scheme.
44 | public static let https = try! Scheme("https")
| |- warning: static property 'https' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'https' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | /// Convienience for tel scheme.
46 | public static let tel = try! Scheme("tel")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:46:21: warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
44 | public static let https = try! Scheme("https")
45 | /// Convienience for tel scheme.
46 | public static let tel = try! Scheme("tel")
| |- warning: static property 'tel' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | /// Convienience for telPrompt scheme.
48 | public static let telprompt = try! Scheme("telprompt")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:48:21: warning: static property 'telprompt' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
46 | public static let tel = try! Scheme("tel")
47 | /// Convienience for telPrompt scheme.
48 | public static let telprompt = try! Scheme("telprompt")
| |- warning: static property 'telprompt' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'telprompt' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | /// Convienience for sms scheme.
50 | public static let sms = try! Scheme("sms")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:50:21: warning: static property 'sms' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
48 | public static let telprompt = try! Scheme("telprompt")
49 | /// Convienience for sms scheme.
50 | public static let sms = try! Scheme("sms")
| |- warning: static property 'sms' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sms' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | /// Convienience for mailto scheme.
52 | public static let mailto = try! Scheme("mailto")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:52:21: warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
50 | public static let sms = try! Scheme("sms")
51 | /// Convienience for mailto scheme.
52 | public static let mailto = try! Scheme("mailto")
| |- warning: static property 'mailto' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'mailto' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | /// Convienience for webcal scheme.
54 | public static let webcal = try! Scheme("webcal")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:54:21: warning: static property 'webcal' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
52 | public static let mailto = try! Scheme("mailto")
53 | /// Convienience for webcal scheme.
54 | public static let webcal = try! Scheme("webcal")
| |- warning: static property 'webcal' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'webcal' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | /// Convienience for file scheme.
56 | public static let file = try! Scheme("file")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:56:21: warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
54 | public static let webcal = try! Scheme("webcal")
55 | /// Convienience for file scheme.
56 | public static let file = try! Scheme("file")
| |- warning: static property 'file' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'file' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | /// Convienience for ftp scheme.
58 | public static let ftp = try! Scheme("ftp")
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Scheme.swift:58:21: warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
8 | The `value` property of a `Scheme` should be considered safe for use in contexts which require a valid scheme name, as any invalid scheme formulations would be rejected by the contructor.
9 | */
10 | public struct Scheme: Equatable {
| `- note: consider making struct 'Scheme' conform to the 'Sendable' protocol
11 | /// Scheme format errors.
12 | public enum Format: LocalizedError {
:
56 | public static let file = try! Scheme("file")
57 | /// Convienience for ftp scheme.
58 | public static let ftp = try! Scheme("ftp")
| |- warning: static property 'ftp' is not concurrency-safe because non-'Sendable' type 'Scheme' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'ftp' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 |
60 |
[9/20] Compiling MyNameIsURL Password.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Password.swift:45:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ```
44 | */
45 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Path.swift:38:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
36 | ```
37 | */
38 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
[10/20] Compiling MyNameIsURL Path.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Password.swift:45:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ```
44 | */
45 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Path.swift:38:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
36 | ```
37 | */
38 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
[11/20] Compiling MyNameIsURL Host.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Host.swift:36:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
34 | ```
35 | */
36 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
[12/20] Compiling MyNameIsURL HostSuffix.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Host.swift:36:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
34 | ```
35 | */
36 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
[13/20] Compiling MyNameIsURL PathPrefix.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Port.swift:33:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
31 | ```
32 | */
33 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
[14/20] Compiling MyNameIsURL Port.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/Port.swift:33:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
31 | ```
32 | */
33 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
[15/20] Compiling MyNameIsURL Not.swift
[16/20] Compiling MyNameIsURL Or.swift
[17/20] Compiling MyNameIsURL Scheme+URLMatchable.swift
[18/20] Compiling MyNameIsURL URLMatchable.swift
[19/20] Compiling MyNameIsURL User.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/User.swift:45:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ```
44 | */
45 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Domain.swift:83:22: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private enum Helper {
83 | private static var invalidCharacters: CharacterSet = {
| |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let validCharacters = CharacterSet(charactersIn: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLKMNOPQRSTUVWXYZ0123456789-")
85 | return validCharacters.inverted
[20/20] Compiling MyNameIsURL Domain.swift
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/User.swift:45:21: warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
43 | ```
44 | */
45 | public static let missing: URLMatchable = Missing()
| |- warning: static property 'missing' is not concurrency-safe because non-'Sendable' type 'any URLMatchable' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'missing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 |
/host/spi-builder-workspace/Sources/MyNameIsURL/Matchers/URLMatchable.swift:8:17: note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
6 | Conforming types define a predicate capable of matching a given `URL` (or not).
7 | */
8 | public protocol URLMatchable {
| `- note: protocol 'URLMatchable' does not conform to the 'Sendable' protocol
9 | /**
10 | A predicate that determines whether a conforming type matches the given `URL`.
/host/spi-builder-workspace/Sources/MyNameIsURL/Types/Domain.swift:83:22: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private enum Helper {
83 | private static var invalidCharacters: CharacterSet = {
| |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let validCharacters = CharacterSet(charactersIn: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLKMNOPQRSTUVWXYZ0123456789-")
85 | return validCharacters.inverted
Build complete! (6.74s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "MyNameIsURL",
"name" : "MyNameIsURL",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "MyNameIsURL",
"targets" : [
"MyNameIsURL"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MyNameIsURLTests",
"module_type" : "SwiftTarget",
"name" : "MyNameIsURLTests",
"path" : "Tests/MyNameIsURLTests",
"sources" : [
"AndTests.swift",
"DomainTests.swift",
"HostSuffixTests.swift",
"HostTests.swift",
"NotTests.swift",
"OrTests.swift",
"PasswordTests.swift",
"PathPrefixTests.swift",
"PathTests.swift",
"PatternOperatorTests.swift",
"PortTests.swift",
"SchemeTests.swift",
"Support/Factory+DomainName.swift",
"Support/Factory+Host.swift",
"Support/Factory+HostSuffix.swift",
"Support/Factory+Password.swift",
"Support/Factory+Path.swift",
"Support/Factory+PathPrefix.swift",
"Support/Factory+Port.swift",
"Support/Factory+Scheme.swift",
"Support/Factory+User.swift",
"Support/Factory.swift",
"URLSchemeTests.swift",
"UserTests.swift"
],
"target_dependencies" : [
"MyNameIsURL"
],
"type" : "test"
},
{
"c99name" : "MyNameIsURL",
"module_type" : "SwiftTarget",
"name" : "MyNameIsURL",
"path" : "Sources/MyNameIsURL",
"product_memberships" : [
"MyNameIsURL"
],
"sources" : [
"Extensions/String+HostComponents.swift",
"Extensions/URL+Scheme.swift",
"Matchers/And.swift",
"Matchers/Host.swift",
"Matchers/HostSuffix.swift",
"Matchers/Not.swift",
"Matchers/Or.swift",
"Matchers/Password.swift",
"Matchers/Path.swift",
"Matchers/PathPrefix.swift",
"Matchers/Port.swift",
"Matchers/Scheme+URLMatchable.swift",
"Matchers/URLMatchable.swift",
"Matchers/User.swift",
"Types/Domain.swift",
"Types/PathComponent.swift",
"Types/Scheme.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:059e0fdbe549369b902c0d423739510ddee50a4a70258d1404125eb9394ef31c
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.