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

Failed to build MarkdownChildrenKit with Swift 6.0 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ptrkstr/MarkdownChildrenKit.git
Reference: develop
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/ptrkstr/MarkdownChildrenKit
 * branch            develop    -> FETCH_HEAD
 * [new branch]      develop    -> origin/develop
HEAD is now at 4b8c36a Create FUNDING.yml
Cloned https://github.com/ptrkstr/MarkdownChildrenKit.git
Revision (git rev-parse @):
4b8c36a4410c8fcc97bda95f5c5b0f1746af9592
SUCCESS checkout https://github.com/ptrkstr/MarkdownChildrenKit.git at develop
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/ptrkstr/MarkdownChildrenKit.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/16] Compiling MarkdownChildrenKit ListItem.swift
[4/16] Compiling MarkdownChildrenKit ListItemDirectory.swift
[5/17] Compiling MarkdownChildrenKit StringSaver.swift
[6/17] Compiling MarkdownChildrenKit ListItemMarkdown.swift
[7/17] Compiling MarkdownChildrenKit ListItemMarkdownNameType.swift
[8/17] Compiling MarkdownChildrenKit Markdown.swift
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:20:10: warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
18 |
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 |     case unableToSearchInDirectory(EquatableURL)
   |          `- warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:21:10: warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 |     case unableToSearchInDirectory(EquatableURL)
21 |     case unableToReadMarkdownFile(EquatableURL)
   |          `- warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:22:10: warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
20 |     case unableToSearchInDirectory(EquatableURL)
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
   |          `- warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:23:10: warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
   |          `- warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:24:10: warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
   |          `- warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
25 |     case noFileExists(EquatableURL)
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:25:10: warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
   |          `- warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
27 |
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:26:10: warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
   |          `- warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
27 |
28 |     var description: String {
[9/17] Compiling MarkdownChildrenKit MarkdownChildrenError.swift
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:20:10: warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
18 |
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 |     case unableToSearchInDirectory(EquatableURL)
   |          `- warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:21:10: warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 |     case unableToSearchInDirectory(EquatableURL)
21 |     case unableToReadMarkdownFile(EquatableURL)
   |          `- warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:22:10: warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
20 |     case unableToSearchInDirectory(EquatableURL)
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
   |          `- warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:23:10: warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
   |          `- warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:24:10: warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
   |          `- warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
25 |     case noFileExists(EquatableURL)
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:25:10: warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
   |          `- warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
27 |
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:26:10: warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
   |          `- warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
27 |
28 |     var description: String {
[10/17] Compiling MarkdownChildrenKit Renderer.swift
[11/17] Compiling MarkdownChildrenKit StringProtocol+Extensions.swift
[12/17] Compiling MarkdownChildrenKit MarkdownChildren.swift
[13/17] Compiling MarkdownChildrenKit URL+Extensions.swift
[14/17] Compiling MarkdownChildrenKit Array+Extensions.swift
[15/17] Emitting module MarkdownChildrenKit
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:20:10: warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
18 |
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 |     case unableToSearchInDirectory(EquatableURL)
   |          `- warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:21:10: warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 |     case unableToSearchInDirectory(EquatableURL)
21 |     case unableToReadMarkdownFile(EquatableURL)
   |          `- warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:22:10: warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
20 |     case unableToSearchInDirectory(EquatableURL)
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
   |          `- warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:23:10: warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
21 |     case unableToReadMarkdownFile(EquatableURL)
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
   |          `- warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:24:10: warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
22 |     case directoryIsEmpty(EquatableURL)
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
   |          `- warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
25 |     case noFileExists(EquatableURL)
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:25:10: warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
23 |     case missingH1WhenExpected(EquatableURL)
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
   |          `- warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
27 |
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:26:10: warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
 5 | /// We want to make use of enum associated value equality checking
 6 | /// so will use our own URL type.
 7 | public struct EquatableURL: Equatable, CustomStringConvertible {
   |               `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
 8 |     public let url: URL
 9 |
   :
24 |     case missingTagInMarkdown(tag: String, EquatableURL)
25 |     case noFileExists(EquatableURL)
26 |     case directorySpecifiedInsteadOfFile(EquatableURL)
   |          `- warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
27 |
28 |     var description: String {
[16/17] Compiling MarkdownChildrenKit Configuration.swift
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/List/List.swift:27:43: error: type 'FileManager.DirectoryEnumerationOptions' has no member 'producesRelativePathURLs'
25 |             at: directory,
26 |             includingPropertiesForKeys: [.isDirectoryKey],
27 |             options: [.skipsHiddenFiles, .producesRelativePathURLs]
   |                                           `- error: type 'FileManager.DirectoryEnumerationOptions' has no member 'producesRelativePathURLs'
28 |         ) else {
29 |             throw MarkdownChildrenError.unableToSearchInDirectory(.init(url: directory))
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/List/List.swift:32:9: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
30 |         }
31 |
32 |         items = try enumerator
   |         `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
33 |             .compactMap {
34 |                 try ListItem(url: $0 as! URL)
[17/17] Compiling MarkdownChildrenKit List.swift
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/List/List.swift:27:43: error: type 'FileManager.DirectoryEnumerationOptions' has no member 'producesRelativePathURLs'
25 |             at: directory,
26 |             includingPropertiesForKeys: [.isDirectoryKey],
27 |             options: [.skipsHiddenFiles, .producesRelativePathURLs]
   |                                           `- error: type 'FileManager.DirectoryEnumerationOptions' has no member 'producesRelativePathURLs'
28 |         ) else {
29 |             throw MarkdownChildrenError.unableToSearchInDirectory(.init(url: directory))
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/List/List.swift:32:9: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
30 |         }
31 |
32 |         items = try enumerator
   |         `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
33 |             .compactMap {
34 |                 try ListItem(url: $0 as! URL)
BUILD FAILURE 6.0 linux
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.