The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of MapboxDirections, reference main (32bf19), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 23:12:55 UTC.

Swift 6 data race errors: 104

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

/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
207 |             if let urlError = possibleError as? URLError {
208 |                 DispatchQueue.main.async {
209 |                     completionHandler(session, .failure(.network(urlError)))
    |                                       `- warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
210 |                 }
211 |                 return
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
114 |  You do not create instances of this class directly. Instead, create instances of `MatchOptions` or `RouteOptions`.
115 |  */
116 | open class DirectionsOptions: Codable {
    |            `- note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
117 |     // MARK: Creating a Directions Options Object
118 |
/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
207 |             if let urlError = possibleError as? URLError {
208 |                 DispatchQueue.main.async {
209 |                     completionHandler(session, .failure(.network(urlError)))
    |                                       `- warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
210 |                 }
211 |                 return
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
 8 | let defaultApiEndPointURLString = Bundle.main.object(forInfoDictionaryKey: "MGLMapboxAPIBaseURL") as? String
 9 |
10 | public struct Credentials: Equatable {
   |               `- note: consider making struct 'Credentials' conform to the 'Sendable' protocol
11 |
12 |     /**
/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
 15 |  Each result produced by the directions object is stored in a `Route` object. Depending on the `RouteOptions` object you provide, each route may include detailed information suitable for turn-by-turn directions, or it may include only high-level information such as the distance, estimated travel time, and name of each leg of the trip. The waypoints that form the request may be conflated with nearby locations, as appropriate; the resulting waypoints are provided to the closure.
 16 |  */
 17 | open class Directions: NSObject {
    |            `- note: class 'Directions' does not conform to the 'Sendable' protocol
 18 |
 19 |     /**
    :
228 |
229 |
230 |             self.processingQueue.async {
    |             `- warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
231 |                 do {
232 |                     let decoder = JSONDecoder()
/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
231 |                 do {
232 |                     let decoder = JSONDecoder()
233 |                     decoder.userInfo = [.options: options,
    |                                                   `- warning: capture of 'options' with non-sendable type 'MatchOptions' in a '@Sendable' closure
234 |                                         .credentials: self.credentials]
235 |                     guard let disposition = try? decoder.decode(ResponseDisposition.self, from: data) else {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 10 |  Pass an instance of this class into the `Directions.calculate(_:completionHandler:)` method.
 11 |  */
 12 | open class MatchOptions: DirectionsOptions {
    |            `- note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 13 |     // MARK: Creating a Match Options Object
 14 |
/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
231 |                 do {
232 |                     let decoder = JSONDecoder()
233 |                     decoder.userInfo = [.options: options,
    |                                                   `- warning: capture of 'options' with non-sendable type 'MatchOptions' in a '@Sendable' closure
234 |                                         .credentials: self.credentials]
235 |                     guard let disposition = try? decoder.decode(ResponseDisposition.self, from: data) else {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 10 |  Pass an instance of this class into the `Directions.calculate(_:completionHandler:)` method.
 11 |  */
 12 | open class MatchOptions: DirectionsOptions {
    |            `- note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 13 |     // MARK: Creating a Match Options Object
 14 |
/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
 15 |  Each result produced by the directions object is stored in a `Route` object. Depending on the `RouteOptions` object you provide, each route may include detailed information suitable for turn-by-turn directions, or it may include only high-level information such as the distance, estimated travel time, and name of each leg of the trip. The waypoints that form the request may be conflated with nearby locations, as appropriate; the resulting waypoints are provided to the closure.
 16 |  */
 17 | open class Directions: NSObject {
    |            `- note: class 'Directions' does not conform to the 'Sendable' protocol
 18 |
 19 |     /**
    :
232 |                     let decoder = JSONDecoder()
233 |                     decoder.userInfo = [.options: options,
234 |                                         .credentials: self.credentials]
    |                                                       `- warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
235 |                     guard let disposition = try? decoder.decode(ResponseDisposition.self, from: data) else {
236 |                           let apiError = DirectionsError(code: nil, message: nil, response: possibleResponse, underlyingError: possibleError)
/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
236 |                           let apiError = DirectionsError(code: nil, message: nil, response: possibleResponse, underlyingError: possibleError)
237 |                           DispatchQueue.main.async {
238 |                             completionHandler(session, .failure(apiError))
    |                             |- warning: capture of 'completionHandler' with non-sendable type 'Directions.MatchCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<MapMatchingResponse, DirectionsError>) -> ()') in a '@Sendable' closure
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
239 |                           }
240 |                           return
/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
236 |                           let apiError = DirectionsError(code: nil, message: nil, response: possibleResponse, underlyingError: possibleError)
237 |                           DispatchQueue.main.async {
238 |                             completionHandler(session, .failure(apiError))
    |                                               `- warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
239 |                           }
240 |                           return
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
114 |  You do not create instances of this class directly. Instead, create instances of `MatchOptions` or `RouteOptions`.
115 |  */
116 | open class DirectionsOptions: Codable {
    |            `- note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
117 |     // MARK: Creating a Directions Options Object
118 |
/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
236 |                           let apiError = DirectionsError(code: nil, message: nil, response: possibleResponse, underlyingError: possibleError)
237 |                           DispatchQueue.main.async {
238 |                             completionHandler(session, .failure(apiError))
    |                                               `- warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
239 |                           }
240 |                           return
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
 8 | let defaultApiEndPointURLString = Bundle.main.object(forInfoDictionaryKey: "MGLMapboxAPIBaseURL") as? String
 9 |
10 | public struct Credentials: Equatable {
   |               `- note: consider making struct 'Credentials' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:318:51: warning: type 'MatchOptions' does not conform to the 'Sendable' protocol
316 |                 do {
317 |                     let decoder = JSONDecoder()
318 |                     decoder.userInfo = [.options: options,
    |                                                   `- warning: type 'MatchOptions' does not conform to the 'Sendable' protocol
319 |                                         .credentials: self.credentials]
320 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 10 |  Pass an instance of this class into the `Directions.calculate(_:completionHandler:)` method.
 11 |  */
 12 | open class MatchOptions: DirectionsOptions {
    |            `- note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 13 |     // MARK: Creating a Match Options Object
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:319:60: warning: type 'Credentials' does not conform to the 'Sendable' protocol
317 |                     let decoder = JSONDecoder()
318 |                     decoder.userInfo = [.options: options,
319 |                                         .credentials: self.credentials]
    |                                                            `- warning: type 'Credentials' does not conform to the 'Sendable' protocol
320 |
321 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
 8 | let defaultApiEndPointURLString = Bundle.main.object(forInfoDictionaryKey: "MGLMapboxAPIBaseURL") as? String
 9 |
10 | public struct Credentials: Equatable {
   |               `- note: consider making struct 'Credentials' conform to the 'Sendable' protocol
11 |
12 |     /**
/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
294 |              if let urlError = possibleError as? URLError {
295 |                  DispatchQueue.main.async {
296 |                     completionHandler(session, .failure(.network(urlError)))
    |                     |- warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<RouteResponse, DirectionsError>) -> ()') in a '@Sendable' closure
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
297 |                  }
298 |                  return
/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
294 |              if let urlError = possibleError as? URLError {
295 |                  DispatchQueue.main.async {
296 |                     completionHandler(session, .failure(.network(urlError)))
    |                                       `- warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
297 |                  }
298 |                  return
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
114 |  You do not create instances of this class directly. Instead, create instances of `MatchOptions` or `RouteOptions`.
115 |  */
116 | open class DirectionsOptions: Codable {
    |            `- note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
117 |     // MARK: Creating a Directions Options Object
118 |
/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
294 |              if let urlError = possibleError as? URLError {
295 |                  DispatchQueue.main.async {
296 |                     completionHandler(session, .failure(.network(urlError)))
    |                                       `- warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
297 |                  }
298 |                  return
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
 8 | let defaultApiEndPointURLString = Bundle.main.object(forInfoDictionaryKey: "MGLMapboxAPIBaseURL") as? String
 9 |
10 | public struct Credentials: Equatable {
   |               `- note: consider making struct 'Credentials' conform to the 'Sendable' protocol
11 |
12 |     /**
/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
 15 |  Each result produced by the directions object is stored in a `Route` object. Depending on the `RouteOptions` object you provide, each route may include detailed information suitable for turn-by-turn directions, or it may include only high-level information such as the distance, estimated travel time, and name of each leg of the trip. The waypoints that form the request may be conflated with nearby locations, as appropriate; the resulting waypoints are provided to the closure.
 16 |  */
 17 | open class Directions: NSObject {
    |            `- note: class 'Directions' does not conform to the 'Sendable' protocol
 18 |
 19 |     /**
    :
313 |             }
314 |
315 |             self.processingQueue.async {
    |             `- warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
316 |                 do {
317 |                     let decoder = JSONDecoder()
/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
316 |                 do {
317 |                     let decoder = JSONDecoder()
318 |                     decoder.userInfo = [.options: options,
    |                                                   `- warning: capture of 'options' with non-sendable type 'MatchOptions' in a '@Sendable' closure
319 |                                         .credentials: self.credentials]
320 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 10 |  Pass an instance of this class into the `Directions.calculate(_:completionHandler:)` method.
 11 |  */
 12 | open class MatchOptions: DirectionsOptions {
    |            `- note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 13 |     // MARK: Creating a Match Options Object
 14 |
/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
316 |                 do {
317 |                     let decoder = JSONDecoder()
318 |                     decoder.userInfo = [.options: options,
    |                                                   `- warning: capture of 'options' with non-sendable type 'MatchOptions' in a '@Sendable' closure
319 |                                         .credentials: self.credentials]
320 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapMatching/MatchOptions.swift:12:12: note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 10 |  Pass an instance of this class into the `Directions.calculate(_:completionHandler:)` method.
 11 |  */
 12 | open class MatchOptions: DirectionsOptions {
    |            `- note: class 'MatchOptions' does not conform to the 'Sendable' protocol
 13 |     // MARK: Creating a Match Options Object
 14 |
/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
 15 |  Each result produced by the directions object is stored in a `Route` object. Depending on the `RouteOptions` object you provide, each route may include detailed information suitable for turn-by-turn directions, or it may include only high-level information such as the distance, estimated travel time, and name of each leg of the trip. The waypoints that form the request may be conflated with nearby locations, as appropriate; the resulting waypoints are provided to the closure.
 16 |  */
 17 | open class Directions: NSObject {
    |            `- note: class 'Directions' does not conform to the 'Sendable' protocol
 18 |
 19 |     /**
    :
317 |                     let decoder = JSONDecoder()
318 |                     decoder.userInfo = [.options: options,
319 |                                         .credentials: self.credentials]
    |                                                       `- warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
320 |
321 |
/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
323 |                         let apiError = DirectionsError(code: nil, message: nil, response: possibleResponse, underlyingError: possibleError)
324 |                         DispatchQueue.main.async {
325 |                             completionHandler(session, .failure(apiError))
    |                             |- warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteCompletionHandler' (aka '((options: DirectionsOptions, credentials: Credentials), Result<RouteResponse, DirectionsError>) -> ()') in a '@Sendable' closure
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
326 |                         }
327 |                         return
/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
323 |                         let apiError = DirectionsError(code: nil, message: nil, response: possibleResponse, underlyingError: possibleError)
324 |                         DispatchQueue.main.async {
325 |                             completionHandler(session, .failure(apiError))
    |                                               `- warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
326 |                         }
327 |                         return
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/DirectionsOptions.swift:116:12: note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
114 |  You do not create instances of this class directly. Instead, create instances of `MatchOptions` or `RouteOptions`.
115 |  */
116 | open class DirectionsOptions: Codable {
    |            `- note: class 'DirectionsOptions' does not conform to the 'Sendable' protocol
117 |     // MARK: Creating a Directions Options Object
118 |
/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
323 |                         let apiError = DirectionsError(code: nil, message: nil, response: possibleResponse, underlyingError: possibleError)
324 |                         DispatchQueue.main.async {
325 |                             completionHandler(session, .failure(apiError))
    |                                               `- warning: capture of 'session' with non-sendable type '(options: DirectionsOptions, credentials: Credentials)' in a '@Sendable' closure
326 |                         }
327 |                         return
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
 8 | let defaultApiEndPointURLString = Bundle.main.object(forInfoDictionaryKey: "MGLMapboxAPIBaseURL") as? String
 9 |
10 | public struct Credentials: Equatable {
   |               `- note: consider making struct 'Credentials' conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Directions.swift:444:44: warning: type 'Credentials' does not conform to the 'Sendable' protocol
442 |                         .routeIndex: routeIndex,
443 |                         .startLegIndex: startLegIndex,
444 |                         .credentials: self.credentials,
    |                                            `- warning: type 'Credentials' does not conform to the 'Sendable' protocol
445 |                     ]
446 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: consider making struct 'Credentials' conform to the 'Sendable' protocol
 8 | let defaultApiEndPointURLString = Bundle.main.object(forInfoDictionaryKey: "MGLMapboxAPIBaseURL") as? String
 9 |
10 | public struct Credentials: Equatable {
   |               `- note: consider making struct 'Credentials' conform to the 'Sendable' protocol
11 |
12 |     /**
/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
416 |             if let urlError = possibleError as? URLError {
417 |                 DispatchQueue.main.async {
418 |                     completionHandler(self.credentials, .failure(.network(urlError)))
    |                     |- warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteRefreshCompletionHandler' (aka '(Credentials, Result<RouteRefreshResponse, DirectionsError>) -> ()') in a '@Sendable' closure
    |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
419 |                 }
420 |                 return
/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
 15 |  Each result produced by the directions object is stored in a `Route` object. Depending on the `RouteOptions` object you provide, each route may include detailed information suitable for turn-by-turn directions, or it may include only high-level information such as the distance, estimated travel time, and name of each leg of the trip. The waypoints that form the request may be conflated with nearby locations, as appropriate; the resulting waypoints are provided to the closure.
 16 |  */
 17 | open class Directions: NSObject {
    |            `- note: class 'Directions' does not conform to the 'Sendable' protocol
 18 |
 19 |     /**
    :
416 |             if let urlError = possibleError as? URLError {
417 |                 DispatchQueue.main.async {
418 |                     completionHandler(self.credentials, .failure(.network(urlError)))
    |                                       `- warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
419 |                 }
420 |                 return
/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
 15 |  Each result produced by the directions object is stored in a `Route` object. Depending on the `RouteOptions` object you provide, each route may include detailed information suitable for turn-by-turn directions, or it may include only high-level information such as the distance, estimated travel time, and name of each leg of the trip. The waypoints that form the request may be conflated with nearby locations, as appropriate; the resulting waypoints are provided to the closure.
 16 |  */
 17 | open class Directions: NSObject {
    |            `- note: class 'Directions' does not conform to the 'Sendable' protocol
 18 |
 19 |     /**
    :
442 |                         .routeIndex: routeIndex,
443 |                         .startLegIndex: startLegIndex,
444 |                         .credentials: self.credentials,
    |                                       `- warning: capture of 'self' with non-sendable type 'Directions' in a '@Sendable' closure
445 |                     ]
446 |
/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
449 |
450 |                         DispatchQueue.main.async {
451 |                             completionHandler(self.credentials, .failure(apiError))
    |                             |- warning: capture of 'completionHandler' with non-sendable type 'Directions.RouteRefreshCompletionHandler' (aka '(Credentials, Result<RouteRefreshResponse, DirectionsError>) -> ()') in a '@Sendable' closure
    |                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
452 |                         }
453 |                         return
/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
 14 |  A `RouteShapeFormat` indicates the format of a route or match shape in the raw HTTP response.
 15 |  */
 16 | public enum RouteShapeFormat: String, Codable {
    |             `- note: consider making enum 'RouteShapeFormat' conform to the 'Sendable' protocol
 17 |     /**
 18 |      The route’s shape is delivered in [GeoJSON](http://geojson.org/) format.
    :
 34 |     case polyline6
 35 |
 36 |     static let `default` = RouteShapeFormat.polyline
    |                |- 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
    |                |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 | }
 38 |
/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
 86 |  A number that influences whether a route should prefer or avoid roadways or pathways of a given type.
 87 |  */
 88 | public struct DirectionsPriority: Hashable, RawRepresentable, Codable {
    |               `- note: consider making struct 'DirectionsPriority' conform to the 'Sendable' protocol
 89 |     public init(rawValue: Double) {
 90 |         self.rawValue = rawValue
    :
 96 |      The priority level with which a route avoids a particular type of roadway or pathway.
 97 |      */
 98 |     static let low = DirectionsPriority(rawValue: -1.0)
    |                |- 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
    |                |- note: add '@MainActor' to make static property 'low' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |
100 |     /**
/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
 86 |  A number that influences whether a route should prefer or avoid roadways or pathways of a given type.
 87 |  */
 88 | public struct DirectionsPriority: Hashable, RawRepresentable, Codable {
    |               `- note: consider making struct 'DirectionsPriority' conform to the 'Sendable' protocol
 89 |     public init(rawValue: Double) {
 90 |         self.rawValue = rawValue
    :
101 |      The priority level with which a route neither avoids nor prefers a particular type of roadway or pathway.
102 |      */
103 |     static let medium = DirectionsPriority(rawValue: 0.0)
    |                |- 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
    |                |- note: add '@MainActor' to make static property 'medium' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |
105 |     /**
/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
 86 |  A number that influences whether a route should prefer or avoid roadways or pathways of a given type.
 87 |  */
 88 | public struct DirectionsPriority: Hashable, RawRepresentable, Codable {
    |               `- note: consider making struct 'DirectionsPriority' conform to the 'Sendable' protocol
 89 |     public init(rawValue: Double) {
 90 |         self.rawValue = rawValue
    :
106 |      The priority level with which a route prefers a particular type of roadway or pathway.
107 |      */
108 |     static let high = DirectionsPriority(rawValue: 1.0)
    |                |- 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
    |                |- note: add '@MainActor' to make static property 'high' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 | }
110 |
/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
 4 |  A `DrivingSide` indicates which side of the road cars and traffic flow.
 5 |  */
 6 | public enum DrivingSide: String, Codable {
   |             `- note: consider making enum 'DrivingSide' conform to the 'Sendable' protocol
 7 |     /**
 8 |      Indicates driving occurs on the `left` side.
   :
15 |     case right
16 |
17 |     static let `default` = DrivingSide.right
   |                |- 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
   |                |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
[134/149] Compiling MapboxDirections TollPrice.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 15 |      Payment is done by electronic toll collection.
 16 |      */
 17 |     public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
    |                       |- warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'electronicTollCollection' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     /**
 19 |      Payment is done by cash.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 19 |      Payment is done by cash.
 20 |      */
 21 |     public static let cash = TollPaymentMethod(identifier: "cash")
    |                       |- warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'cash' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | }
 23 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 37 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 38 |      */
 39 |     public static let small = TollCategory(name: "small")
    |                       |- warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'small' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |     /**
 41 |      A standard sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 43 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 44 |      */
 45 |     public static let standard = TollCategory(name: "standard")
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     /**
 47 |      A middle sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 49 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 50 |      */
 51 |     public static let middle = TollCategory(name: "middle")
    |                       |- warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'middle' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     /**
 53 |      A large sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 55 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 56 |      */
 57 |     public static let large = TollCategory(name: "large")
    |                       |- warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'large' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /**
 59 |      A jumbo sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 61 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 62 |      */
 63 |     public static let jumbo = TollCategory(name: "jumbo")
    |                       |- warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'jumbo' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:83:16: warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 81 |      Information about toll payment.
 82 |      */
 83 |     public let paymentMethod: TollPaymentMethod
    |                `- warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
 84 |     /**
 85 |      Toll category information.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:87:16: warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 85 |      Toll category information.
 86 |      */
 87 |     public let category: TollCategory
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 88 |     /**
 89 |      The actual toll price in `currencyCode` currency.
[135/149] Compiling MapboxDirections TrafficTendency.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 15 |      Payment is done by electronic toll collection.
 16 |      */
 17 |     public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
    |                       |- warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'electronicTollCollection' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     /**
 19 |      Payment is done by cash.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 19 |      Payment is done by cash.
 20 |      */
 21 |     public static let cash = TollPaymentMethod(identifier: "cash")
    |                       |- warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'cash' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | }
 23 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 37 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 38 |      */
 39 |     public static let small = TollCategory(name: "small")
    |                       |- warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'small' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |     /**
 41 |      A standard sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 43 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 44 |      */
 45 |     public static let standard = TollCategory(name: "standard")
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     /**
 47 |      A middle sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 49 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 50 |      */
 51 |     public static let middle = TollCategory(name: "middle")
    |                       |- warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'middle' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     /**
 53 |      A large sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 55 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 56 |      */
 57 |     public static let large = TollCategory(name: "large")
    |                       |- warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'large' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /**
 59 |      A jumbo sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 61 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 62 |      */
 63 |     public static let jumbo = TollCategory(name: "jumbo")
    |                       |- warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'jumbo' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:83:16: warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 81 |      Information about toll payment.
 82 |      */
 83 |     public let paymentMethod: TollPaymentMethod
    |                `- warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
 84 |     /**
 85 |      Toll category information.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:87:16: warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 85 |      Toll category information.
 86 |      */
 87 |     public let category: TollCategory
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 88 |     /**
 89 |      The actual toll price in `currencyCode` currency.
[136/149] Compiling MapboxDirections VisualInstruction.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 15 |      Payment is done by electronic toll collection.
 16 |      */
 17 |     public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
    |                       |- warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'electronicTollCollection' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     /**
 19 |      Payment is done by cash.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 19 |      Payment is done by cash.
 20 |      */
 21 |     public static let cash = TollPaymentMethod(identifier: "cash")
    |                       |- warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'cash' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | }
 23 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 37 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 38 |      */
 39 |     public static let small = TollCategory(name: "small")
    |                       |- warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'small' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |     /**
 41 |      A standard sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 43 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 44 |      */
 45 |     public static let standard = TollCategory(name: "standard")
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     /**
 47 |      A middle sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 49 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 50 |      */
 51 |     public static let middle = TollCategory(name: "middle")
    |                       |- warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'middle' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     /**
 53 |      A large sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 55 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 56 |      */
 57 |     public static let large = TollCategory(name: "large")
    |                       |- warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'large' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /**
 59 |      A jumbo sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 61 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 62 |      */
 63 |     public static let jumbo = TollCategory(name: "jumbo")
    |                       |- warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'jumbo' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:83:16: warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 81 |      Information about toll payment.
 82 |      */
 83 |     public let paymentMethod: TollPaymentMethod
    |                `- warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
 84 |     /**
 85 |      Toll category information.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:87:16: warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 85 |      Toll category information.
 86 |      */
 87 |     public let category: TollCategory
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 88 |     /**
 89 |      The actual toll price in `currencyCode` currency.
[137/149] Compiling MapboxDirections VisualInstructionBanner.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 15 |      Payment is done by electronic toll collection.
 16 |      */
 17 |     public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
    |                       |- warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'electronicTollCollection' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     /**
 19 |      Payment is done by cash.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 19 |      Payment is done by cash.
 20 |      */
 21 |     public static let cash = TollPaymentMethod(identifier: "cash")
    |                       |- warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'cash' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | }
 23 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 37 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 38 |      */
 39 |     public static let small = TollCategory(name: "small")
    |                       |- warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'small' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |     /**
 41 |      A standard sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 43 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 44 |      */
 45 |     public static let standard = TollCategory(name: "standard")
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     /**
 47 |      A middle sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 49 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 50 |      */
 51 |     public static let middle = TollCategory(name: "middle")
    |                       |- warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'middle' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     /**
 53 |      A large sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 55 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 56 |      */
 57 |     public static let large = TollCategory(name: "large")
    |                       |- warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'large' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /**
 59 |      A jumbo sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 61 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 62 |      */
 63 |     public static let jumbo = TollCategory(name: "jumbo")
    |                       |- warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'jumbo' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:83:16: warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 81 |      Information about toll payment.
 82 |      */
 83 |     public let paymentMethod: TollPaymentMethod
    |                `- warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
 84 |     /**
 85 |      Toll category information.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:87:16: warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 85 |      Toll category information.
 86 |      */
 87 |     public let category: TollCategory
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 88 |     /**
 89 |      The actual toll price in `currencyCode` currency.
[138/149] Compiling MapboxDirections VisualInstructionComponent.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 15 |      Payment is done by electronic toll collection.
 16 |      */
 17 |     public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
    |                       |- warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'electronicTollCollection' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     /**
 19 |      Payment is done by cash.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 19 |      Payment is done by cash.
 20 |      */
 21 |     public static let cash = TollPaymentMethod(identifier: "cash")
    |                       |- warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'cash' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | }
 23 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 37 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 38 |      */
 39 |     public static let small = TollCategory(name: "small")
    |                       |- warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'small' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |     /**
 41 |      A standard sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 43 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 44 |      */
 45 |     public static let standard = TollCategory(name: "standard")
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     /**
 47 |      A middle sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 49 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 50 |      */
 51 |     public static let middle = TollCategory(name: "middle")
    |                       |- warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'middle' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     /**
 53 |      A large sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 55 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 56 |      */
 57 |     public static let large = TollCategory(name: "large")
    |                       |- warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'large' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /**
 59 |      A jumbo sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 61 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 62 |      */
 63 |     public static let jumbo = TollCategory(name: "jumbo")
    |                       |- warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'jumbo' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:83:16: warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 81 |      Information about toll payment.
 82 |      */
 83 |     public let paymentMethod: TollPaymentMethod
    |                `- warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
 84 |     /**
 85 |      Toll category information.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:87:16: warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 85 |      Toll category information.
 86 |      */
 87 |     public let category: TollCategory
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 88 |     /**
 89 |      The actual toll price in `currencyCode` currency.
[139/149] Compiling MapboxDirections Waypoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:17:23: warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 15 |      Payment is done by electronic toll collection.
 16 |      */
 17 |     public static let electronicTollCollection = TollPaymentMethod(identifier: "etc")
    |                       |- warning: static property 'electronicTollCollection' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'electronicTollCollection' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |     /**
 19 |      Payment is done by cash.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:21:23: warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 19 |      Payment is done by cash.
 20 |      */
 21 |     public static let cash = TollPaymentMethod(identifier: "cash")
    |                       |- warning: static property 'cash' is not concurrency-safe because non-'Sendable' type 'TollPaymentMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'cash' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 | }
 23 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:39:23: warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 37 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 38 |      */
 39 |     public static let small = TollCategory(name: "small")
    |                       |- warning: static property 'small' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'small' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 40 |     /**
 41 |      A standard sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:45:23: warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 43 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 44 |      */
 45 |     public static let standard = TollCategory(name: "standard")
    |                       |- warning: static property 'standard' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     /**
 47 |      A middle sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:51:23: warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 49 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 50 |      */
 51 |     public static let middle = TollCategory(name: "middle")
    |                       |- warning: static property 'middle' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'middle' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     /**
 53 |      A large sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:57:23: warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 55 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 56 |      */
 57 |     public static let large = TollCategory(name: "large")
    |                       |- warning: static property 'large' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'large' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |     /**
 59 |      A jumbo sized vehicle.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:63:23: warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 61 |      In Japan, this is a [standard vehicle size](https://en.wikipedia.org/wiki/Expressways_of_Japan#Tolls).
 62 |      */
 63 |     public static let jumbo = TollCategory(name: "jumbo")
    |                       |- warning: static property 'jumbo' is not concurrency-safe because non-'Sendable' type 'TollCategory' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'jumbo' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:83:16: warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
  6 |  Information about toll payment method.
  7 |  */
  8 | public struct TollPaymentMethod: Hashable, Equatable {
    |               `- note: consider making struct 'TollPaymentMethod' conform to the 'Sendable' protocol
  9 |     /**
 10 |      Method identifier.
    :
 81 |      Information about toll payment.
 82 |      */
 83 |     public let paymentMethod: TollPaymentMethod
    |                `- warning: stored property 'paymentMethod' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollPaymentMethod'; this is an error in the Swift 6 language mode
 84 |     /**
 85 |      Toll category information.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/TollPrice.swift:87:16: warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 26 |  Categories by which toll fees are divided.
 27 |  */
 28 | public struct TollCategory: Hashable, Equatable {
    |               `- note: consider making struct 'TollCategory' conform to the 'Sendable' protocol
 29 |     /**
 30 |      Category name.
    :
 85 |      Toll category information.
 86 |      */
 87 |     public let category: TollCategory
    |                `- warning: stored property 'category' of 'Sendable'-conforming struct 'TollPrice' has non-sendable type 'TollCategory'; this is an error in the Swift 6 language mode
 88 |     /**
 89 |      The actual toll price in `currencyCode` currency.
[140/149] Compiling MapboxDirections String.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:148:16: warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
 80 |
 81 |     /// Represents the impact of the incident on local traffic.
 82 |     public enum Impact: String, Codable {
    |                 `- note: consider making enum 'Impact' conform to the 'Sendable' protocol
 83 |         /// Unknown impact
 84 |         case unknown
    :
146 |     public var endDate: Date
147 |     /// Shows severity of an incident. May be not available for all incident types.
148 |     public var impact: Impact?
    |                `- warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
149 |     /// Provides additional classification of an incident. May be not available for all incident types.
150 |     public var subtype: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:178:16: warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
176 |     ///
177 |     /// `nil` value indicates that lanes data is not available
178 |     public var lanesBlocked: BlockedLanes?
    |                `- warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
179 |     /// The range of segments within the overall leg, where the incident spans.
180 |     public var shapeIndexRange: Range<Int>
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  3 |
  4 | /// Defines a lane affected by the `Incident`
  5 | public struct BlockedLanes: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  6 |     public var rawValue: Int
  7 |     var stringKey: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:105:16: warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
103 |      If road class information is unavailable, this property is set to `nil`.
104 |      */
105 |     public let outletRoadClasses: RoadClasses?
    |                `- warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
106 |
107 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift:6:15: note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  4 | Option set that contains attributes of a road segment.
  5 | */
  6 | public struct RoadClasses: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  7 |     public var rawValue: Int
  8 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:112:16: warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
110 |      If detailed road class information is unavailable, this property is set to `nil`. This property only indicates the road classification; for other aspects of the road, use the `outletRoadClasses` property.
111 |      */
112 |     public let outletMapboxStreetsRoadClass: MapboxStreetsRoadClass?
    |                `- warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
113 |
114 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:162:16: warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
160 |      If no lane information is available for the intersection, this property’s value is `nil`. The first item corresponds to the leftmost lane, the second item corresponds to the second lane from the left, and so on, regardless of whether the surrounding country drives on the left or on the right.
161 |      */
162 |     public let approachLanes: [LaneIndication]?
    |                `- warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
163 |
164 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
  7 |  A Lane object has zero or more indications that usually correspond to arrows on signs or pavement markings. If no options are specified, it may be the case that no maneuvers are indicated on signage or pavement markings for the lane.
  8 |  */
  9 | public struct LaneIndication: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
 10 |     public var rawValue: Int
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:183:16: warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
181 |      If no lane information is available for the intersection, this property’s value is `nil`
182 |      */
183 |     public let usableLaneIndication: ManeuverDirection?
    |                `- warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
184 |
185 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 222 |  A `ManeuverDirection` clarifies a `ManeuverType` with directional information. The exact meaning of the maneuver direction for a given step depends on the step’s maneuver type; see the `ManeuverType` documentation for details.
 223 |  */
 224 | public enum ManeuverDirection: String, Codable {
     |             `- note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 225 |     /**
 226 |      The maneuver requires a sharp turn to the right.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:215:16: warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
213 |     /// An object containing information about routing and passing interchange along the route.
214 |     /// If such information is not available for an intersection, this property’s value is `nil`.
215 |     public let interchange: Interchange?
    |                `- warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
216 |
217 |     /// An object containing information about routing and passing junction along the route.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift:4:15: note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing interchange along the route.
 4 | public struct Interchange: Codable, Equatable {
   |               `- note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 5 |     /// The name of the interchange, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:219:16: warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
217 |     /// An object containing information about routing and passing junction along the route.
218 |     /// If such information is not available for an intersection, this property’s value is `nil`.
219 |     public let junction: Junction?
    |                `- warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
220 | }
221 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift:4:15: note: consider making struct 'Junction' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing junction along the route.
 4 | public struct Junction: Codable, Equatable {
   |               `- note: consider making struct 'Junction' conform to the 'Sendable' protocol
 5 |     /// The name of the junction, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:254:13: warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
252 |         }
253 |
254 |         let streetClass: MapboxStreetsRoadClass?
    |             `- warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
255 |
256 |         init(streetClass: MapboxStreetsRoadClass?) {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
[141/149] Compiling MapboxDirections URL+Request.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:148:16: warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
 80 |
 81 |     /// Represents the impact of the incident on local traffic.
 82 |     public enum Impact: String, Codable {
    |                 `- note: consider making enum 'Impact' conform to the 'Sendable' protocol
 83 |         /// Unknown impact
 84 |         case unknown
    :
146 |     public var endDate: Date
147 |     /// Shows severity of an incident. May be not available for all incident types.
148 |     public var impact: Impact?
    |                `- warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
149 |     /// Provides additional classification of an incident. May be not available for all incident types.
150 |     public var subtype: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:178:16: warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
176 |     ///
177 |     /// `nil` value indicates that lanes data is not available
178 |     public var lanesBlocked: BlockedLanes?
    |                `- warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
179 |     /// The range of segments within the overall leg, where the incident spans.
180 |     public var shapeIndexRange: Range<Int>
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  3 |
  4 | /// Defines a lane affected by the `Incident`
  5 | public struct BlockedLanes: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  6 |     public var rawValue: Int
  7 |     var stringKey: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:105:16: warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
103 |      If road class information is unavailable, this property is set to `nil`.
104 |      */
105 |     public let outletRoadClasses: RoadClasses?
    |                `- warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
106 |
107 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift:6:15: note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  4 | Option set that contains attributes of a road segment.
  5 | */
  6 | public struct RoadClasses: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  7 |     public var rawValue: Int
  8 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:112:16: warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
110 |      If detailed road class information is unavailable, this property is set to `nil`. This property only indicates the road classification; for other aspects of the road, use the `outletRoadClasses` property.
111 |      */
112 |     public let outletMapboxStreetsRoadClass: MapboxStreetsRoadClass?
    |                `- warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
113 |
114 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:162:16: warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
160 |      If no lane information is available for the intersection, this property’s value is `nil`. The first item corresponds to the leftmost lane, the second item corresponds to the second lane from the left, and so on, regardless of whether the surrounding country drives on the left or on the right.
161 |      */
162 |     public let approachLanes: [LaneIndication]?
    |                `- warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
163 |
164 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
  7 |  A Lane object has zero or more indications that usually correspond to arrows on signs or pavement markings. If no options are specified, it may be the case that no maneuvers are indicated on signage or pavement markings for the lane.
  8 |  */
  9 | public struct LaneIndication: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
 10 |     public var rawValue: Int
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:183:16: warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
181 |      If no lane information is available for the intersection, this property’s value is `nil`
182 |      */
183 |     public let usableLaneIndication: ManeuverDirection?
    |                `- warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
184 |
185 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 222 |  A `ManeuverDirection` clarifies a `ManeuverType` with directional information. The exact meaning of the maneuver direction for a given step depends on the step’s maneuver type; see the `ManeuverType` documentation for details.
 223 |  */
 224 | public enum ManeuverDirection: String, Codable {
     |             `- note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 225 |     /**
 226 |      The maneuver requires a sharp turn to the right.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:215:16: warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
213 |     /// An object containing information about routing and passing interchange along the route.
214 |     /// If such information is not available for an intersection, this property’s value is `nil`.
215 |     public let interchange: Interchange?
    |                `- warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
216 |
217 |     /// An object containing information about routing and passing junction along the route.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift:4:15: note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing interchange along the route.
 4 | public struct Interchange: Codable, Equatable {
   |               `- note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 5 |     /// The name of the interchange, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:219:16: warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
217 |     /// An object containing information about routing and passing junction along the route.
218 |     /// If such information is not available for an intersection, this property’s value is `nil`.
219 |     public let junction: Junction?
    |                `- warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
220 | }
221 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift:4:15: note: consider making struct 'Junction' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing junction along the route.
 4 | public struct Junction: Codable, Equatable {
   |               `- note: consider making struct 'Junction' conform to the 'Sendable' protocol
 5 |     /// The name of the junction, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:254:13: warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
252 |         }
253 |
254 |         let streetClass: MapboxStreetsRoadClass?
    |             `- warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
255 |
256 |         init(streetClass: MapboxStreetsRoadClass?) {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
[142/149] Compiling MapboxDirections Incident.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:148:16: warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
 80 |
 81 |     /// Represents the impact of the incident on local traffic.
 82 |     public enum Impact: String, Codable {
    |                 `- note: consider making enum 'Impact' conform to the 'Sendable' protocol
 83 |         /// Unknown impact
 84 |         case unknown
    :
146 |     public var endDate: Date
147 |     /// Shows severity of an incident. May be not available for all incident types.
148 |     public var impact: Impact?
    |                `- warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
149 |     /// Provides additional classification of an incident. May be not available for all incident types.
150 |     public var subtype: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:178:16: warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
176 |     ///
177 |     /// `nil` value indicates that lanes data is not available
178 |     public var lanesBlocked: BlockedLanes?
    |                `- warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
179 |     /// The range of segments within the overall leg, where the incident spans.
180 |     public var shapeIndexRange: Range<Int>
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  3 |
  4 | /// Defines a lane affected by the `Incident`
  5 | public struct BlockedLanes: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  6 |     public var rawValue: Int
  7 |     var stringKey: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:105:16: warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
103 |      If road class information is unavailable, this property is set to `nil`.
104 |      */
105 |     public let outletRoadClasses: RoadClasses?
    |                `- warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
106 |
107 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift:6:15: note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  4 | Option set that contains attributes of a road segment.
  5 | */
  6 | public struct RoadClasses: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  7 |     public var rawValue: Int
  8 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:112:16: warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
110 |      If detailed road class information is unavailable, this property is set to `nil`. This property only indicates the road classification; for other aspects of the road, use the `outletRoadClasses` property.
111 |      */
112 |     public let outletMapboxStreetsRoadClass: MapboxStreetsRoadClass?
    |                `- warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
113 |
114 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:162:16: warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
160 |      If no lane information is available for the intersection, this property’s value is `nil`. The first item corresponds to the leftmost lane, the second item corresponds to the second lane from the left, and so on, regardless of whether the surrounding country drives on the left or on the right.
161 |      */
162 |     public let approachLanes: [LaneIndication]?
    |                `- warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
163 |
164 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
  7 |  A Lane object has zero or more indications that usually correspond to arrows on signs or pavement markings. If no options are specified, it may be the case that no maneuvers are indicated on signage or pavement markings for the lane.
  8 |  */
  9 | public struct LaneIndication: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
 10 |     public var rawValue: Int
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:183:16: warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
181 |      If no lane information is available for the intersection, this property’s value is `nil`
182 |      */
183 |     public let usableLaneIndication: ManeuverDirection?
    |                `- warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
184 |
185 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 222 |  A `ManeuverDirection` clarifies a `ManeuverType` with directional information. The exact meaning of the maneuver direction for a given step depends on the step’s maneuver type; see the `ManeuverType` documentation for details.
 223 |  */
 224 | public enum ManeuverDirection: String, Codable {
     |             `- note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 225 |     /**
 226 |      The maneuver requires a sharp turn to the right.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:215:16: warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
213 |     /// An object containing information about routing and passing interchange along the route.
214 |     /// If such information is not available for an intersection, this property’s value is `nil`.
215 |     public let interchange: Interchange?
    |                `- warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
216 |
217 |     /// An object containing information about routing and passing junction along the route.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift:4:15: note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing interchange along the route.
 4 | public struct Interchange: Codable, Equatable {
   |               `- note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 5 |     /// The name of the interchange, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:219:16: warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
217 |     /// An object containing information about routing and passing junction along the route.
218 |     /// If such information is not available for an intersection, this property’s value is `nil`.
219 |     public let junction: Junction?
    |                `- warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
220 | }
221 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift:4:15: note: consider making struct 'Junction' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing junction along the route.
 4 | public struct Junction: Codable, Equatable {
   |               `- note: consider making struct 'Junction' conform to the 'Sendable' protocol
 5 |     /// The name of the junction, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:254:13: warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
252 |         }
253 |
254 |         let streetClass: MapboxStreetsRoadClass?
    |             `- warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
255 |
256 |         init(streetClass: MapboxStreetsRoadClass?) {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
[143/149] Compiling MapboxDirections Interchange.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:148:16: warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
 80 |
 81 |     /// Represents the impact of the incident on local traffic.
 82 |     public enum Impact: String, Codable {
    |                 `- note: consider making enum 'Impact' conform to the 'Sendable' protocol
 83 |         /// Unknown impact
 84 |         case unknown
    :
146 |     public var endDate: Date
147 |     /// Shows severity of an incident. May be not available for all incident types.
148 |     public var impact: Impact?
    |                `- warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
149 |     /// Provides additional classification of an incident. May be not available for all incident types.
150 |     public var subtype: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:178:16: warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
176 |     ///
177 |     /// `nil` value indicates that lanes data is not available
178 |     public var lanesBlocked: BlockedLanes?
    |                `- warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
179 |     /// The range of segments within the overall leg, where the incident spans.
180 |     public var shapeIndexRange: Range<Int>
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  3 |
  4 | /// Defines a lane affected by the `Incident`
  5 | public struct BlockedLanes: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  6 |     public var rawValue: Int
  7 |     var stringKey: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:105:16: warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
103 |      If road class information is unavailable, this property is set to `nil`.
104 |      */
105 |     public let outletRoadClasses: RoadClasses?
    |                `- warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
106 |
107 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift:6:15: note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  4 | Option set that contains attributes of a road segment.
  5 | */
  6 | public struct RoadClasses: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  7 |     public var rawValue: Int
  8 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:112:16: warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
110 |      If detailed road class information is unavailable, this property is set to `nil`. This property only indicates the road classification; for other aspects of the road, use the `outletRoadClasses` property.
111 |      */
112 |     public let outletMapboxStreetsRoadClass: MapboxStreetsRoadClass?
    |                `- warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
113 |
114 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:162:16: warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
160 |      If no lane information is available for the intersection, this property’s value is `nil`. The first item corresponds to the leftmost lane, the second item corresponds to the second lane from the left, and so on, regardless of whether the surrounding country drives on the left or on the right.
161 |      */
162 |     public let approachLanes: [LaneIndication]?
    |                `- warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
163 |
164 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
  7 |  A Lane object has zero or more indications that usually correspond to arrows on signs or pavement markings. If no options are specified, it may be the case that no maneuvers are indicated on signage or pavement markings for the lane.
  8 |  */
  9 | public struct LaneIndication: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
 10 |     public var rawValue: Int
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:183:16: warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
181 |      If no lane information is available for the intersection, this property’s value is `nil`
182 |      */
183 |     public let usableLaneIndication: ManeuverDirection?
    |                `- warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
184 |
185 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 222 |  A `ManeuverDirection` clarifies a `ManeuverType` with directional information. The exact meaning of the maneuver direction for a given step depends on the step’s maneuver type; see the `ManeuverType` documentation for details.
 223 |  */
 224 | public enum ManeuverDirection: String, Codable {
     |             `- note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 225 |     /**
 226 |      The maneuver requires a sharp turn to the right.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:215:16: warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
213 |     /// An object containing information about routing and passing interchange along the route.
214 |     /// If such information is not available for an intersection, this property’s value is `nil`.
215 |     public let interchange: Interchange?
    |                `- warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
216 |
217 |     /// An object containing information about routing and passing junction along the route.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift:4:15: note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing interchange along the route.
 4 | public struct Interchange: Codable, Equatable {
   |               `- note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 5 |     /// The name of the interchange, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:219:16: warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
217 |     /// An object containing information about routing and passing junction along the route.
218 |     /// If such information is not available for an intersection, this property’s value is `nil`.
219 |     public let junction: Junction?
    |                `- warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
220 | }
221 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift:4:15: note: consider making struct 'Junction' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing junction along the route.
 4 | public struct Junction: Codable, Equatable {
   |               `- note: consider making struct 'Junction' conform to the 'Sendable' protocol
 5 |     /// The name of the junction, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:254:13: warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
252 |         }
253 |
254 |         let streetClass: MapboxStreetsRoadClass?
    |             `- warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
255 |
256 |         init(streetClass: MapboxStreetsRoadClass?) {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
[144/149] Compiling MapboxDirections Intersection.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:148:16: warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
 80 |
 81 |     /// Represents the impact of the incident on local traffic.
 82 |     public enum Impact: String, Codable {
    |                 `- note: consider making enum 'Impact' conform to the 'Sendable' protocol
 83 |         /// Unknown impact
 84 |         case unknown
    :
146 |     public var endDate: Date
147 |     /// Shows severity of an incident. May be not available for all incident types.
148 |     public var impact: Impact?
    |                `- warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
149 |     /// Provides additional classification of an incident. May be not available for all incident types.
150 |     public var subtype: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:178:16: warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
176 |     ///
177 |     /// `nil` value indicates that lanes data is not available
178 |     public var lanesBlocked: BlockedLanes?
    |                `- warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
179 |     /// The range of segments within the overall leg, where the incident spans.
180 |     public var shapeIndexRange: Range<Int>
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  3 |
  4 | /// Defines a lane affected by the `Incident`
  5 | public struct BlockedLanes: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  6 |     public var rawValue: Int
  7 |     var stringKey: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:105:16: warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
103 |      If road class information is unavailable, this property is set to `nil`.
104 |      */
105 |     public let outletRoadClasses: RoadClasses?
    |                `- warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
106 |
107 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift:6:15: note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  4 | Option set that contains attributes of a road segment.
  5 | */
  6 | public struct RoadClasses: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  7 |     public var rawValue: Int
  8 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:112:16: warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
110 |      If detailed road class information is unavailable, this property is set to `nil`. This property only indicates the road classification; for other aspects of the road, use the `outletRoadClasses` property.
111 |      */
112 |     public let outletMapboxStreetsRoadClass: MapboxStreetsRoadClass?
    |                `- warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
113 |
114 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:162:16: warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
160 |      If no lane information is available for the intersection, this property’s value is `nil`. The first item corresponds to the leftmost lane, the second item corresponds to the second lane from the left, and so on, regardless of whether the surrounding country drives on the left or on the right.
161 |      */
162 |     public let approachLanes: [LaneIndication]?
    |                `- warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
163 |
164 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
  7 |  A Lane object has zero or more indications that usually correspond to arrows on signs or pavement markings. If no options are specified, it may be the case that no maneuvers are indicated on signage or pavement markings for the lane.
  8 |  */
  9 | public struct LaneIndication: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
 10 |     public var rawValue: Int
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:183:16: warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
181 |      If no lane information is available for the intersection, this property’s value is `nil`
182 |      */
183 |     public let usableLaneIndication: ManeuverDirection?
    |                `- warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
184 |
185 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 222 |  A `ManeuverDirection` clarifies a `ManeuverType` with directional information. The exact meaning of the maneuver direction for a given step depends on the step’s maneuver type; see the `ManeuverType` documentation for details.
 223 |  */
 224 | public enum ManeuverDirection: String, Codable {
     |             `- note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 225 |     /**
 226 |      The maneuver requires a sharp turn to the right.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:215:16: warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
213 |     /// An object containing information about routing and passing interchange along the route.
214 |     /// If such information is not available for an intersection, this property’s value is `nil`.
215 |     public let interchange: Interchange?
    |                `- warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
216 |
217 |     /// An object containing information about routing and passing junction along the route.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift:4:15: note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing interchange along the route.
 4 | public struct Interchange: Codable, Equatable {
   |               `- note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 5 |     /// The name of the interchange, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:219:16: warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
217 |     /// An object containing information about routing and passing junction along the route.
218 |     /// If such information is not available for an intersection, this property’s value is `nil`.
219 |     public let junction: Junction?
    |                `- warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
220 | }
221 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift:4:15: note: consider making struct 'Junction' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing junction along the route.
 4 | public struct Junction: Codable, Equatable {
   |               `- note: consider making struct 'Junction' conform to the 'Sendable' protocol
 5 |     /// The name of the junction, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:254:13: warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
252 |         }
253 |
254 |         let streetClass: MapboxStreetsRoadClass?
    |             `- warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
255 |
256 |         init(streetClass: MapboxStreetsRoadClass?) {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
[145/149] Compiling MapboxDirections IsochroneError.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:148:16: warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
 80 |
 81 |     /// Represents the impact of the incident on local traffic.
 82 |     public enum Impact: String, Codable {
    |                 `- note: consider making enum 'Impact' conform to the 'Sendable' protocol
 83 |         /// Unknown impact
 84 |         case unknown
    :
146 |     public var endDate: Date
147 |     /// Shows severity of an incident. May be not available for all incident types.
148 |     public var impact: Impact?
    |                `- warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
149 |     /// Provides additional classification of an incident. May be not available for all incident types.
150 |     public var subtype: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:178:16: warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
176 |     ///
177 |     /// `nil` value indicates that lanes data is not available
178 |     public var lanesBlocked: BlockedLanes?
    |                `- warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
179 |     /// The range of segments within the overall leg, where the incident spans.
180 |     public var shapeIndexRange: Range<Int>
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  3 |
  4 | /// Defines a lane affected by the `Incident`
  5 | public struct BlockedLanes: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  6 |     public var rawValue: Int
  7 |     var stringKey: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:105:16: warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
103 |      If road class information is unavailable, this property is set to `nil`.
104 |      */
105 |     public let outletRoadClasses: RoadClasses?
    |                `- warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
106 |
107 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift:6:15: note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  4 | Option set that contains attributes of a road segment.
  5 | */
  6 | public struct RoadClasses: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  7 |     public var rawValue: Int
  8 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:112:16: warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
110 |      If detailed road class information is unavailable, this property is set to `nil`. This property only indicates the road classification; for other aspects of the road, use the `outletRoadClasses` property.
111 |      */
112 |     public let outletMapboxStreetsRoadClass: MapboxStreetsRoadClass?
    |                `- warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
113 |
114 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:162:16: warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
160 |      If no lane information is available for the intersection, this property’s value is `nil`. The first item corresponds to the leftmost lane, the second item corresponds to the second lane from the left, and so on, regardless of whether the surrounding country drives on the left or on the right.
161 |      */
162 |     public let approachLanes: [LaneIndication]?
    |                `- warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
163 |
164 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
  7 |  A Lane object has zero or more indications that usually correspond to arrows on signs or pavement markings. If no options are specified, it may be the case that no maneuvers are indicated on signage or pavement markings for the lane.
  8 |  */
  9 | public struct LaneIndication: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
 10 |     public var rawValue: Int
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:183:16: warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
181 |      If no lane information is available for the intersection, this property’s value is `nil`
182 |      */
183 |     public let usableLaneIndication: ManeuverDirection?
    |                `- warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
184 |
185 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 222 |  A `ManeuverDirection` clarifies a `ManeuverType` with directional information. The exact meaning of the maneuver direction for a given step depends on the step’s maneuver type; see the `ManeuverType` documentation for details.
 223 |  */
 224 | public enum ManeuverDirection: String, Codable {
     |             `- note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 225 |     /**
 226 |      The maneuver requires a sharp turn to the right.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:215:16: warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
213 |     /// An object containing information about routing and passing interchange along the route.
214 |     /// If such information is not available for an intersection, this property’s value is `nil`.
215 |     public let interchange: Interchange?
    |                `- warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
216 |
217 |     /// An object containing information about routing and passing junction along the route.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift:4:15: note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing interchange along the route.
 4 | public struct Interchange: Codable, Equatable {
   |               `- note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 5 |     /// The name of the interchange, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:219:16: warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
217 |     /// An object containing information about routing and passing junction along the route.
218 |     /// If such information is not available for an intersection, this property’s value is `nil`.
219 |     public let junction: Junction?
    |                `- warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
220 | }
221 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift:4:15: note: consider making struct 'Junction' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing junction along the route.
 4 | public struct Junction: Codable, Equatable {
   |               `- note: consider making struct 'Junction' conform to the 'Sendable' protocol
 5 |     /// The name of the junction, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:254:13: warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
252 |         }
253 |
254 |         let streetClass: MapboxStreetsRoadClass?
    |             `- warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
255 |
256 |         init(streetClass: MapboxStreetsRoadClass?) {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
[146/149] Compiling MapboxDirections IsochroneOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:148:16: warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
 80 |
 81 |     /// Represents the impact of the incident on local traffic.
 82 |     public enum Impact: String, Codable {
    |                 `- note: consider making enum 'Impact' conform to the 'Sendable' protocol
 83 |         /// Unknown impact
 84 |         case unknown
    :
146 |     public var endDate: Date
147 |     /// Shows severity of an incident. May be not available for all incident types.
148 |     public var impact: Impact?
    |                `- warning: stored property 'impact' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'Incident.Impact?'; this is an error in the Swift 6 language mode
149 |     /// Provides additional classification of an incident. May be not available for all incident types.
150 |     public var subtype: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Incident.swift:178:16: warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
176 |     ///
177 |     /// `nil` value indicates that lanes data is not available
178 |     public var lanesBlocked: BlockedLanes?
    |                `- warning: stored property 'lanesBlocked' of 'Sendable'-conforming struct 'Incident' has non-sendable type 'BlockedLanes?'; this is an error in the Swift 6 language mode
179 |     /// The range of segments within the overall leg, where the incident spans.
180 |     public var shapeIndexRange: Range<Int>
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/BlockedLanes.swift:5:15: note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  3 |
  4 | /// Defines a lane affected by the `Incident`
  5 | public struct BlockedLanes: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'BlockedLanes' conform to the 'Sendable' protocol
  6 |     public var rawValue: Int
  7 |     var stringKey: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:105:16: warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
103 |      If road class information is unavailable, this property is set to `nil`.
104 |      */
105 |     public let outletRoadClasses: RoadClasses?
    |                `- warning: stored property 'outletRoadClasses' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'RoadClasses?'; this is an error in the Swift 6 language mode
106 |
107 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RoadClasses.swift:6:15: note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  4 | Option set that contains attributes of a road segment.
  5 | */
  6 | public struct RoadClasses: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'RoadClasses' conform to the 'Sendable' protocol
  7 |     public var rawValue: Int
  8 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:112:16: warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
110 |      If detailed road class information is unavailable, this property is set to `nil`. This property only indicates the road classification; for other aspects of the road, use the `outletRoadClasses` property.
111 |      */
112 |     public let outletMapboxStreetsRoadClass: MapboxStreetsRoadClass?
    |                `- warning: stored property 'outletMapboxStreetsRoadClass' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
113 |
114 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:162:16: warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
160 |      If no lane information is available for the intersection, this property’s value is `nil`. The first item corresponds to the leftmost lane, the second item corresponds to the second lane from the left, and so on, regardless of whether the surrounding country drives on the left or on the right.
161 |      */
162 |     public let approachLanes: [LaneIndication]?
    |                `- warning: stored property 'approachLanes' of 'Sendable'-conforming struct 'Intersection' has non-sendable type '[LaneIndication]?'; this is an error in the Swift 6 language mode
163 |
164 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/LaneIndication.swift:9:15: note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
  7 |  A Lane object has zero or more indications that usually correspond to arrows on signs or pavement markings. If no options are specified, it may be the case that no maneuvers are indicated on signage or pavement markings for the lane.
  8 |  */
  9 | public struct LaneIndication: OptionSet, CustomStringConvertible {
    |               `- note: consider making struct 'LaneIndication' conform to the 'Sendable' protocol
 10 |     public var rawValue: Int
 11 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:183:16: warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
181 |      If no lane information is available for the intersection, this property’s value is `nil`
182 |      */
183 |     public let usableLaneIndication: ManeuverDirection?
    |                `- warning: stored property 'usableLaneIndication' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'ManeuverDirection?'; this is an error in the Swift 6 language mode
184 |
185 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/RouteStep.swift:224:13: note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 222 |  A `ManeuverDirection` clarifies a `ManeuverType` with directional information. The exact meaning of the maneuver direction for a given step depends on the step’s maneuver type; see the `ManeuverType` documentation for details.
 223 |  */
 224 | public enum ManeuverDirection: String, Codable {
     |             `- note: consider making enum 'ManeuverDirection' conform to the 'Sendable' protocol
 225 |     /**
 226 |      The maneuver requires a sharp turn to the right.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:215:16: warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
213 |     /// An object containing information about routing and passing interchange along the route.
214 |     /// If such information is not available for an intersection, this property’s value is `nil`.
215 |     public let interchange: Interchange?
    |                `- warning: stored property 'interchange' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Interchange?'; this is an error in the Swift 6 language mode
216 |
217 |     /// An object containing information about routing and passing junction along the route.
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Interchange.swift:4:15: note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing interchange along the route.
 4 | public struct Interchange: Codable, Equatable {
   |               `- note: consider making struct 'Interchange' conform to the 'Sendable' protocol
 5 |     /// The name of the interchange, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:219:16: warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
217 |     /// An object containing information about routing and passing junction along the route.
218 |     /// If such information is not available for an intersection, this property’s value is `nil`.
219 |     public let junction: Junction?
    |                `- warning: stored property 'junction' of 'Sendable'-conforming struct 'Intersection' has non-sendable type 'Junction?'; this is an error in the Swift 6 language mode
220 | }
221 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Junction.swift:4:15: note: consider making struct 'Junction' conform to the 'Sendable' protocol
 2 |
 3 | /// Contains information about routing and passing junction along the route.
 4 | public struct Junction: Codable, Equatable {
   |               `- note: consider making struct 'Junction' conform to the 'Sendable' protocol
 5 |     /// The name of the junction, if available.
 6 |     public let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Intersection.swift:254:13: warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
252 |         }
253 |
254 |         let streetClass: MapboxStreetsRoadClass?
    |             `- warning: stored property 'streetClass' of 'Sendable'-conforming struct 'MapboxStreetClassCodable' has non-sendable type 'MapboxStreetsRoadClass?'; this is an error in the Swift 6 language mode
255 |
256 |         init(streetClass: MapboxStreetsRoadClass?) {
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/MapboxStreetsRoadClass.swift:5:13: note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 3 |
 4 | /// A road classification according to the [Mapbox Streets source](https://docs.mapbox.com/vector-tiles/reference/mapbox-streets-v8/#road) , version 8.
 5 | public enum MapboxStreetsRoadClass: String, Codable {
   |             `- note: consider making enum 'MapboxStreetsRoadClass' conform to the 'Sendable' protocol
 6 |     /// High-speed, grade-separated highways
 7 |     case motorway = "motorway"
[147/152] Emitting module MapboxDirectionsCLI
/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
46 |     }
47 |
48 |     static var configuration = CommandConfiguration(
   |                |- 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
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |         commandName: "mapbox-directions-swift",
50 |         abstract: "'mapbox-directions-swift' is a command line tool, designed to round-trip an arbitrary, JSON-formatted Directions or Map Matching API response through model objects and back to JSON.",
/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
61 | extension Command {
62 |     struct Match: ParsableCommand {
63 |         static var configuration =
   |                    |- 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
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |             CommandConfiguration(commandName: "match",
65 |                                     abstract: "Command to process Map Matching Data.")
/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
79 | extension Command {
80 |     struct Route: ParsableCommand {
81 |         static var configuration =
   |                    |- 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
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |                     CommandConfiguration(commandName: "route",
83 |                                          abstract: "Command to process Routing Data.")
[148/152] Compiling MapboxDirectionsCLI CodingOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:139:13: warning: mutation of captured var 'responseData' in concurrently-executing code
137 |             }
138 |
139 |             responseData = data
    |             `- warning: mutation of captured var 'responseData' in concurrently-executing code
140 |             semaphore.signal()
141 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:195:39: warning: type 'OptionsType' does not conform to the 'Sendable' protocol
 18 | }
 19 |
 20 | class CodingOperation<ResponseType : Codable & DirectionsResultsProvider, OptionsType : DirectionsOptions > {
    |                                                                           `- note: consider making generic parameter 'OptionsType' conform to the 'Sendable' protocol
 21 |
 22 |     // MARK: - Parameters
    :
193 |
194 |         let decoder = JSONDecoder()
195 |         decoder.userInfo = [.options: directionsOptions,
    |                                       `- warning: type 'OptionsType' does not conform to the 'Sendable' protocol
196 |                             .credentials: credentials]
197 |
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:196:43: warning: type 'Credentials' does not conform to the 'Sendable' protocol
194 |         let decoder = JSONDecoder()
195 |         decoder.userInfo = [.options: directionsOptions,
196 |                             .credentials: credentials]
    |                                           `- warning: type 'Credentials' does not conform to the 'Sendable' protocol
197 |
198 |         let (data, directionsResultsProvider) = try processResponse(decoder, from: input)
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirections/Credentials.swift:10:15: note: struct 'Credentials' does not conform to the 'Sendable' protocol
 8 | let defaultApiEndPointURLString = Bundle.main.object(forInfoDictionaryKey: "MGLMapboxAPIBaseURL") as? String
 9 |
10 | public struct Credentials: Equatable {
   |               `- note: struct 'Credentials' does not conform to the 'Sendable' protocol
11 |
12 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/MapboxDirectionsCLI/CodingOperation.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'MapboxDirections'
  1 | import Foundation
  2 | import MapboxDirections
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'MapboxDirections'
  3 | import Turf
  4 | #if canImport(FoundationNetworking)
[149/152] Compiling MapboxDirectionsCLI main.swift
/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
46 |     }
47 |
48 |     static var configuration = CommandConfiguration(
   |                |- 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
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |         commandName: "mapbox-directions-swift",
50 |         abstract: "'mapbox-directions-swift' is a command line tool, designed to round-trip an arbitrary, JSON-formatted Directions or Map Matching API response through model objects and back to JSON.",
/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
61 | extension Command {
62 |     struct Match: ParsableCommand {
63 |         static var configuration =
   |                    |- 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
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 |             CommandConfiguration(commandName: "match",
65 |                                     abstract: "Command to process Map Matching Data.")
/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
79 | extension Command {
80 |     struct Route: ParsableCommand {
81 |         static var configuration =
   |                    |- 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
   |                    |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 |                     CommandConfiguration(commandName: "route",
83 |                                          abstract: "Command to process Routing Data.")
[149/152] Write Objects.LinkFileList
[150/152] Linking mapbox-directions-swift
[151/152] Applying mapbox-directions-swift
Build complete! (15.84s)
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",
        "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.