The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of MapboxDirections, reference v2.14.2 (9de43d), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 9 Jul 2025 16:16:07 UTC.

Swift 6 data race errors: 101

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme MapboxDirections-Package -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:23:23: note: add '@MainActor' to make static property 'slightRight' part of global actor 'MainActor'
    public static let slightRight = LaneIndication(rawValue: 1 << 3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let slightRight = LaneIndication(rawValue: 1 << 3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:26:23: warning: static property 'straightAhead' is not concurrency-safe because non-'Sendable' type 'LaneIndication' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let straightAhead = LaneIndication(rawValue: 1 << 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
public struct LaneIndication: OptionSet, CustomStringConvertible {
              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:26:23: note: add '@MainActor' to make static property 'straightAhead' part of global actor 'MainActor'
    public static let straightAhead = LaneIndication(rawValue: 1 << 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let straightAhead = LaneIndication(rawValue: 1 << 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:29:23: warning: static property 'slightLeft' is not concurrency-safe because non-'Sendable' type 'LaneIndication' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let slightLeft = LaneIndication(rawValue: 1 << 5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
public struct LaneIndication: OptionSet, CustomStringConvertible {
              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:29:23: note: add '@MainActor' to make static property 'slightLeft' part of global actor 'MainActor'
    public static let slightLeft = LaneIndication(rawValue: 1 << 5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let slightLeft = LaneIndication(rawValue: 1 << 5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:32:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'LaneIndication' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let left = LaneIndication(rawValue: 1 << 6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
public struct LaneIndication: OptionSet, CustomStringConvertible {
              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:32:23: note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
    public static let left = LaneIndication(rawValue: 1 << 6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let left = LaneIndication(rawValue: 1 << 6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:35:23: warning: static property 'sharpLeft' is not concurrency-safe because non-'Sendable' type 'LaneIndication' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let sharpLeft = LaneIndication(rawValue: 1 << 7)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
public struct LaneIndication: OptionSet, CustomStringConvertible {
              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:35:23: note: add '@MainActor' to make static property 'sharpLeft' part of global actor 'MainActor'
    public static let sharpLeft = LaneIndication(rawValue: 1 << 7)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let sharpLeft = LaneIndication(rawValue: 1 << 7)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:38:23: warning: static property 'uTurn' is not concurrency-safe because non-'Sendable' type 'LaneIndication' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let uTurn = LaneIndication(rawValue: 1 << 8)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
public struct LaneIndication: OptionSet, CustomStringConvertible {
              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:38:23: note: add '@MainActor' to make static property 'uTurn' part of global actor 'MainActor'
    public static let uTurn = LaneIndication(rawValue: 1 << 8)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let uTurn = LaneIndication(rawValue: 1 << 8)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift:21:16: warning: stored property 'matches' of 'Sendable'-conforming struct 'MapMatchingResponse' has non-sendable type '[Match]?'; this is an error in the Swift 6 language mode
    public var matches : [Match]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Match.swift:45:12: note: class 'Match' does not conform to the 'Sendable' protocol
open class Match: DirectionsResult {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift:27:16: warning: stored property 'tracepoints' of 'Sendable'-conforming struct 'MapMatchingResponse' has non-sendable type '[Tracepoint?]?'; this is an error in the Swift 6 language mode
    public var tracepoints: [Tracepoint?]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift:7:14: note: class 'Tracepoint' does not conform to the 'Sendable' protocol
public class Tracepoint: Waypoint {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift:32:16: warning: stored property 'options' of 'Sendable'-conforming struct 'MapMatchingResponse' has non-sendable type 'MatchOptions'; this is an error in the Swift 6 language mode
    public let options: MatchOptions
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MapMatchingResponse.swift:37:16: warning: stored property 'credentials' of 'Sendable'-conforming struct 'MapMatchingResponse' has non-sendable type 'Credentials'; this is an error in the Swift 6 language mode
    public let credentials: Credentials
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Match.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling SequenceExtensions.swift, StringExtensions.swift, SwiftExtensions.swift, Tree.swift, CodingKeyValidator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ AdministrativeRegion.swift,\ Amenity.swift,\ AmenityType.swift,\ AttributeOptions.swift,\ BlockedLanes.swift,\ Congestion.swift,\ Credentials.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AdministrativeRegion.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AmenityType.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Congestion.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AdministrativeRegion.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AmenityType.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:28:23: warning: static property 'closures' is not concurrency-safe because non-'Sendable' type 'AttributeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let closures = AttributeOptions(rawValue: 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:8:15: note: consider making struct 'AttributeOptions' conform to the 'Sendable' protocol
public struct AttributeOptions: CustomValueOptionSet, CustomStringConvertible {
              ^
                                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:28:23: note: add '@MainActor' to make static property 'closures' part of global actor 'MainActor'
    public static let closures = AttributeOptions(rawValue: 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let closures = AttributeOptions(rawValue: 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:36:23: warning: static property 'distance' is not concurrency-safe because non-'Sendable' type 'AttributeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let distance = AttributeOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:8:15: note: consider making struct 'AttributeOptions' conform to the 'Sendable' protocol
public struct AttributeOptions: CustomValueOptionSet, CustomStringConvertible {
              ^
                                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:36:23: note: add '@MainActor' to make static property 'distance' part of global actor 'MainActor'
    public static let distance = AttributeOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let distance = AttributeOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:44:23: warning: static property 'expectedTravelTime' is not concurrency-safe because non-'Sendable' type 'AttributeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let expectedTravelTime = AttributeOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:8:15: note: consider making struct 'AttributeOptions' conform to the 'Sendable' protocol
public struct AttributeOptions: CustomValueOptionSet, CustomStringConvertible {
              ^
                                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:44:23: note: add '@MainActor' to make static property 'expectedTravelTime' part of global actor 'MainActor'
    public static let expectedTravelTime = AttributeOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let expectedTravelTime = AttributeOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:51:23: warning: static property 'speed' is not concurrency-safe because non-'Sendable' type 'AttributeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let speed = AttributeOptions(rawValue: 1 << 3)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:8:15: note: consider making struct 'AttributeOptions' conform to the 'Sendable' protocol
public struct AttributeOptions: CustomValueOptionSet, CustomStringConvertible {
              ^
                                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:51:23: note: add '@MainActor' to make static property 'speed' part of global actor 'MainActor'
    public static let speed = AttributeOptions(rawValue: 1 << 3)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let speed = AttributeOptions(rawValue: 1 << 3)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:60:23: warning: static property 'congestionLevel' is not concurrency-safe because non-'Sendable' type 'AttributeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let congestionLevel = AttributeOptions(rawValue: 1 << 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:8:15: note: consider making struct 'AttributeOptions' conform to the 'Sendable' protocol
public struct AttributeOptions: CustomValueOptionSet, CustomStringConvertible {
              ^
                                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:60:23: note: add '@MainActor' to make static property 'congestionLevel' part of global actor 'MainActor'
    public static let congestionLevel = AttributeOptions(rawValue: 1 << 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let congestionLevel = AttributeOptions(rawValue: 1 << 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:67:23: warning: static property 'maximumSpeedLimit' is not concurrency-safe because non-'Sendable' type 'AttributeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let maximumSpeedLimit = AttributeOptions(rawValue: 1 << 5)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:8:15: note: consider making struct 'AttributeOptions' conform to the 'Sendable' protocol
public struct AttributeOptions: CustomValueOptionSet, CustomStringConvertible {
              ^
                                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:67:23: note: add '@MainActor' to make static property 'maximumSpeedLimit' part of global actor 'MainActor'
    public static let maximumSpeedLimit = AttributeOptions(rawValue: 1 << 5)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let maximumSpeedLimit = AttributeOptions(rawValue: 1 << 5)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:76:23: warning: static property 'numericCongestionLevel' is not concurrency-safe because non-'Sendable' type 'AttributeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let numericCongestionLevel = AttributeOptions(rawValue: 1 << 6)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:8:15: note: consider making struct 'AttributeOptions' conform to the 'Sendable' protocol
public struct AttributeOptions: CustomValueOptionSet, CustomStringConvertible {
              ^
                                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:76:23: note: add '@MainActor' to make static property 'numericCongestionLevel' part of global actor 'MainActor'
    public static let numericCongestionLevel = AttributeOptions(rawValue: 1 << 6)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let numericCongestionLevel = AttributeOptions(rawValue: 1 << 6)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:82:23: warning: static property 'trafficTendency' is not concurrency-safe because non-'Sendable' type 'AttributeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let trafficTendency = AttributeOptions(rawValue: 1 << 7)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:8:15: note: consider making struct 'AttributeOptions' conform to the 'Sendable' protocol
public struct AttributeOptions: CustomValueOptionSet, CustomStringConvertible {
              ^
                                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:82:23: note: add '@MainActor' to make static property 'trafficTendency' part of global actor 'MainActor'
    public static let trafficTendency = AttributeOptions(rawValue: 1 << 7)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/AttributeOptions.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let trafficTendency = AttributeOptions(rawValue: 1 << 7)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:19:23: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let left = BlockedLanes(rawValue: 1 << 0, key: "LEFT")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:19:23: note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
    public static let left = BlockedLanes(rawValue: 1 << 0, key: "LEFT")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let left = BlockedLanes(rawValue: 1 << 0, key: "LEFT")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:23:23: warning: static property 'leftCenter' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let leftCenter = BlockedLanes(rawValue: 1 << 1, key: "LEFT CENTER")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:23:23: note: add '@MainActor' to make static property 'leftCenter' part of global actor 'MainActor'
    public static let leftCenter = BlockedLanes(rawValue: 1 << 1, key: "LEFT CENTER")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let leftCenter = BlockedLanes(rawValue: 1 << 1, key: "LEFT CENTER")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:25:23: warning: static property 'leftTurnLane' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let leftTurnLane = BlockedLanes(rawValue: 1 << 2, key: "LEFT TURN LANE")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:25:23: note: add '@MainActor' to make static property 'leftTurnLane' part of global actor 'MainActor'
    public static let leftTurnLane = BlockedLanes(rawValue: 1 << 2, key: "LEFT TURN LANE")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let leftTurnLane = BlockedLanes(rawValue: 1 << 2, key: "LEFT TURN LANE")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:27:23: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let center = BlockedLanes(rawValue: 1 << 3, key: "CENTER")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:27:23: note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
    public static let center = BlockedLanes(rawValue: 1 << 3, key: "CENTER")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let center = BlockedLanes(rawValue: 1 << 3, key: "CENTER")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:29:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let right = BlockedLanes(rawValue: 1 << 4, key: "RIGHT")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:29:23: note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
    public static let right = BlockedLanes(rawValue: 1 << 4, key: "RIGHT")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let right = BlockedLanes(rawValue: 1 << 4, key: "RIGHT")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:33:23: warning: static property 'rightCenter' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let rightCenter = BlockedLanes(rawValue: 1 << 5, key: "RIGHT CENTER")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:33:23: note: add '@MainActor' to make static property 'rightCenter' part of global actor 'MainActor'
    public static let rightCenter = BlockedLanes(rawValue: 1 << 5, key: "RIGHT CENTER")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let rightCenter = BlockedLanes(rawValue: 1 << 5, key: "RIGHT CENTER")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:35:23: warning: static property 'rightTurnLane' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let rightTurnLane = BlockedLanes(rawValue: 1 << 6, key: "RIGHT TURN LANE")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:35:23: note: add '@MainActor' to make static property 'rightTurnLane' part of global actor 'MainActor'
    public static let rightTurnLane = BlockedLanes(rawValue: 1 << 6, key: "RIGHT TURN LANE")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let rightTurnLane = BlockedLanes(rawValue: 1 << 6, key: "RIGHT TURN LANE")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:37:23: warning: static property 'highOccupancyVehicle' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let highOccupancyVehicle = BlockedLanes(rawValue: 1 << 7, key: "HOV")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:37:23: note: add '@MainActor' to make static property 'highOccupancyVehicle' part of global actor 'MainActor'
    public static let highOccupancyVehicle = BlockedLanes(rawValue: 1 << 7, key: "HOV")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let highOccupancyVehicle = BlockedLanes(rawValue: 1 << 7, key: "HOV")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:39:23: warning: static property 'side' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let side = BlockedLanes(rawValue: 1 << 8, key: "SIDE")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:39:23: note: add '@MainActor' to make static property 'side' part of global actor 'MainActor'
    public static let side = BlockedLanes(rawValue: 1 << 8, key: "SIDE")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let side = BlockedLanes(rawValue: 1 << 8, key: "SIDE")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:41:23: warning: static property 'shoulder' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shoulder = BlockedLanes(rawValue: 1 << 9, key: "SHOULDER")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:41:23: note: add '@MainActor' to make static property 'shoulder' part of global actor 'MainActor'
    public static let shoulder = BlockedLanes(rawValue: 1 << 9, key: "SHOULDER")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shoulder = BlockedLanes(rawValue: 1 << 9, key: "SHOULDER")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:43:23: warning: static property 'median' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let median = BlockedLanes(rawValue: 1 << 10, key: "MEDIAN")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:43:23: note: add '@MainActor' to make static property 'median' part of global actor 'MainActor'
    public static let median = BlockedLanes(rawValue: 1 << 10, key: "MEDIAN")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let median = BlockedLanes(rawValue: 1 << 10, key: "MEDIAN")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:45:23: warning: static property 'lane1' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane1 = BlockedLanes(rawValue: 1 << 11, key: "1")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:45:23: note: add '@MainActor' to make static property 'lane1' part of global actor 'MainActor'
    public static let lane1 = BlockedLanes(rawValue: 1 << 11, key: "1")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane1 = BlockedLanes(rawValue: 1 << 11, key: "1")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:47:23: warning: static property 'lane2' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane2 = BlockedLanes(rawValue: 1 << 12, key: "2")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:47:23: note: add '@MainActor' to make static property 'lane2' part of global actor 'MainActor'
    public static let lane2 = BlockedLanes(rawValue: 1 << 12, key: "2")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane2 = BlockedLanes(rawValue: 1 << 12, key: "2")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:49:23: warning: static property 'lane3' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane3 = BlockedLanes(rawValue: 1 << 13, key: "3")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:49:23: note: add '@MainActor' to make static property 'lane3' part of global actor 'MainActor'
    public static let lane3 = BlockedLanes(rawValue: 1 << 13, key: "3")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane3 = BlockedLanes(rawValue: 1 << 13, key: "3")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:51:23: warning: static property 'lane4' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane4 = BlockedLanes(rawValue: 1 << 14, key: "4")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:51:23: note: add '@MainActor' to make static property 'lane4' part of global actor 'MainActor'
    public static let lane4 = BlockedLanes(rawValue: 1 << 14, key: "4")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane4 = BlockedLanes(rawValue: 1 << 14, key: "4")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:53:23: warning: static property 'lane5' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane5 = BlockedLanes(rawValue: 1 << 15, key: "5")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:53:23: note: add '@MainActor' to make static property 'lane5' part of global actor 'MainActor'
    public static let lane5 = BlockedLanes(rawValue: 1 << 15, key: "5")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane5 = BlockedLanes(rawValue: 1 << 15, key: "5")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:55:23: warning: static property 'lane6' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane6 = BlockedLanes(rawValue: 1 << 16, key: "6")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:55:23: note: add '@MainActor' to make static property 'lane6' part of global actor 'MainActor'
    public static let lane6 = BlockedLanes(rawValue: 1 << 16, key: "6")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane6 = BlockedLanes(rawValue: 1 << 16, key: "6")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:57:23: warning: static property 'lane7' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane7 = BlockedLanes(rawValue: 1 << 17, key: "7")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:57:23: note: add '@MainActor' to make static property 'lane7' part of global actor 'MainActor'
    public static let lane7 = BlockedLanes(rawValue: 1 << 17, key: "7")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane7 = BlockedLanes(rawValue: 1 << 17, key: "7")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:59:23: warning: static property 'lane8' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane8 = BlockedLanes(rawValue: 1 << 18, key: "8")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:59:23: note: add '@MainActor' to make static property 'lane8' part of global actor 'MainActor'
    public static let lane8 = BlockedLanes(rawValue: 1 << 18, key: "8")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane8 = BlockedLanes(rawValue: 1 << 18, key: "8")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:61:23: warning: static property 'lane9' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane9 = BlockedLanes(rawValue: 1 << 19, key: "9")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:61:23: note: add '@MainActor' to make static property 'lane9' part of global actor 'MainActor'
    public static let lane9 = BlockedLanes(rawValue: 1 << 19, key: "9")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane9 = BlockedLanes(rawValue: 1 << 19, key: "9")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:63:23: warning: static property 'lane10' is not concurrency-safe because non-'Sendable' type 'BlockedLanes' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lane10 = BlockedLanes(rawValue: 1 << 20, key: "10")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
public struct BlockedLanes: OptionSet, CustomStringConvertible {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:63:23: note: add '@MainActor' to make static property 'lane10' part of global actor 'MainActor'
    public static let lane10 = BlockedLanes(rawValue: 1 << 20, key: "10")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lane10 = BlockedLanes(rawValue: 1 << 20, key: "10")
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Congestion.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ParsableCommand.swift, ArgumentDecoder.swift, ArgumentDefinition.swift, ArgumentSet.swift, CommandParser.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ ProfileIdentifier.swift,\ QuickLook.swift,\ RefreshedRoute.swift,\ ResponseDisposition.swift,\ RestStop.swift,\ RoadClassExclusionViolation.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/QuickLook.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RefreshedRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ResponseDisposition.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClassExclusionViolation.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:18:23: warning: static property 'automobile' is not concurrency-safe because non-'Sendable' type 'ProfileIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let automobile: ProfileIdentifier = .init(rawValue: "mapbox/driving")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:6:15: note: consider making struct 'ProfileIdentifier' conform to the 'Sendable' protocol
public struct ProfileIdentifier: Codable, Hashable, RawRepresentable {
              ^
                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:18:23: note: add '@MainActor' to make static property 'automobile' part of global actor 'MainActor'
    public static let automobile: ProfileIdentifier = .init(rawValue: "mapbox/driving")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let automobile: ProfileIdentifier = .init(rawValue: "mapbox/driving")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:29:23: warning: static property 'automobileAvoidingTraffic' is not concurrency-safe because non-'Sendable' type 'ProfileIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let automobileAvoidingTraffic: ProfileIdentifier = .init(rawValue: "mapbox/driving-traffic")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:6:15: note: consider making struct 'ProfileIdentifier' conform to the 'Sendable' protocol
public struct ProfileIdentifier: Codable, Hashable, RawRepresentable {
              ^
                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:29:23: note: add '@MainActor' to make static property 'automobileAvoidingTraffic' part of global actor 'MainActor'
    public static let automobileAvoidingTraffic: ProfileIdentifier = .init(rawValue: "mapbox/driving-traffic")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let automobileAvoidingTraffic: ProfileIdentifier = .init(rawValue: "mapbox/driving-traffic")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:36:23: warning: static property 'cycling' is not concurrency-safe because non-'Sendable' type 'ProfileIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let cycling: ProfileIdentifier = .init(rawValue: "mapbox/cycling")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:6:15: note: consider making struct 'ProfileIdentifier' conform to the 'Sendable' protocol
public struct ProfileIdentifier: Codable, Hashable, RawRepresentable {
              ^
                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:36:23: note: add '@MainActor' to make static property 'cycling' part of global actor 'MainActor'
    public static let cycling: ProfileIdentifier = .init(rawValue: "mapbox/cycling")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let cycling: ProfileIdentifier = .init(rawValue: "mapbox/cycling")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:43:23: warning: static property 'walking' is not concurrency-safe because non-'Sendable' type 'ProfileIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let walking: ProfileIdentifier = .init(rawValue: "mapbox/walking")
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:6:15: note: consider making struct 'ProfileIdentifier' conform to the 'Sendable' protocol
public struct ProfileIdentifier: Codable, Hashable, RawRepresentable {
              ^
                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:43:23: note: add '@MainActor' to make static property 'walking' part of global actor 'MainActor'
    public static let walking: ProfileIdentifier = .init(rawValue: "mapbox/walking")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ProfileIdentifier.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let walking: ProfileIdentifier = .init(rawValue: "mapbox/walking")
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/QuickLook.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RefreshedRoute.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/ResponseDisposition.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift:27:16: warning: stored property 'type' of 'Sendable'-conforming struct 'RestStop' has non-sendable type 'RestStop.StopType'; this is an error in the Swift 6 language mode
    public let type: StopType
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift:13:17: note: consider making enum 'StopType' conform to the 'Sendable' protocol
    public enum StopType: String, Codable {
                ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RestStop.swift:38:16: warning: stored property 'amenities' of 'Sendable'-conforming struct 'RestStop' has non-sendable type '[Amenity]?'; this is an error in the Swift 6 language mode
    public let amenities: [Amenity]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Amenity.swift:7:15: note: consider making struct 'Amenity' conform to the 'Sendable' protocol
public struct Amenity: Codable, Equatable {
              ^
                                         , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClassExclusionViolation.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ParserError.swift, SplitArguments.swift, DumpHelpGenerator.swift, HelpCommand.swift, HelpGenerator.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ RouteRefreshSource.swift,\ RouteResponse.swift,\ RouteStep.swift,\ SilentWaypoint.swift,\ SpokenInstruction.swift,\ TollCollection.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshSource.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SilentWaypoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SpokenInstruction.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteRefreshSource.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:32:16: warning: stored property 'routes' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[Route]?'; this is an error in the Swift 6 language mode
    public var routes: [Route]? {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Route.swift:9:12: note: class 'Route' does not conform to the 'Sendable' protocol
open class Route: DirectionsResult {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:43:16: warning: stored property 'waypoints' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[Waypoint]?'; this is an error in the Swift 6 language mode
    public let waypoints: [Waypoint]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Waypoint.swift:9:14: note: class 'Waypoint' does not conform to the 'Sendable' protocol
public class Waypoint: Codable, ForeignMemberContainerClass {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:48:16: warning: stored property 'options' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type 'ResponseOptions'; this is an error in the Swift 6 language mode
    public let options: ResponseOptions
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:7:13: note: consider making enum 'ResponseOptions' conform to the 'Sendable' protocol
public enum ResponseOptions {
            ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:53:16: warning: stored property 'credentials' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type 'Credentials'; this is an error in the Swift 6 language mode
    public let credentials: Credentials
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:87:29: warning: stored property 'roadClassExclusionViolations' of 'Sendable'-conforming struct 'RouteResponse' has non-sendable type '[RoadClassExclusionViolation]?'; this is an error in the Swift 6 language mode
    public private(set) var roadClassExclusionViolations: [RoadClassExclusionViolation]?
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClassExclusionViolation.swift:7:15: note: consider making struct 'RoadClassExclusionViolation' conform to the 'Sendable' protocol
public struct RoadClassExclusionViolation {
              ^
                                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:116:38: warning: type 'MatchOptions' does not conform to the 'Sendable' protocol
        decoder.userInfo[.options] = options
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:117:42: warning: type 'Credentials' does not conform to the 'Sendable' protocol
        decoder.userInfo[.credentials] = credentials
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:118:38: warning: type 'MatchOptions' does not conform to the 'Sendable' protocol
        encoder.userInfo[.options] = options
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteResponse.swift:119:42: warning: type 'Credentials' does not conform to the 'Sendable' protocol
        encoder.userInfo[.credentials] = credentials
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:218:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ManeuverType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default` = ManeuverType.turn
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:92:13: note: consider making enum 'ManeuverType' conform to the 'Sendable' protocol
public enum ManeuverType: String, Codable {
            ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:218:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    static let `default` = ManeuverType.turn
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:218:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default` = ManeuverType.turn
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:437:13: warning: stored property 'maneuverType' of 'Sendable'-conforming struct 'Maneuver' has non-sendable type 'ManeuverType'; this is an error in the Swift 6 language mode
        let maneuverType: ManeuverType
            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:92:13: note: consider making enum 'ManeuverType' conform to the 'Sendable' protocol
public enum ManeuverType: String, Codable {
            ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:438:13: warning: stored property 'maneuverDirection' of 'Sendable'-conforming struct 'Maneuver' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
        let maneuverDirection: ManeuverDirection?
            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
public enum ManeuverDirection: String, Codable {
            ^
                                              , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SilentWaypoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/SpokenInstruction.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift:18:16: warning: stored property 'type' of 'Sendable'-conforming struct 'TollCollection' has non-sendable type 'TollCollection.CollectionType'; this is an error in the Swift 6 language mode
    public let type: CollectionType
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollCollection.swift:10:17: note: consider making enum 'CollectionType' conform to the 'Sendable' protocol
    public enum CollectionType: String, Codable {
                ^
                                               , Sendable
SwiftDriverJobDiscovery normal arm64 Compiling Flag.swift, NameSpecification.swift, Option.swift, OptionGroup.swift, AsyncParsableCommand.swift (in target 'ArgumentParser' from project 'swift-argument-parser')
SwiftCompile normal arm64 Compiling\ CustomValueOptionSet.swift,\ Directions.swift,\ DirectionsError.swift,\ DirectionsOptions.swift,\ DirectionsResult.swift,\ DrivingSide.swift,\ Array.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/CustomValueOptionSet.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsResult.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Array.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/CustomValueOptionSet.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:63:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Directions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = Directions()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:63:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = Directions()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = Directions()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:145:51: warning: type 'RouteOptions' does not conform to the 'Sendable' protocol
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteOptions.swift:12:12: note: class 'RouteOptions' does not conform to the 'Sendable' protocol
open class RouteOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:146:60: warning: type 'Credentials' does not conform to the 'Sendable' protocol
                                        .credentials: self.credentials]
                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:123:21: warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<RouteResponse, DirectionsError>) -> ()') in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:123:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(session, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:123:39: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
open class DirectionsOptions: Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:123:39: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:142:13: warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
            self.processingQueue.async {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:145:51: warning: capture of 'options' with non-sendable type 'RouteOptions' in a '@Sendable' closure
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteOptions.swift:12:12: note: class 'RouteOptions' does not conform to the 'Sendable' protocol
open class RouteOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:145:51: warning: capture of 'options' with non-sendable type 'RouteOptions' in a '@Sendable' closure
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteOptions.swift:12:12: note: class 'RouteOptions' does not conform to the 'Sendable' protocol
open class RouteOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:146:55: warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
                                        .credentials: self.credentials]
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:152:29: warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<RouteResponse, DirectionsError>) -> ()') in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:152:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                            completionHandler(session, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:152:47: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
open class DirectionsOptions: Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:152:47: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:233:51: warning: type 'MatchOptions' does not conform to the 'Sendable' protocol
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:234:60: warning: type 'Credentials' does not conform to the 'Sendable' protocol
                                        .credentials: self.credentials]
                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:209:21: warning: capture of 'completionHandler' with non-sendable type 'Directions.MatchCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<MapMatchingResponse, DirectionsError>) -> ()') in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:209:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(session, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:209:39: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
open class DirectionsOptions: Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:209:39: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:230:13: warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
            self.processingQueue.async {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:233:51: warning: capture of 'options' with non-sendable type 'MatchOptions' in a '@Sendable' closure
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:233:51: warning: capture of 'options' with non-sendable type 'MatchOptions' in a '@Sendable' closure
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:234:55: warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
                                        .credentials: self.credentials]
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:238:29: warning: capture of 'completionHandler' with non-sendable type 'Directions.MatchCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<MapMatchingResponse, DirectionsError>) -> ()') in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:238:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                            completionHandler(session, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:238:47: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
open class DirectionsOptions: Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:238:47: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:318:51: warning: type 'MatchOptions' does not conform to the 'Sendable' protocol
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:319:60: warning: type 'Credentials' does not conform to the 'Sendable' protocol
                                        .credentials: self.credentials]
                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:296:21: warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<RouteResponse, DirectionsError>) -> ()') in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:296:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(session, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:296:39: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
open class DirectionsOptions: Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:296:39: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:315:13: warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
            self.processingQueue.async {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:318:51: warning: capture of 'options' with non-sendable type 'MatchOptions' in a '@Sendable' closure
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:318:51: warning: capture of 'options' with non-sendable type 'MatchOptions' in a '@Sendable' closure
                    decoder.userInfo = [.options: options,
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
open class MatchOptions: DirectionsOptions {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:319:55: warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
                                        .credentials: self.credentials]
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:325:29: warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<RouteResponse, DirectionsError>) -> ()') in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:325:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                            completionHandler(session, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:325:47: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
open class DirectionsOptions: Codable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:325:47: warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:444:44: warning: type 'Credentials' does not conform to the 'Sendable' protocol
                        .credentials: self.credentials,
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:418:21: warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteRefreshCompletionHandler' (aka '(Credentials, Result<RouteRefreshResponse, DirectionsError>) -> ()') in a '@Sendable' closure
                    completionHandler(self.credentials, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:418:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(self.credentials, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:418:39: warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
                    completionHandler(self.credentials, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:444:39: warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
                        .credentials: self.credentials,
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:17:12: note: class 'Directions' does not conform to the 'Sendable' protocol
open class Directions: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:451:29: warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteRefreshCompletionHandler' (aka '(Credentials, Result<RouteRefreshResponse, DirectionsError>) -> ()') in a '@Sendable' closure
                            completionHandler(self.credentials, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:451:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                            completionHandler(self.credentials, .failure(apiError))
                            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsError.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:36:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RouteShapeFormat' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default` = RouteShapeFormat.polyline
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:16:13: note: consider making enum 'RouteShapeFormat' conform to the 'Sendable' protocol
public enum RouteShapeFormat: String, Codable {
            ^
                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:36:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    static let `default` = RouteShapeFormat.polyline
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:36:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default` = RouteShapeFormat.polyline
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:98:16: warning: static property 'low' is not concurrency-safe because non-'Sendable' type 'DirectionsPriority' may have shared mutable state; this is an error in the Swift 6 language mode
    static let low = DirectionsPriority(rawValue: -1.0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:88:15: note: consider making struct 'DirectionsPriority' conform to the 'Sendable' protocol
public struct DirectionsPriority: Hashable, RawRepresentable, Codable {
              ^
                                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:98:16: note: add '@MainActor' to make static property 'low' part of global actor 'MainActor'
    static let low = DirectionsPriority(rawValue: -1.0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let low = DirectionsPriority(rawValue: -1.0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:103:16: warning: static property 'medium' is not concurrency-safe because non-'Sendable' type 'DirectionsPriority' may have shared mutable state; this is an error in the Swift 6 language mode
    static let medium = DirectionsPriority(rawValue: 0.0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:88:15: note: consider making struct 'DirectionsPriority' conform to the 'Sendable' protocol
public struct DirectionsPriority: Hashable, RawRepresentable, Codable {
              ^
                                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:103:16: note: add '@MainActor' to make static property 'medium' part of global actor 'MainActor'
    static let medium = DirectionsPriority(rawValue: 0.0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:103:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let medium = DirectionsPriority(rawValue: 0.0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:108:16: warning: static property 'high' is not concurrency-safe because non-'Sendable' type 'DirectionsPriority' may have shared mutable state; this is an error in the Swift 6 language mode
    static let high = DirectionsPriority(rawValue: 1.0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:88:15: note: consider making struct 'DirectionsPriority' conform to the 'Sendable' protocol
public struct DirectionsPriority: Hashable, RawRepresentable, Codable {
              ^
                                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:108:16: note: add '@MainActor' to make static property 'high' part of global actor 'MainActor'
    static let high = DirectionsPriority(rawValue: 1.0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:108:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let high = DirectionsPriority(rawValue: 1.0)
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsResult.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift:17:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'DrivingSide' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default` = DrivingSide.right
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift:6:13: note: consider making enum 'DrivingSide' conform to the 'Sendable' protocol
public enum DrivingSide: String, Codable {
            ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift:17:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    static let `default` = DrivingSide.right
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DrivingSide.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default` = DrivingSide.right
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Extensions/Array.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Polyline.swift (in target 'Polyline' from project 'Polyline')
SwiftDriver\ Compilation Polyline normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Polyline' from project 'Polyline')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Polyline -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ProfileIdentifier.swift, QuickLook.swift, RefreshedRoute.swift, ResponseDisposition.swift, RestStop.swift, RoadClassExclusionViolation.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 Compiling\ Tracepoint.swift,\ MapboxStreetsRoadClass.swift,\ Matrix.swift,\ MatrixError.swift,\ MatrixOptions.swift,\ MatrixResponse.swift,\ OfflineDirections.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixError.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/Tracepoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:45:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Matrix' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = Matrix()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:10:12: note: class 'Matrix' does not conform to the 'Sendable' protocol
open class Matrix {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:45:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = Matrix()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = Matrix()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:79:21: warning: capture of 'completionHandler' with non-sendable type 'Matrix.MatrixCompletionHandler' (aka '((options: MatrixOptions, credentials: Credentials), Result<MatrixResponse, MatrixError>) -> ()') in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:79:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(session, .failure(.network(urlError)))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:79:39: warning: capture of 'session' with non-sendable type '(options: MatrixOptions, credentials: Credentials)' in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift:7:14: note: class 'MatrixOptions' does not conform to the 'Sendable' protocol
public class MatrixOptions: Codable {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:79:39: warning: capture of 'session' with non-sendable type '(options: MatrixOptions, credentials: Credentials)' in a '@Sendable' closure
                    completionHandler(session, .failure(.network(urlError)))
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:98:13: warning: capture of 'self' with non-sendable type 'Matrix' in a '@Sendable' closure
            self.processingQueue.async {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:10:12: note: class 'Matrix' does not conform to the 'Sendable' protocol
open class Matrix {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:106:29: warning: capture of 'completionHandler' with non-sendable type 'Matrix.MatrixCompletionHandler' (aka '((options: MatrixOptions, credentials: Credentials), Result<MatrixResponse, MatrixError>) -> ()') in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:106:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                            completionHandler(session, .failure(apiError))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:106:47: warning: capture of 'session' with non-sendable type '(options: MatrixOptions, credentials: Credentials)' in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift:7:14: note: class 'MatrixOptions' does not conform to the 'Sendable' protocol
public class MatrixOptions: Codable {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Matrix.swift:106:47: warning: capture of 'session' with non-sendable type '(options: MatrixOptions, credentials: Credentials)' in a '@Sendable' closure
                            completionHandler(session, .failure(apiError))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
                                    , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixError.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MatrixResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift:70:21: warning: capture of 'completionHandler' with non-sendable type 'OfflineVersionsHandler' (aka '(Optional<Array<String>>, Optional<any Error>) -> ()') in a '@Sendable' closure
                    completionHandler(nil, error)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift:70:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completionHandler(nil, error)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift:113:17: warning: capture of 'completionHandler' with non-sendable type 'OfflineDownloaderCompletionHandler' (aka '(Optional<URL>, Optional<URLResponse>, Optional<any Error>) -> ()') in a '@Sendable' closure
                completionHandler($0, $1, $2)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/OfflineDirections.swift:113:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completionHandler($0, $1, $2)
                ^
SwiftDriver\ Compilation ArgumentParser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ArgumentParser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Codable.swift, CoreLocation.swift, Double.swift, ForeignMemberContainer.swift, GeoJSON.swift, HTTPURLResponse.swift, Measurement.swift (in target 'MapboxDirections' from project 'MapboxDirections')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Polyline.o normal (in target 'Polyline' from project 'Polyline')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Polyline.o
ExtractAppIntentsMetadata (in target 'Polyline' from project 'Polyline')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Polyline --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier polyline.Polyline --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Polyline.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Polyline.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Polyline.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Polyline.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-07-09 09:16:04.844 appintentsmetadataprocessor[938:5280] Starting appintentsmetadataprocessor export
2025-07-09 09:16:04.883 appintentsmetadataprocessor[938:5280] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Turf.o (in target 'Turf' from project 'Turf')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/turf-swift
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Turf.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.o (in target 'ArgumentParserToolInfo' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParserToolInfo.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Polyline.o (in target 'Polyline' from project 'Polyline')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Polyline
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Polyline.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o normal (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o
SwiftDriverJobDiscovery normal arm64 Compiling Isochrones.swift, Junction.swift, Lane.swift, LaneIndication.swift, MapMatchingResponse.swift, Match.swift, MatchOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftDriverJobDiscovery normal arm64 Emitting module for MapboxDirections (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftDriver\ Compilation\ Requirements MapboxDirections normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MapboxDirections -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.14 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling AdministrativeRegion.swift, Amenity.swift, AmenityType.swift, AttributeOptions.swift, BlockedLanes.swift, Congestion.swift, Credentials.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/MapboxDirections-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-Swift.h (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/MapboxDirections-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftdoc (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftmodule (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.abi.json (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftsourceinfo (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ArgumentParser --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier swift-argument-parser.ArgumentParser --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/ArgumentParser.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/ArgumentParser.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-07-09 09:16:05.004 appintentsmetadataprocessor[941:5306] Starting appintentsmetadataprocessor export
2025-07-09 09:16:05.048 appintentsmetadataprocessor[941:5306] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriver mapbox-directions-swift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name mapbox_directions_swift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.14 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ mapbox_directions_swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
EmitSwiftModule normal arm64 (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:48:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var configuration = CommandConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:48:16: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    static var configuration = CommandConfiguration(
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:48:16: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    static var configuration = CommandConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var configuration = CommandConfiguration(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:63:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var configuration =
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:63:20: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
        static var configuration =
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:63:20: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
        static var configuration =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:63:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var configuration =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:81:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var configuration =
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:81:20: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
        static var configuration =
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:81:20: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
        static var configuration =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:81:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var configuration =
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ main.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:48:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var configuration = CommandConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:48:16: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    static var configuration = CommandConfiguration(
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:48:16: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
    static var configuration = CommandConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var configuration = CommandConfiguration(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:63:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var configuration =
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:63:20: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
        static var configuration =
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:63:20: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
        static var configuration =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:63:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var configuration =
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:81:20: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var configuration =
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:81:20: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
        static var configuration =
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:81:20: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
        static var configuration =
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/main.swift:81:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var configuration =
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ CodingOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:139:13: warning: mutation of captured var 'responseData' in concurrently-executing code
            responseData = data
            ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:195:39: warning: type 'OptionsType' does not conform to the 'Sendable' protocol
        decoder.userInfo = [.options: directionsOptions,
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:20:75: note: consider making generic parameter 'OptionsType' conform to the 'Sendable' protocol
class CodingOperation<ResponseType : Codable & DirectionsResultsProvider, OptionsType : DirectionsOptions > {
                                                                          ^
                                                                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:196:43: warning: type 'Credentials' does not conform to the 'Sendable' protocol
                            .credentials: credentials]
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: struct 'Credentials' does not conform to the 'Sendable' protocol
public struct Credentials: Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'MapboxDirections'
import MapboxDirections
^
@preconcurrency
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o (in target 'ArgumentParser' from project 'swift-argument-parser')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-argument-parser
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ArgumentParser.o
SwiftDriverJobDiscovery normal arm64 Emitting module for mapbox_directions_swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
SwiftDriver\ Compilation\ Requirements mapbox-directions-swift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name mapbox_directions_swift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.14 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox_directions_swift.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftdoc (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox_directions_swift.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox_directions_swift.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftmodule (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox_directions_swift.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox_directions_swift.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.abi.json (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox_directions_swift.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox_directions_swift.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftsourceinfo (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox_directions_swift.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling RouteRefreshSource.swift, RouteResponse.swift, RouteStep.swift, SilentWaypoint.swift, SpokenInstruction.swift, TollCollection.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftDriverJobDiscovery normal arm64 Compiling CodingOperation.swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
SwiftDriverJobDiscovery normal arm64 Compiling main.swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
SwiftDriver\ Compilation mapbox-directions-swift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name mapbox_directions_swift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.14 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Tracepoint.swift, MapboxStreetsRoadClass.swift, Matrix.swift, MatrixError.swift, MatrixOptions.swift, MatrixResponse.swift, OfflineDirections.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftDriverJobDiscovery normal arm64 Compiling CustomValueOptionSet.swift, Directions.swift, DirectionsError.swift, DirectionsOptions.swift, DirectionsResult.swift, DrivingSide.swift, Array.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftDriverJobDiscovery normal arm64 Compiling RoadClasses.swift, Route.swift, RouteLeg.swift, RouteLegAttributes.swift, RouteOptions.swift, RouteRefreshResponse.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftDriverJobDiscovery normal arm64 Compiling TollPrice.swift, TrafficTendency.swift, VisualInstruction.swift, VisualInstructionBanner.swift, VisualInstructionComponent.swift, Waypoint.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftDriverJobDiscovery normal arm64 Compiling String.swift, URL+Request.swift, Incident.swift, Interchange.swift, Intersection.swift, IsochroneError.swift, IsochroneOptions.swift (in target 'MapboxDirections' from project 'MapboxDirections')
SwiftDriver\ Compilation MapboxDirections normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MapboxDirections -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.14 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.o normal (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.14 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.o
ExtractAppIntentsMetadata (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name MapboxDirections --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.14 --bundle-identifier spi-builder-workspace.MapboxDirections --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.appintents --target-triple arm64-apple-macos10.14 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/MapboxDirections.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/MapboxDirections.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-07-09 09:16:06.014 appintentsmetadataprocessor[947:5357] Starting appintentsmetadataprocessor export
2025-07-09 09:16:06.047 appintentsmetadataprocessor[947:5357] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.o (in target 'MapboxDirections' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MapboxDirections.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox-directions-swift normal (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.14 -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/../lib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox-directions-swift_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/mapbox-directions-swift.build/Objects-normal/arm64/mapbox_directions_swift.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox-directions-swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Polyline.build/Debug/Polyline.build/Objects-normal/arm64/Polyline.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Turf.build/Debug/Turf.build/Objects-normal/arm64/Turf.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MapboxDirections.build/Debug/MapboxDirections.build/Objects-normal/arm64/MapboxDirections.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParser.build/Objects-normal/arm64/ArgumentParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-argument-parser.build/Debug/ArgumentParserToolInfo.build/Objects-normal/arm64/ArgumentParserToolInfo.swiftmodule
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox-directions-swift (in target 'mapbox-directions-swift' from project 'MapboxDirections')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/mapbox-directions-swift
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:8d7f543bd9c191ec3ea77b18c8748f5a7afd4d59, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:8d7f543bd9c191ec3ea77b18c8748f5a7afd4d59, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:8d7f543bd9c191ec3ea77b18c8748f5a7afd4d59, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:8d7f543bd9c191ec3ea77b18c8748f5a7afd4d59, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "polyline",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.0.2",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/raphaelmor/Polyline.git"
    },
    {
      "identity" : "turf-swift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.8.0",
            "upper_bound" : "2.9.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/mapbox/turf-swift.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    },
    {
      "identity" : "ohhttpstubs",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.1.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/AliSoftware/OHHTTPStubs"
    }
  ],
  "manifest_display_name" : "MapboxDirections",
  "name" : "MapboxDirections",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "5.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "MapboxDirections",
      "targets" : [
        "MapboxDirections"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "mapbox-directions-swift",
      "targets" : [
        "MapboxDirectionsCLI"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MapboxDirectionsTests",
      "module_type" : "SwiftTarget",
      "name" : "MapboxDirectionsTests",
      "path" : "Tests/MapboxDirectionsTests",
      "product_dependencies" : [
        "OHHTTPStubsSwift"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Match/match-polyline6.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Match/match.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Match/null-tracepoint.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Offline/2018-10-16-Liechtenstein.tar",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Offline/versions.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Responses/RouteRefreshResponseWithForeignMembers.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Responses/RouteResponseWithForeignMembers.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Responses/apiDestinationName.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/Responses/noDestinationName.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/RouteRefresh/incorrectRouteRefreshResponse.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/RouteRefresh/partialRouteRefreshResponse.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/RouteRefresh/routeRefreshResponse.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/RouteRefresh/routeRefreshRoute.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/amenities.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/incidents.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/instructions.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/intersections.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/matrix.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/subLaneInstructions.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/subVisualInstructions.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/tollAndFerryDirectionsRoute.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/v5/annotation.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/v5/v5_driving_dc_geojson.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/v5/v5_driving_dc_polyline.json",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/MapboxDirectionsTests/Fixtures/v5/v5_driving_oldenburg_polyline.json",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AmenityTests.swift",
        "AnnotationTests.swift",
        "AttributeOptionsTests.swift",
        "CredentialsTests.swift",
        "CustomStringOptionSetTests.swift",
        "DirectionsErrorTests.swift",
        "DirectionsTests.swift",
        "Fixture.swift",
        "ForeignMemberContainerTests.swift",
        "GeoJSONTests.swift",
        "IntersectionTests.swift",
        "IsochroneTests.swift",
        "JSONSerialization.swift",
        "MatchOptionsTests.swift",
        "MatchTests.swift",
        "MatrixTests.swift",
        "OfflineDirectionsTests.swift",
        "ProfileIdentifierTests.swift",
        "QuickLookTests.swift",
        "RoutableMatchTests.swift",
        "RouteLegTests.swift",
        "RouteOptionsTests.swift",
        "RouteRefreshTests.swift",
        "RouteResponseTests.swift",
        "RouteStepTests.swift",
        "RouteTests.swift",
        "SpokenInstructionTests.swift",
        "TransportTypeTests.swift",
        "V5Tests.swift",
        "VisualInstructionComponentTests.swift",
        "VisualInstructionTests.swift",
        "WalkingOptionsTests.swift",
        "WaypointTests.swift"
      ],
      "target_dependencies" : [
        "MapboxDirections"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MapboxDirectionsCLI",
      "module_type" : "SwiftTarget",
      "name" : "MapboxDirectionsCLI",
      "path" : "Sources/MapboxDirectionsCLI",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "mapbox-directions-swift"
      ],
      "sources" : [
        "CodingOperation.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "MapboxDirections"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "MapboxDirections",
      "module_type" : "SwiftTarget",
      "name" : "MapboxDirections",
      "path" : "Sources/MapboxDirections",
      "product_dependencies" : [
        "Polyline",
        "Turf"
      ],
      "product_memberships" : [
        "MapboxDirections",
        "mapbox-directions-swift"
      ],
      "sources" : [
        "AdministrativeRegion.swift",
        "Amenity.swift",
        "AmenityType.swift",
        "AttributeOptions.swift",
        "BlockedLanes.swift",
        "Congestion.swift",
        "Credentials.swift",
        "CustomValueOptionSet.swift",
        "Directions.swift",
        "DirectionsError.swift",
        "DirectionsOptions.swift",
        "DirectionsResult.swift",
        "DrivingSide.swift",
        "Extensions/Array.swift",
        "Extensions/Codable.swift",
        "Extensions/CoreLocation.swift",
        "Extensions/Double.swift",
        "Extensions/ForeignMemberContainer.swift",
        "Extensions/GeoJSON.swift",
        "Extensions/HTTPURLResponse.swift",
        "Extensions/Measurement.swift",
        "Extensions/String.swift",
        "Extensions/URL+Request.swift",
        "Incident.swift",
        "Interchange.swift",
        "Intersection.swift",
        "IsochroneError.swift",
        "IsochroneOptions.swift",
        "Isochrones.swift",
        "Junction.swift",
        "Lane.swift",
        "LaneIndication.swift",
        "MapMatching/MapMatchingResponse.swift",
        "MapMatching/Match.swift",
        "MapMatching/MatchOptions.swift",
        "MapMatching/Tracepoint.swift",
        "MapboxStreetsRoadClass.swift",
        "Matrix.swift",
        "MatrixError.swift",
        "MatrixOptions.swift",
        "MatrixResponse.swift",
        "OfflineDirections.swift",
        "ProfileIdentifier.swift",
        "QuickLook.swift",
        "RefreshedRoute.swift",
        "ResponseDisposition.swift",
        "RestStop.swift",
        "RoadClassExclusionViolation.swift",
        "RoadClasses.swift",
        "Route.swift",
        "RouteLeg.swift",
        "RouteLegAttributes.swift",
        "RouteOptions.swift",
        "RouteRefreshResponse.swift",
        "RouteRefreshSource.swift",
        "RouteResponse.swift",
        "RouteStep.swift",
        "SilentWaypoint.swift",
        "SpokenInstruction.swift",
        "TollCollection.swift",
        "TollPrice.swift",
        "TrafficTendency.swift",
        "VisualInstruction.swift",
        "VisualInstructionBanner.swift",
        "VisualInstructionComponent.swift",
        "Waypoint.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.