The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build yubatake, reference master (36585b), with Swift 6.1 for Linux on 26 Apr 2025 12:54:25 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
22 |             api.post("themes", use: controller.store)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 |         }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 |         do {
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
   |                                                                 `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
   |                                              `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 |             api.post("files", use: controller.store)
31 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 |         }
32 |     }
[2897/2904] Compiling App SiteInfo.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:14:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
12 |         do {
13 |             let controller = API.ImageController()
14 |             api.get("images", use: controller.index)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
15 |             api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
16 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:15:83: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
13 |             let controller = API.ImageController()
14 |             api.get("images", use: controller.index)
15 |             api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
   |                                                                                   `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
16 |         }
17 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:21:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
19 |         do {
20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
22 |             api.post("themes", use: controller.store)
23 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:22:48: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
22 |             api.post("themes", use: controller.store)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 |         }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 |         do {
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
   |                                                                 `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
   |                                              `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 |             api.post("files", use: controller.store)
31 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 |         }
32 |     }
[2898/2904] Compiling App Tag.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:14:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
12 |         do {
13 |             let controller = API.ImageController()
14 |             api.get("images", use: controller.index)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
15 |             api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
16 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:15:83: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
13 |             let controller = API.ImageController()
14 |             api.get("images", use: controller.index)
15 |             api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
   |                                                                                   `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
16 |         }
17 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:21:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
19 |         do {
20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
22 |             api.post("themes", use: controller.store)
23 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:22:48: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
22 |             api.post("themes", use: controller.store)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 |         }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 |         do {
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
   |                                                                 `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
   |                                              `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 |             api.post("files", use: controller.store)
31 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 |         }
32 |     }
[2899/2904] Compiling App User.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:14:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
12 |         do {
13 |             let controller = API.ImageController()
14 |             api.get("images", use: controller.index)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
15 |             api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
16 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:15:83: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
13 |             let controller = API.ImageController()
14 |             api.get("images", use: controller.index)
15 |             api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
   |                                                                                   `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
16 |         }
17 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:21:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
19 |         do {
20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
22 |             api.post("themes", use: controller.store)
23 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:22:48: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
22 |             api.post("themes", use: controller.store)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 |         }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 |         do {
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
   |                                                                 `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
   |                                              `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 |             api.post("files", use: controller.store)
31 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 |         }
32 |     }
[2900/2904] Compiling App APIRoutes.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:14:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
12 |         do {
13 |             let controller = API.ImageController()
14 |             api.get("images", use: controller.index)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<PageResponse<ImageGroup>>' may introduce data races
15 |             api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
16 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:15:83: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
13 |             let controller = API.ImageController()
14 |             api.get("images", use: controller.index)
15 |             api.on(.POST, "images", body: .collect(maxSize: nil), use: controller.store)
   |                                                                                   `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
16 |         }
17 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:21:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
19 |         do {
20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[Theme]>' may introduce data races
22 |             api.post("themes", use: controller.store)
23 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:22:48: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
20 |             let controller = API.ThemeController()
21 |             api.get("themes", use: controller.index)
22 |             api.post("themes", use: controller.store)
   |                                                `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
23 |         }
24 |
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:28:65: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
26 |         do {
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
   |                                                                 `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<[EditableFileGroup]>' may introduce data races
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:29:46: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
27 |             let controller = API.FileController()
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
   |                                              `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<EditableFileBody>' may introduce data races
30 |             api.post("files", use: controller.store)
31 |         }
/host/spi-builder-workspace/Sources/App/Routes/APIRoutes.swift:30:47: warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
28 |             api.get("themes", ":name", "files", use: controller.index)
29 |             api.get("files", use: controller.show)
30 |             api.post("files", use: controller.store)
   |                                               `- warning: converting non-sendable function value to '@Sendable (Request) throws -> EventLoopFuture<Response>' may introduce data races
31 |         }
32 |     }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/73] Write swift-version-24593BA9C3E375BF.txt
[2/141] Compiling SystemPackage FilePathWindows.swift
[3/141] Compiling SystemPackage FilePermissions.swift
[4/166] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[5/166] Compiling Atomics AtomicOptionalWrappable.swift
[6/166] Compiling Atomics AtomicReference.swift
[7/166] Compiling ServiceContextModule ServiceContextKey.swift
[8/166] Compiling Atomics AtomicMemoryOrderings.swift
[9/166] Compiling Atomics DoubleWord.swift
[10/166] Compiling Atomics UnsafeAtomic.swift
[11/166] Compiling Atomics UnsafeAtomicLazyReference.swift
[12/166] Emitting module ServiceContextModule
[13/166] Compiling ServiceContextModule ServiceContext.swift
[14/167] Compiling CryptoBoringWrapper RandomBytes.swift
[15/167] Compiling Atomics ManagedAtomic.swift
[16/167] Compiling Atomics ManagedAtomicLazyReference.swift
[19/169] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[22/169] Emitting module Cryptor
[23/169] Compiling Cryptor SSLPointerTricks.swift
[27/170] Compiling Atomics IntegerOperations.swift
[28/170] Compiling Atomics Unmanaged extensions.swift
[29/172] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[30/172] Compiling Cryptor Updatable.swift
[31/172] Compiling CryptoBoringWrapper EllipticCurve.swift
[32/176] Compiling Atomics AtomicBool.swift
[33/176] Compiling Atomics IntegerConformances.swift
[35/176] Compiling Atomics AtomicStorage.swift
[36/176] Compiling Atomics AtomicValue.swift
[37/176] Compiling Atomics Primitives.shims.swift
[38/176] Compiling Atomics AtomicInteger.swift
[40/176] Compiling Atomics OptionalRawRepresentable.swift
[41/176] Compiling Atomics RawRepresentable.swift
[42/176] Compiling Atomics PointerConformances.swift
[43/176] Compiling Atomics Primitives.native.swift
[46/176] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[47/176] Emitting module CryptoBoringWrapper
[48/176] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[49/177] Compiling Cryptor Utilities.swift
[51/177] Emitting module InternalCollectionsUtilities
[56/179] Compiling SystemPackage Mocking.swift
[57/179] Compiling SystemPackage RawBuffer.swift
[58/179] Compiling SystemPackage Syscalls.swift
[59/179] Compiling SystemPackage WindowsSyscallAdapters.swift
[60/179] Compiling SystemPackage MachPort.swift
[61/179] Compiling SystemPackage PlatformString.swift
[62/179] Compiling SystemPackage SystemString.swift
[63/179] Compiling Cryptor StreamCryptor.swift
[64/179] Compiling Cryptor Status.swift
[65/180] Emitting module CoreMetrics
[66/180] Compiling CoreMetrics Locks.swift
[67/180] Compiling CoreMetrics Metrics.swift
[68/181] Compiling SwiftyJSON SwiftyJSON.swift
[69/181] Emitting module SwiftyJSON
[81/182] Compiling SystemPackage Util+StringArray.swift
[82/182] Compiling SystemPackage Util.swift
[83/182] Compiling SystemPackage UtilConsumers.swift
[85/183] Compiling _NIODataStructures Heap.swift
[86/183] Emitting module _NIODataStructures
[97/181] Compiling _NIODataStructures PriorityQueue.swift
[98/181] Compiling _NIODataStructures _TinyArray.swift
[99/181] Emitting module SystemPackage
[106/202] Emitting module _NIOBase64
[107/202] Compiling _NIOBase64 Base64.swift
[108/253] Compiling SwiftSoup ArrayExt.swift
[109/253] Compiling SwiftSoup Attribute.swift
[110/253] Compiling SwiftSoup Attributes.swift
[111/253] Compiling SwiftSoup BooleanAttribute.swift
[112/253] Compiling SwiftSoup CharacterExt.swift
[113/253] Compiling SwiftSoup CharacterReader.swift
[115/320] Compiling RealModule Real.swift
[116/321] Compiling Poppo URLSessionHTTPClient.swift
[117/321] Compiling Poppo HTTPClient.swift
[118/321] Emitting module Poppo
[119/321] Emitting module SwiftMarkdown
[120/343] Compiling Poppo CurlHTTPClient.swift
[121/346] Compiling RealModule ElementaryFunctions.swift
[122/346] Compiling RealModule Float+Real.swift
[123/347] Compiling Poppo API.swift
[124/347] Compiling Poppo OAuthClient.swift
[125/376] Compiling RealModule Float80+Real.swift
[126/376] Compiling Poppo Poppo.swift
[127/376] Compiling RealModule Float16+Real.swift
[128/376] Compiling Poppo URLEncoder.swift
[129/376] Compiling OrderedCollections _HashTable+Bucket.swift
[130/376] Compiling OrderedCollections _HashTable+BucketIterator.swift
[131/377] Emitting module RealModule
[132/377] Compiling OrderedCollections _HashTable+Constants.swift
[133/377] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[134/377] Compiling SwiftMarkdown SwiftMarkdown.swift
[135/380] Compiling RealModule RealFunctions.swift
[139/385] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[140/385] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[141/385] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[142/385] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[143/385] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[144/385] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[145/385] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[146/385] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[147/392] Emitting module Atomics
[148/393] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[149/393] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[150/393] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[151/393] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[152/393] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[153/393] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[154/393] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[155/399] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[156/399] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[157/399] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[158/399] Compiling OrderedCollections OrderedDictionary+Values.swift
[159/399] Compiling OrderedCollections OrderedSet+Initializers.swift
[160/399] Compiling OrderedCollections OrderedSet+Insertions.swift
[161/399] Compiling OrderedCollections OrderedSet+Invariants.swift
[162/407] Emitting module Metrics
[163/407] Compiling Metrics Metrics.swift
[164/410] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[165/410] Compiling NIOConcurrencyHelpers NIOLock.swift
[166/410] Compiling NIOConcurrencyHelpers atomics.swift
[170/412] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[171/412] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[172/412] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[173/412] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[174/412] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[175/412] Emitting module SwiftSoup
[176/412] Compiling OrderedCollections OrderedDictionary.swift
[177/412] Compiling OrderedCollections OrderedSet+Codable.swift
[178/412] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[179/412] Compiling OrderedCollections OrderedSet+Descriptions.swift
[180/412] Compiling OrderedCollections OrderedSet+Diffing.swift
[181/412] Compiling OrderedCollections OrderedSet+Equatable.swift
[182/412] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[183/412] Compiling OrderedCollections OrderedSet+Hashable.swift
[185/412] Compiling NIOConcurrencyHelpers lock.swift
[186/412] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[187/412] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[188/412] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[189/412] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[195/412] Compiling Logging LogHandler.swift
[196/411] Compiling OrderedCollections OrderedDictionary+Codable.swift
[197/411] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[198/411] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[199/411] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[200/411] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[201/411] Compiling OrderedCollections OrderedDictionary+Elements.swift
[202/411] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[203/411] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[204/411] Compiling Instrumentation Instrument.swift
[205/411] Emitting module NIOConcurrencyHelpers
[206/412] Emitting module Instrumentation
[207/412] Compiling Instrumentation NoOpInstrument.swift
[208/412] Compiling Logging MetadataProvider.swift
[209/412] Compiling Instrumentation MultiplexInstrument.swift
[211/412] Compiling Instrumentation Locks.swift
[219/411] Compiling Instrumentation InstrumentationSystem.swift
[220/419] Compiling SwiftSoup TokeniserState.swift
[221/419] Compiling SwiftSoup TreeBuilder.swift
[222/419] Compiling SwiftSoup UnicodeScalar.swift
[223/419] Compiling SwiftSoup Validate.swift
[224/419] Compiling SwiftSoup Whitelist.swift
[225/419] Compiling SwiftSoup XmlDeclaration.swift
[226/419] Compiling SwiftSoup XmlTreeBuilder.swift
[227/419] Compiling OrderedCollections OrderedSet+Testing.swift
[228/419] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[230/451] Compiling Logging Locks.swift
[231/503] Emitting module Logging
[232/503] Compiling HeapModule _HeapNode.swift
[233/503] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[234/518] Compiling DequeModule Deque+CustomReflectable.swift
[235/518] Compiling DequeModule Deque+Descriptions.swift
[236/520] Compiling HeapModule Heap.swift
[237/520] Emitting module HeapModule
[238/520] Compiling HeapModule Heap+Invariants.swift
[239/520] Compiling HeapModule Heap+Descriptions.swift
[240/520] Compiling HeapModule Heap+UnsafeHandle.swift
[241/521] Compiling DequeModule Deque+Codable.swift
[242/521] Compiling DequeModule Deque+Collection.swift
[245/521] Compiling DequeModule Deque+Equatable.swift
[246/521] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[247/521] Compiling DequeModule Deque+Extras.swift
[248/521] Compiling DequeModule _DequeBuffer.swift
[249/521] Compiling DequeModule _DequeBufferHeader.swift
[251/566] Compiling Crypto Cipher.swift
[252/566] Compiling Crypto Nonces.swift
[253/588] Compiling Crypto AES-GCM.swift
[254/588] Compiling Crypto AES-GCM_boring.swift
[255/588] Compiling Crypto ChaChaPoly_boring.swift
[256/588] Compiling Crypto ChaChaPoly.swift
[259/588] Compiling Crypto ASN1.swift
[260/588] Compiling Crypto ASN1Any.swift
[261/592] Compiling Crypto NISTCurvesKeys.swift
[262/592] Compiling Crypto X25519Keys.swift
[263/592] Compiling Crypto SymmetricKeys.swift
[264/592] Compiling Crypto HMAC.swift
[265/592] Compiling Crypto MACFunctions.swift
[266/592] Compiling Crypto MessageAuthenticationCode.swift
[267/592] Compiling Crypto AES.swift
[268/592] Compiling Crypto ECDSASignature_boring.swift
[269/592] Compiling Crypto ECDSA_boring.swift
[270/592] Compiling Crypto ASN1Strings.swift
[271/592] Compiling Crypto ArraySliceBigint.swift
[272/598] Compiling Crypto HPKE-KeySchedule.swift
[273/598] Compiling Crypto HPKE-Modes.swift
[274/598] Compiling Crypto Insecure.swift
[275/598] Compiling Crypto Insecure_HashFunctions.swift
[276/598] Compiling Crypto KEM.swift
[277/598] Compiling Crypto ECDH_boring.swift
[278/598] Compiling Crypto DH.swift
[284/600] Compiling Crypto ECDH.swift
[285/600] Compiling Crypto HKDF.swift
[286/600] Compiling Crypto AESWrap.swift
[287/600] Compiling Crypto AESWrap_boring.swift
[288/600] Compiling Crypto Ed25519_boring.swift
[289/600] Compiling Crypto NISTCurvesKeys_boring.swift
[290/600] Compiling Crypto X25519Keys_boring.swift
[291/600] Compiling Crypto Curve25519.swift
[292/600] Compiling Crypto Ed25519Keys.swift
[302/600] Compiling Crypto EdDSA_boring.swift
[303/600] Compiling Crypto ECDSA.swift
[304/600] Compiling Crypto Ed25519.swift
[305/600] Compiling HashTreeCollections TreeSet+Descriptions.swift
[306/600] Compiling HashTreeCollections TreeSet+Equatable.swift
[307/600] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[308/600] Compiling HashTreeCollections TreeSet+Extras.swift
[309/600] Compiling HashTreeCollections TreeSet+Filter.swift
[317/610] Compiling Crypto ASN1Identifier.swift
[318/610] Compiling Crypto ASN1Integer.swift
[319/610] Compiling Crypto ASN1Null.swift
[320/610] Compiling Crypto ASN1OctetString.swift
[323/610] Compiling Crypto GeneralizedTime.swift
[324/610] Compiling Crypto ObjectIdentifier.swift
[325/610] Compiling Crypto ECDSASignature.swift
[326/610] Compiling Crypto PEMDocument.swift
[327/610] Compiling Tracing InstrumentationSystem+Tracing.swift
[334/610] Compiling Tracing TracerProtocol.swift
[335/610] Compiling Tracing TracingTime.swift
[336/610] Compiling Tracing TracerProtocol+Legacy.swift
[337/610] Compiling Tracing Tracer.swift
[346/610] Compiling Crypto ASN1BitString.swift
[347/610] Compiling Crypto ASN1Boolean.swift
[350/610] Emitting module Tracing
[351/610] Compiling Logging Logging.swift
[352/611] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[353/611] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[354/611] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[355/611] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[356/611] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[357/611] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[358/611] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[359/611] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[360/611] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[361/611] Compiling HashTreeCollections TreeSet.swift
[363/611] Emitting module OrderedCollections
[364/612] Emitting module DequeModule
[374/613] Compiling Tracing NoOpTracer.swift
[375/613] Compiling Tracing SpanProtocol.swift
[376/667] Compiling BitCollections BitArray+Fill.swift
[377/667] Compiling BitCollections BitArray+Hashable.swift
[378/667] Compiling BitCollections BitArray+Initializers.swift
[379/667] Compiling BitCollections BitArray+Invariants.swift
[380/667] Compiling BitCollections BitArray+LosslessStringConvertible.swift
[381/667] Compiling BitCollections BitArray+RandomBits.swift
[382/667] Compiling BitCollections BitArray+RangeReplaceableCollection.swift
[383/667] Compiling BitCollections BitArray+Shifts.swift
[384/667] Compiling BitCollections BitArray+Testing.swift
[385/667] Compiling BitCollections BitArray._UnsafeHandle.swift
[386/667] Compiling BitCollections BitArray.swift
[387/667] Compiling BitCollections BitArray+BitwiseOperations.swift
[388/667] Compiling BitCollections BitArray+ChunkedBitsIterators.swift
[389/667] Compiling BitCollections BitArray+Codable.swift
[390/667] Compiling BitCollections BitArray+Collection.swift
[391/667] Compiling BitCollections BitArray+Copy.swift
[392/667] Compiling BitCollections BitArray+CustomReflectable.swift
[393/667] Compiling BitCollections BitArray+Descriptions.swift
[394/667] Compiling BitCollections BitArray+Equatable.swift
[395/667] Compiling BitCollections BitArray+ExpressibleByArrayLiteral.swift
[396/667] Compiling BitCollections BitArray+ExpressibleByStringLiteral.swift
[397/667] Compiling BitCollections BitArray+Extras.swift
[398/667] Compiling BitCollections BitSet+BidirectionalCollection.swift
[399/667] Compiling BitCollections BitSet+Codable.swift
[400/667] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[401/667] Compiling BitCollections BitSet+CustomReflectable.swift
[402/667] Compiling BitCollections BitSet+CustomStringConvertible.swift
[403/667] Compiling BitCollections BitSet+Equatable.swift
[404/667] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[405/667] Compiling BitCollections BitSet+Extras.swift
[406/667] Compiling BitCollections BitSet+Hashable.swift
[407/667] Compiling BitCollections BitSet+Initializers.swift
[408/667] Compiling BitCollections BitSet+Invariants.swift
[409/667] Compiling BitCollections BitSet+Random.swift
[410/667] Compiling BitCollections BitSet+SetAlgebra basics.swift
[411/667] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[412/667] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[413/667] Compiling BitCollections BitSet+SetAlgebra formSymmetricDifference.swift
[414/667] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[415/667] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[416/667] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[417/667] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[418/667] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[419/667] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[430/666] Emitting module _RopeModule
[431/666] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[432/666] Compiling BitCollections BitSet.Counted.swift
[458/675] Emitting module Crypto
[473/675] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[474/675] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[475/675] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[476/675] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[477/675] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[478/675] Compiling BitCollections BitSet+SetAlgebra union.swift
[489/707] Compiling ConsoleKitTerminal ConsoleTextFragment.swift
[490/707] Compiling ConsoleKitTerminal ANSI.swift
[491/707] Compiling ConsoleKitTerminal Console.swift
[492/707] Compiling ConsoleKitTerminal Terminal.swift
[493/707] Compiling ConsoleKitTerminal readpassphrase_linux.swift
[508/707] Emitting module RoutingKit
[509/707] Compiling RoutingKit AnyRouter.swift
[520/708] Compiling ConsoleKitTerminal Console+Wait.swift
[521/708] Compiling ConsoleKitTerminal ConsoleColor.swift
[522/708] Compiling ConsoleKitTerminal ConsoleStyle.swift
[523/708] Compiling RoutingKit Parameters.swift
[524/738] Compiling NIOCore AsyncChannelHandler.swift
[525/738] Compiling NIOCore AsyncChannelInboundStream.swift
[526/738] Compiling NIOCore AsyncChannelOutboundWriter.swift
[527/738] Compiling NIOCore NIOAsyncSequenceProducer.swift
[528/770] Compiling RoutingKit PathComponent.swift
[529/770] Compiling RoutingKit TrieRouter.swift
[530/770] Compiling RoutingKit Router.swift
[532/771] Emitting module HashTreeCollections
[534/772] Compiling NIOCore ChannelInvoker.swift
[535/772] Compiling NIOCore ChannelOption.swift
[536/772] Compiling NIOCore ChannelPipeline.swift
[537/772] Compiling NIOCore CircularBuffer.swift
[538/772] Compiling NIOCore Codec.swift
[539/772] Compiling NIOCore ConvenienceOptionSupport.swift
[540/772] Compiling NIOCore DeadChannel.swift
[541/777] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[542/777] Compiling NIOCore AddressedEnvelope.swift
[543/777] Compiling NIOCore AsyncAwaitSupport.swift
[544/777] Compiling NIOCore AsyncChannel.swift
[545/779] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[546/779] Compiling NIOCore BSDSocketAPI.swift
[547/779] Compiling NIOCore ByteBuffer-aux.swift
[548/779] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[549/779] Emitting module ConsoleKitTerminal
[550/779] Compiling NIOCore ByteBuffer-conversions.swift
[551/779] Compiling NIOCore ByteBuffer-core.swift
[552/779] Compiling NIOCore ByteBuffer-hex.swift
[553/779] Compiling NIOCore ByteBuffer-int.swift
[554/778] Wrapping AST for _RopeModule for debugging
[556/778] Compiling NIOCore IntegerBitPacking.swift
[557/778] Compiling NIOCore IntegerTypes.swift
[558/778] Compiling NIOCore Interfaces.swift
[559/778] Compiling NIOCore Linux.swift
[560/778] Compiling NIOCore EventLoop.swift
[561/778] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[562/778] Compiling NIOCore EventLoopFuture+Deprecated.swift
[563/778] Compiling NIOCore DispatchQueue+WithFuture.swift
[564/778] Compiling NIOCore EventLoop+Deprecated.swift
[565/778] Compiling NIOCore EventLoop+SerialExecutor.swift
[566/778] Compiling NIOCore GlobalSingletons.swift
[567/778] Compiling NIOCore IO.swift
[568/778] Compiling NIOCore IOData.swift
[569/778] Compiling NIOCore IPProtocol.swift
[570/778] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[571/778] Compiling NIOCore EventLoopFuture.swift
[572/778] Compiling NIOCore FileDescriptor.swift
[573/778] Compiling NIOCore FileHandle.swift
[574/778] Compiling NIOCore FileRegion.swift
[575/778] Compiling NIOCore MarkedCircularBuffer.swift
[576/778] Compiling NIOCore MulticastChannel.swift
[576/778] Wrapping AST for SystemPackage for debugging
[577/778] Wrapping AST for RealModule for debugging
[581/778] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[582/778] Compiling NIOCore NIOAsyncWriter.swift
[583/778] Compiling NIOCore ByteBuffer-multi-int.swift
[584/778] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[585/778] Compiling NIOCore ByteBuffer-views.swift
[586/778] Compiling NIOCore Channel.swift
[587/778] Compiling NIOCore ChannelHandler.swift
[588/778] Compiling NIOCore ChannelHandlers.swift
[601/778] Emitting module BitCollections
[602/800] Compiling Algorithms AdjacentPairs.swift
[603/800] Compiling Algorithms Chain.swift
[604/800] Compiling Algorithms Chunked.swift
[605/800] Compiling Algorithms Combinations.swift
[606/800] Compiling Algorithms Compacted.swift
[607/800] Compiling Algorithms Cycle.swift
[608/800] Compiling Algorithms EitherSequence.swift
[609/800] Compiling Algorithms FirstNonNil.swift
[610/800] Compiling Algorithms FlattenCollection.swift
[611/800] Compiling Algorithms Grouped.swift
[612/801] Compiling Algorithms Indexed.swift
[613/801] Compiling Algorithms Intersperse.swift
[614/801] Compiling Algorithms Joined.swift
[615/802] Compiling Algorithms Keyed.swift
[616/802] Compiling Algorithms MinMax.swift
[617/802] Compiling Algorithms Partition.swift
[618/802] Compiling Algorithms Permutations.swift
[619/803] Compiling Algorithms Product.swift
[620/803] Compiling Algorithms RandomSample.swift
[621/803] Compiling Algorithms Reductions.swift
[621/803] Wrapping AST for OrderedCollections for debugging
[622/804] Wrapping AST for Logging for debugging
[624/804] Compiling Algorithms Stride.swift
[625/804] Compiling Algorithms Suffix.swift
[628/804] Compiling Algorithms Rotate.swift
[629/804] Compiling Algorithms Split.swift
[630/804] Wrapping AST for InternalCollectionsUtilities for debugging
[631/804] Wrapping AST for HeapModule for debugging
[651/803] Compiling BitCollections BitSet.Index.swift
[652/803] Compiling BitCollections BitSet._UnsafeHandle.swift
[653/803] Compiling BitCollections BitSet.swift
[654/803] Compiling BitCollections Range+Utilities.swift
[655/803] Compiling BitCollections Slice+Utilities.swift
[656/803] Compiling BitCollections UInt+Tricks.swift
[659/812] Wrapping AST for HashTreeCollections for debugging
[660/812] Wrapping AST for DequeModule for debugging
[661/812] Wrapping AST for CryptoBoringWrapper for debugging
[663/812] Wrapping AST for CoreMetrics for debugging
[671/811] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[671/811] Wrapping AST for Atomics for debugging
[674/833] Compiling Crypto Signature.swift
[675/833] Compiling Crypto CryptoKitErrors_boring.swift
[676/833] Compiling Crypto RNG_boring.swift
[677/833] Compiling Crypto SafeCompare_boring.swift
[678/833] Compiling Crypto Zeroization_boring.swift
[679/833] Compiling Crypto PrettyBytes.swift
[680/833] Compiling Crypto SafeCompare.swift
[681/833] Compiling Crypto SecureBytes.swift
[682/833] Compiling Crypto Zeroization.swift
[691/836] Compiling Collections Collections.swift
[695/836] Compiling ConsoleKitCommands CommandSignature.swift
[696/836] Compiling ConsoleKitCommands Flag.swift
[697/836] Compiling ConsoleKitCommands Option.swift
[698/839] Emitting module Collections
[704/841] Compiling ConsoleKitCommands GenerateAsyncAutocompleteCommand.swift
[705/841] Compiling ConsoleKitCommands AnyCommand.swift
[706/841] Compiling ConsoleKitCommands Command.swift
[707/841] Compiling ConsoleKitCommands CommandContext.swift
[708/841] Compiling ConsoleKitCommands GenerateAutocompleteCommand.swift
[709/841] Compiling ConsoleKitCommands MergedAsyncCommandGroup.swift
[710/841] Compiling ConsoleKitCommands Argument.swift
[711/841] Emitting module ConsoleKitCommands
[712/841] Compiling ConsoleKitCommands AsyncCommands.swift
[715/841] Compiling ConsoleKitCommands AnyAsyncCommand.swift
[716/841] Compiling ConsoleKitCommands AsyncCommand.swift
[717/841] Compiling ConsoleKitCommands AsyncCommandGroup.swift
[720/841] Compiling ConsoleKitCommands CommandError.swift
[720/841] Wrapping AST for Crypto for debugging
[722/841] Compiling ConsoleKitCommands String+LevenshteinDistance.swift
[723/841] Compiling ConsoleKitCommands Utilities.swift
[727/841] Compiling Algorithms Trim.swift
[728/841] Compiling Algorithms Unique.swift
[729/841] Compiling Algorithms Windows.swift
[731/841] Compiling ConsoleKitCommands CommandGroup.swift
[732/841] Compiling ConsoleKitCommands CommandInput.swift
[733/841] Compiling ConsoleKitCommands Commands.swift
[734/841] Compiling ConsoleKitCommands Console+Run.swift
[735/841] Compiling ConsoleKitCommands ConsoleError.swift
[736/841] Compiling ConsoleKitCommands Completion.swift
[758/841] Compiling NIOCore SocketAddresses.swift
[759/841] Compiling NIOCore SocketOptionProvider.swift
[760/841] Compiling NIOCore SystemCallHelpers.swift
[761/841] Compiling NIOCore TimeAmount+Duration.swift
[762/841] Compiling NIOCore TypeAssistedChannelHandler.swift
[763/841] Compiling NIOCore UniversalBootstrapSupport.swift
[764/841] Compiling NIOCore Utilities.swift
[772/843] Emitting module Algorithms
[774/844] Compiling ConsoleKit Exports.swift
[775/844] Emitting module ConsoleKit
[775/845] Wrapping AST for Algorithms for debugging
[804/844] Emitting module NIOCore
[806/895] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[807/895] Emitting module NIOEmbedded
[808/895] Compiling NIOEmbedded Embedded.swift
[809/895] Compiling NIOEmbedded AsyncTestingChannel.swift
[810/895] Compiling NIOPosix PooledRecvBufferAllocator.swift
[811/895] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[812/895] Compiling NIOPosix PosixSingletons.swift
[813/895] Compiling NIOPosix RawSocketBootstrap.swift
[814/895] Compiling NIOPosix Resolver.swift
[815/895] Compiling NIOPosix Selectable.swift
[817/901] Compiling NIOPosix ThreadPosix.swift
[818/901] Compiling NIOPosix ThreadWindows.swift
[819/901] Compiling NIOPosix UnsafeTransfer.swift
[820/901] Compiling NIOPosix Utilities.swift
[821/901] Compiling NIOPosix VsockAddress.swift
[822/901] Compiling NIOPosix VsockChannelEvents.swift
[823/901] Emitting module NIOPosix
[824/901] Compiling NIOPosix BSDSocketAPICommon.swift
[825/901] Compiling NIOPosix BSDSocketAPIPosix.swift
[826/901] Compiling NIOPosix BSDSocketAPIWindows.swift
[827/901] Compiling NIOPosix BaseSocket.swift
[828/901] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[829/901] Compiling NIOPosix BaseSocketChannel.swift
[830/901] Compiling NIOPosix BaseStreamSocketChannel.swift
[831/901] Compiling NIOPosix ServerSocket.swift
[832/901] Compiling NIOPosix Socket.swift
[833/901] Compiling NIOPosix SocketChannel.swift
[834/901] Compiling NIOPosix SocketProtocols.swift
[835/901] Compiling NIOPosix System.swift
[836/901] Compiling NIOPosix Thread.swift
[837/901] Compiling NIOPosix IO.swift
[838/901] Compiling NIOPosix IntegerBitPacking.swift
[839/901] Compiling NIOPosix IntegerTypes.swift
[840/901] Compiling NIOPosix Linux.swift
[841/901] Compiling NIOPosix LinuxCPUSet.swift
[842/901] Compiling NIOPosix LinuxUring.swift
[843/901] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[844/901] Compiling NIOPosix SelectableChannel.swift
[845/901] Compiling NIOPosix SelectableEventLoop.swift
[846/901] Compiling NIOPosix SelectorEpoll.swift
[847/901] Compiling NIOPosix SelectorGeneric.swift
[848/901] Compiling NIOPosix SelectorKqueue.swift
[849/901] Compiling NIOPosix SelectorUring.swift
[850/901] Compiling NIOPosix Bootstrap.swift
[851/901] Compiling NIOPosix ControlMessage.swift
[852/901] Compiling NIOPosix DatagramVectorReadManager.swift
[853/901] Compiling NIOPosix Errors+Any.swift
[854/901] Compiling NIOPosix FileDescriptor.swift
[855/901] Compiling NIOPosix GetaddrinfoResolver.swift
[856/901] Compiling NIOPosix HappyEyeballs.swift
[857/901] Compiling NIOPosix NIOThreadPool.swift
[858/901] Compiling NIOPosix NonBlockingFileIO.swift
[859/901] Compiling NIOPosix PendingDatagramWritesManager.swift
[860/901] Compiling NIOPosix PendingWritesManager.swift
[861/901] Compiling NIOPosix PipeChannel.swift
[862/901] Compiling NIOPosix PipePair.swift
[863/901] Compiling NIOPosix Pool.swift
[865/941] Emitting module NIO
[866/941] Compiling NIO Exports.swift
[867/961] Compiling _NIOFileSystem Array+FileSystem.swift
[868/961] Compiling _NIOFileSystem ArraySlice+FileSystem.swift
[869/961] Compiling _NIOFileSystem BufferedReader.swift
[871/962] Compiling _NIOFileSystem FileHandleProtocol.swift
[872/962] Compiling _NIOFileSystem FileInfo.swift
[873/962] Compiling _NIOFileSystem FileSystem.swift
[874/962] Compiling AsyncKit Optional+StrictMap.swift
[875/962] Compiling AsyncKit Exports.swift
[876/985] Emitting module _NIOFileSystem
[877/1005] Emitting module NIOTLS
[878/1039] Compiling NIOTLS TLSEvents.swift
[879/1042] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[880/1080] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[881/1080] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[882/1097] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[883/1097] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[884/1097] Emitting module NIOSOCKS
[885/1097] Compiling SQLKit SQLAlterEnumBuilder.swift
[886/1097] Compiling SQLKit SQLAlterTableBuilder.swift
[887/1097] Compiling SQLKit SQLConflictUpdateBuilder.swift
[888/1097] Compiling SQLKit SQLCreateEnumBuilder.swift
[889/1097] Compiling SQLKit SQLCreateIndexBuilder.swift
[890/1097] Compiling SQLKit SQLCreateTableBuilder.swift
[891/1097] Compiling SQLKit SQLCreateTriggerBuilder.swift
[892/1097] Compiling SQLKit SQLDeleteBuilder.swift
[893/1097] Compiling SQLKit SQLDropEnumBuilder.swift
[894/1097] Compiling SQLKit SQLDropIndexBuilder.swift
[895/1098] Compiling NIOSOCKS SOCKSResponse.swift
[896/1098] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[897/1098] Compiling NIOSOCKS ClientStateMachine.swift
[898/1098] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[899/1098] Compiling SQLKit SQLAliasedColumnListBuilder.swift
[900/1098] Compiling SQLKit SQLColumnUpdateBuilder.swift
[901/1098] Compiling SQLKit SQLCommonTableExpressionBuilder.swift
[902/1098] Compiling SQLKit SQLCommonUnionBuilder.swift
[903/1098] Compiling SQLKit SQLJoinBuilder.swift
[912/1098] Compiling SQLKit SQLPartialResultBuilder.swift
[913/1098] Compiling SQLKit SQLPredicateBuilder.swift
[914/1098] Compiling SQLKit SQLQueryBuilder.swift
[915/1098] Compiling SQLKit SQLQueryFetcher.swift
[916/1098] Compiling SQLKit SQLReturningBuilder.swift
[917/1098] Compiling SQLKit SQLSecondaryPredicateBuilder.swift
[918/1098] Compiling SQLKit SQLSubqueryClauseBuilder.swift
[919/1098] Compiling SQLKit SQLUnqualifiedColumnListBuilder.swift
[920/1098] Compiling SQLKit SQLDatabase.swift
[921/1098] Compiling NIOSOCKS ServerStateMachine.swift
[922/1099] Compiling NIOTLS SNIHandler.swift
[925/1100] Compiling SQLKit SQLPredicateGroupBuilder.swift
[926/1100] Compiling SQLKit SQLRawBuilder.swift
[927/1101] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[928/1101] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[929/1101] Compiling SQLKit SQLSubqueryBuilder.swift
[930/1101] Compiling SQLKit SQLUnionBuilder.swift
[931/1101] Compiling SQLKit SQLUpdateBuilder.swift
[932/1100] Emitting module NIOFoundationCompat
[933/1100] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[934/1100] Compiling SQLKit SQLDropTriggerBuilder.swift
[935/1100] Compiling SQLKit SQLInsertBuilder.swift
[941/1100] Compiling SQLKit SQLAlterColumnDefinitionType.swift
[942/1100] Compiling SQLKit SQLColumnAssignment.swift
[943/1100] Compiling SQLKit SQLColumnConstraintAlgorithm.swift
[944/1100] Compiling SQLKit SQLColumnDefinition.swift
[945/1100] Compiling SQLKit SQLCommonTableExpression.swift
[946/1100] Compiling SQLKit SQLConflictAction.swift
[947/1100] Compiling SQLKit SQLConflictResolutionStrategy.swift
[948/1100] Compiling SQLKit SQLDropBehaviour.swift
[949/1100] Compiling SQLKit SQLEnumDataType.swift
[950/1100] Compiling SQLKit SQLExcludedColumn.swift
[951/1100] Compiling SQLKit SQLForeignKey.swift
[952/1100] Compiling SQLKit SQLJoin.swift
[953/1100] Compiling SQLKit SQLJoinMethod.swift
[954/1100] Compiling SQLKit SQLLockingClause.swift
[955/1100] Compiling SQLKit SQLOrderBy.swift
[956/1100] Compiling SQLKit SQLReturning.swift
[957/1100] Compiling SQLKit SQLSubquery.swift
[958/1100] Compiling SQLKit SQLTableConstraintAlgorithm.swift
[959/1100] Compiling SQLKit SQLAlterEnum.swift
[960/1100] Compiling SQLKit SQLAlterTable.swift
[961/1100] Compiling SQLKit SQLCreateEnum.swift
[962/1100] Compiling SQLKit SQLCreateIndex.swift
[963/1100] Compiling SQLKit SQLCreateTable.swift
[964/1100] Compiling SQLKit SQLCreateTrigger.swift
[965/1100] Compiling SQLKit SQLDelete.swift
[966/1100] Compiling SQLKit SQLDropEnum.swift
[967/1100] Compiling SQLKit SQLDropIndex.swift
[968/1100] Compiling SQLKit SQLDropTable.swift
[969/1100] Compiling SQLKit SQLDropTrigger.swift
[970/1100] Compiling SQLKit SQLInsert.swift
[971/1100] Compiling SQLKit SQLSelect.swift
[972/1100] Compiling SQLKit SQLUnion.swift
[973/1100] Compiling SQLKit SQLUpdate.swift
[974/1100] Compiling SQLKit SQLExpression.swift
[975/1100] Compiling SQLKit SQLSerializer.swift
[976/1100] Compiling SQLKit SQLStatement.swift
[977/1100] Compiling SQLKit SQLBinaryExpression.swift
[978/1100] Compiling SQLKit SQLBinaryOperator.swift
[979/1100] Compiling SQLKit SQLBind.swift
[980/1141] Compiling NIOSSL SSLContext.swift
[981/1141] Compiling NIOSSL SSLErrors.swift
[982/1141] Compiling SQLKit SQLQueryBuilders+Deprecated.swift
[983/1141] Compiling SQLKit Exports.swift
[984/1141] Compiling SQLKit SQLAlias.swift
[985/1141] Compiling SQLKit SQLBetween.swift
[986/1141] Compiling SQLKit SQLColumn.swift
[987/1141] Compiling SQLKit SQLConstraint.swift
[988/1141] Compiling SQLKit SQLDataType.swift
[989/1141] Compiling SQLKit SQLDirection.swift
[990/1141] Compiling SQLKit SQLDistinct.swift
[991/1141] Compiling SQLKit SQLForeignKeyAction.swift
[992/1141] Compiling SQLKit SQLNestedSubpathExpression.swift
[993/1141] Compiling SQLKit SQLQualifiedTable.swift
[994/1141] Compiling SQLKit SQLQueryString.swift
[995/1163] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[996/1163] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[997/1163] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[998/1163] Compiling NIOTransportServices NIOTSErrors.swift
[999/1163] Compiling NIOTransportServices AcceptHandler.swift
[1000/1163] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1001/1163] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[1002/1163] Compiling NIOTransportServices NIOTSBootstraps.swift
[1003/1163] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1004/1163] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1005/1163] Compiling NIOTransportServices NIOTSDatagramListener.swift
[1010/1163] Compiling NIOTransportServices NIOTSEventLoop.swift
[1011/1163] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[1012/1163] Compiling NIOTransportServices NIOTSSingletons.swift
[1013/1163] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[1014/1163] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1015/1163] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[1016/1163] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1017/1163] Compiling NIOTransportServices StateManagedChannel.swift
[1018/1163] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1019/1163] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1020/1163] Compiling NIOSSL SecurityFrameworkCertificateVerification.swift
[1021/1163] Compiling NIOSSL String+unsafeUninitializedCapacity.swift
[1022/1163] Compiling NIOSSL SubjectAlternativeName.swift
[1023/1163] Compiling NIOSSL NIOSSLSecureBytes.swift
[1024/1163] Compiling NIOSSL RNG.swift
[1025/1163] Compiling NIOSSL SafeCompare.swift
[1026/1163] Compiling NIOSSL Zeroization.swift
[1033/1163] Compiling SQLKit SQLDatabaseReportedVersion.swift
[1034/1163] Compiling SQLKit SQLDialect.swift
[1035/1163] Compiling SQLKit SQLDatabase+Deprecated.swift
[1036/1163] Compiling SQLKit SQLError.swift
[1037/1163] Compiling SQLKit SQLExpressions+Deprecated.swift
[1038/1163] Emitting module NIOTransportServices
[1054/1165] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1055/1165] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1062/1166] Emitting module NIOHTTP1
[1066/1166] Emitting module AsyncKit
[1095/1168] Emitting module NIOSSL
[1096/1168] Emitting module SQLKit
[1101/1233] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1102/1233] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1103/1233] Compiling SQLKit SQLFunction.swift
[1104/1233] Compiling SQLKit SQLGroupExpression.swift
[1105/1233] Compiling SQLKit SQLIdentifier.swift
[1106/1233] Compiling SQLKit SQLList.swift
[1107/1233] Compiling SQLKit SQLLiteral.swift
[1108/1233] Compiling SQLKit SQLRaw.swift
[1109/1233] Compiling SQLKit SQLCodingUtilities.swift
[1110/1233] Compiling SQLKit SQLQueryEncoder.swift
[1111/1233] Compiling SQLKit SQLRow.swift
[1112/1233] Compiling SQLKit SQLRowDecoder.swift
[1113/1233] Compiling SQLKit SomeCodingKey.swift
[1114/1233] Compiling SQLKit StringHandling.swift
[1115/1233] Compiling NIOWebSocket WebSocketOpcode.swift
[1116/1235] Compiling MultipartKit FormDataEncoder.swift
[1117/1235] Compiling MultipartKit Storage.swift
[1118/1237] Compiling MultipartKit Exports.swift
[1119/1237] Compiling MultipartKit FormDataDecoder.Decoder.swift
[1120/1237] Compiling MultipartKit BasicCodingKey.swift
[1121/1237] Compiling MultipartKit MultipartError.swift
[1122/1238] Emitting module NIOHTTPCompression
[1123/1238] Compiling NIOHTTPCompression HTTPCompression.swift
[1124/1238] Compiling NIOHTTPCompression HTTPDecompression.swift
[1125/1238] Compiling NIOHPACK IndexedHeaderTable.swift
[1126/1238] Compiling NIOHPACK IntegerCoding.swift
[1127/1238] Compiling MultipartKit FormDataEncoder.UnkeyedContainer.swift
[1130/1238] Compiling MultipartKit MultipartFormData.swift
[1131/1238] Compiling MultipartKit MultipartParser.swift
[1132/1238] Compiling MultipartKit MultipartPart.swift
[1134/1240] Compiling MultipartKit FormDataDecoder.UnkeyedContainer.swift
[1135/1240] Compiling MultipartKit FormDataDecoder.swift
[1136/1240] Compiling MultipartKit FormDataEncoder.Encoder.swift
[1137/1240] Compiling MultipartKit FormDataEncoder.KeyedContainer.swift
[1138/1240] Compiling MultipartKit FormDataEncoder.SingleValueContainer.swift
[1140/1240] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[1141/1240] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[1143/1240] Compiling NIOExtras UnsafeTransfer.swift
[1144/1240] Compiling NIOHPACK HuffmanCoding.swift
[1145/1240] Compiling NIOHPACK HuffmanTables.swift
[1154/1240] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1155/1240] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1156/1240] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[1157/1241] Emitting module NIOWebSocket
[1160/1241] Emitting module MultipartKit
[1165/1241] Compiling MultipartKit FormDataDecoder.KeyedContainer.swift
[1166/1241] Compiling MultipartKit FormDataDecoder.SingleValueContainer.swift
[1167/1241] Compiling NIOWebSocket WebSocketFrame.swift
[1168/1241] Compiling NIOWebSocket WebSocketErrorCodes.swift
[1171/1241] Compiling NIOHPACK StaticHeaderTable.swift
[1172/1241] Emitting module NIOHPACK
[1173/1242] Compiling NIOExtras WritePCAPHandler.swift
[1174/1242] Compiling MultipartKit Utilities.swift
[1181/1243] Compiling NIOSSL TLSConfiguration.swift
[1182/1243] Compiling NIOSSL UniversalBootstrapSupport.swift
[1183/1243] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[1187/1244] Emitting module NIOExtras
[1198/1246] Wrapping AST for SQLKit for debugging
[1200/1245] Compiling _NIOFileSystemFoundationCompat Date+FileInfo.swift
[1201/1245] Compiling NIOFileSystem Exports.swift
[1202/1245] Compiling _NIOFileSystemFoundationCompat Data+FileSystem.swift
[1203/1245] Emitting module _NIOFileSystemFoundationCompat
[1204/1246] Emitting module NIOFileSystem
[1206/1391] Compiling FluentKit DatabaseInput.swift
[1207/1391] Compiling FluentKit DatabaseOutput.swift
[1210/1460] Compiling RediStack SetCommands.swift
[1211/1460] Compiling RediStack SortedSetCommands.swift
[1212/1460] Compiling RediStack StandardLibrary.swift
[1213/1460] Compiling RediStack HashCommands.swift
[1214/1460] Compiling RediStack ListCommands.swift
[1215/1460] Compiling RediStack PubSubCommands.swift
[1216/1460] Compiling RediStack SwiftPolyfill.swift
[1217/1460] Compiling RediStack BasicCommands.swift
[1218/1460] Compiling RediStack RedisByteDecoder.swift
[1219/1460] Compiling RediStack RedisCommandHandler.swift
[1220/1460] Compiling RediStack RedisMessageEncoder.swift
[1221/1460] Compiling RediStack RedisPubSubHandler.swift
[1222/1460] Compiling RediStack RedisClusterNodeDescriptionProtocol.swift
[1223/1460] Compiling RediStack StringCommands.swift
[1224/1460] Compiling RediStack ConnectionPool.swift
[1226/1492] Compiling WebSocketKit Exports.swift
[1227/1492] Compiling WebSocketKit HTTPUpgradeRequestHandler.swift
[1228/1492] Compiling WebSocketKit WebSocket+Concurrency.swift
[1229/1492] Emitting module WebSocketKit
[1230/1492] Compiling LeafKit LeafConfiguration.swift
[1231/1492] Compiling LeafKit LeafData.swift
[1232/1492] Compiling LeafKit LeafDataRepresentable.swift
[1233/1492] Compiling LeafKit LeafDataStorage.swift
[1234/1492] Compiling LeafKit Character+Identities.swift
[1235/1496] Compiling WebSocketKit WebSocketHandler.swift
[1236/1496] Compiling RediStack RedisChannelName.swift
[1237/1496] Compiling RediStack RedisClient.swift
[1238/1496] Compiling RediStack RedisCommandEncoder-multi-encode.swift
[1239/1496] Compiling RediStack RedisCommandEncoder.swift
[1240/1496] Compiling RediStack RedisConnection+Configuration.swift
[1241/1496] Compiling RediStack RedisConnection.swift
[1242/1496] Compiling RediStack RedisError.swift
[1243/1496] Compiling RediStack RedisKey+TTL.swift
[1247/1496] Compiling RediStack RedisKey.swift
[1248/1496] Compiling RediStack RedisLogging.swift
[1249/1501] Compiling WebSocketKit WebSocket.swift
[1250/1501] Compiling WebSocketKit WebSocket+Connect.swift
[1251/1501] Compiling LeafKit LeafSource.swift
[1252/1501] Compiling LeafKit LeafSources.swift
[1253/1501] Compiling LeafKit NIOLeafFiles.swift
[1254/1501] Compiling RediStack RESPValue.swift
[1255/1501] Compiling RediStack RESPValueConvertible.swift
[1259/1504] Emitting module RediStack
[1265/1504] Compiling LeafKit LeafAST.swift
[1266/1504] Compiling LeafKit DefaultLeafCache.swift
[1267/1504] Compiling LeafKit LeafCache.swift
[1271/1512] Compiling LeafKit LeafError.swift
[1272/1512] Compiling LeafKit LeafLexer.swift
[1273/1512] Compiling LeafKit LeafParameterTypes.swift
[1274/1512] Compiling LeafKit LeafRawTemplate.swift
[1275/1512] Compiling LeafKit LeafToken.swift
[1276/1512] Compiling LeafKit LeafParameter.swift
[1277/1512] Compiling LeafKit LeafParser.swift
[1278/1512] Compiling WebSocketKit WebSocketClient.swift
[1296/1525] Compiling LeafKit LeafRenderer.swift
[1297/1525] Compiling LeafKit Dictionary+LeafData.swift
[1300/1525] Compiling MySQLNIO MySQLProtocol+StatusFlags.swift
[1301/1525] Compiling MySQLNIO MySQLProtocol+TextResultSetRow.swift
[1311/1525] Compiling LeafKit LeafContext.swift
[1312/1525] Compiling LeafKit LeafSerializer.swift
[1313/1525] Compiling LeafKit ParameterResolver.swift
[1318/1525] Emitting module LeafKit
[1322/1525] Wrapping AST for WebSocketKit for debugging
[1324/1525] Emitting module MySQLNIO
[1325/1525] Emitting module NIOHTTP2
[1328/1525] Compiling MySQLNIO MySQLProtocol.swift
[1329/1525] Compiling MySQLNIO CryptoUtils.swift
[1330/1525] Compiling MySQLNIO NIOUtils.swift
[1331/1525] Emitting module FluentKit
[1359/1525] Compiling LeafKit LeafSyntax.swift
[1360/1525] Compiling LeafKit LeafTag.swift
[1361/1525] Compiling LeafKit String+HTMLEscape.swift
[1372/1526] Compiling FluentKit QueryBuilder+Group.swift
[1373/1526] Compiling FluentKit QueryBuilder+Join+DirectRelations.swift
[1374/1526] Compiling FluentKit QueryBuilder+Join.swift
[1375/1526] Compiling FluentKit QueryBuilder+Paginate.swift
[1376/1526] Compiling FluentKit QueryBuilder+Range.swift
[1377/1526] Compiling FluentKit QueryBuilder+Set.swift
[1378/1526] Compiling FluentKit QueryBuilder+Sort.swift
[1379/1526] Compiling FluentKit QueryBuilder.swift
[1380/1526] Compiling FluentKit DatabaseQuery+Action.swift
[1381/1526] Compiling FluentKit DatabaseQuery+Aggregate.swift
[1382/1526] Compiling FluentKit DatabaseQuery+Field.swift
[1383/1526] Compiling FluentKit DatabaseQuery+Filter.swift
[1384/1526] Compiling FluentKit Boolean.swift
[1385/1526] Compiling FluentKit BooleanPropertyFormat.swift
[1386/1526] Compiling FluentKit Children.swift
[1387/1526] Compiling FluentKit CompositeChildren.swift
[1388/1526] Compiling FluentKit CompositeID.swift
[1389/1526] Compiling FluentKit CompositeOptionalChild.swift
[1390/1526] Compiling FluentKit CompositeOptionalParent.swift
[1391/1526] Compiling FluentKit CompositeParent.swift
[1393/1526] Compiling NIOHTTP2 InboundWindowManager.swift
[1394/1526] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1395/1526] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1396/1526] Compiling NIOHTTP2 StreamChannelList.swift
[1397/1526] Compiling NIOHTTP2 StreamMap.swift
[1398/1526] Compiling NIOHTTP2 StreamStateMachine.swift
[1399/1526] Compiling NIOHTTP2 UnsafeTransfer.swift
[1400/1526] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1401/1526] Compiling FluentKit DatabaseQuery+Join.swift
[1402/1526] Compiling FluentKit DatabaseQuery+Range.swift
[1403/1526] Compiling FluentKit DatabaseQuery+Sort.swift
[1404/1526] Compiling FluentKit DatabaseQuery+Value.swift
[1405/1526] Compiling FluentKit DatabaseQuery.swift
[1406/1526] Compiling FluentKit QueryHistory.swift
[1407/1526] Compiling FluentKit DatabaseSchema.swift
[1408/1526] Compiling FluentKit SchemaBuilder.swift
[1409/1526] Compiling FluentKit OptionalType.swift
[1410/1526] Compiling FluentKit RandomGeneratable.swift
[1411/1526] Compiling FluentKit SomeCodingKey.swift
[1412/1526] Compiling FluentKit UnsafeMutableTransferBox.swift
[1412/1526] Wrapping AST for RediStack for debugging
[1420/1527] Compiling FluentKit Model+CRUD.swift
[1421/1527] Compiling FluentKit Model.swift
[1422/1527] Compiling FluentKit ModelAlias.swift
[1423/1527] Compiling FluentKit Schema.swift
[1424/1527] Compiling FluentKit FieldOperators.swift
[1425/1527] Compiling FluentKit Operators.swift
[1426/1527] Compiling FluentKit ValueOperators+Array.swift
[1427/1527] Compiling FluentKit ValueOperators+String.swift
[1428/1527] Compiling FluentKit ValueOperators.swift
[1503/1528] Compiling FluentKit Parent.swift
[1504/1528] Compiling FluentKit Property.swift
[1505/1528] Compiling FluentKit Relation.swift
[1506/1528] Compiling FluentKit Siblings.swift
[1507/1528] Compiling FluentKit Timestamp.swift
[1508/1528] Compiling FluentKit TimestampFormat.swift
[1509/1528] Compiling FluentKit QueryBuilder+Aggregate.swift
[1510/1528] Compiling FluentKit QueryBuilder+EagerLoad.swift
[1511/1528] Compiling FluentKit QueryBuilder+Filter.swift
[1511/1528] Wrapping AST for MySQLNIO for debugging
[1514/1607] Compiling FluentSQL SQLQualifiedTable+Deprecated.swift
[1515/1607] Compiling FluentSQL SQLList+Deprecated.swift
[1516/1607] Compiling FluentSQL DatabaseSchema+SQL.swift
[1517/1607] Compiling FluentSQL Exports.swift
[1518/1607] Compiling FluentSQL SQLJSONColumnPath+Deprecated.swift
[1519/1608] Compiling MySQLKit MySQLDataEncoder.swift
[1520/1608] Emitting module MySQLKit
[1521/1608] Compiling MySQLKit MySQLDataDecoder.swift
[1524/1608] Compiling FluentSQL ConverterUtilities.swift
[1525/1608] Compiling FluentSQL DatabaseQuery+SQL.swift
[1528/1609] Emitting module FluentSQL
[1529/1609] Compiling MySQLKit MySQLDatabase+SQL.swift
[1530/1609] Compiling MySQLKit MySQLRow+SQL.swift
[1531/1609] Compiling MySQLKit MySQLDialect.swift
[1532/1609] Compiling FluentSQL SQLDatabase+Model+Concurrency.swift
[1533/1609] Compiling FluentSQL SQLDatabase+Model.swift
[1534/1609] Compiling MySQLKit Optional+MySQLDataConvertible.swift
[1536/1610] Compiling FluentSQL SQLSchemaConverter.swift
[1537/1610] Compiling FluentSQL SQLQueryConverter.swift
[1539/1609] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1540/1609] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1541/1609] Compiling AsyncHTTPClient Transaction.swift
[1542/1609] Compiling AsyncHTTPClient Base64.swift
[1543/1609] Compiling AsyncHTTPClient BasicAuth.swift
[1544/1609] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1545/1609] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1546/1609] Compiling AsyncHTTPClient ConnectionPool.swift
[1547/1609] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1554/1609] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[1555/1609] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1556/1609] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1557/1617] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1558/1617] Compiling AsyncHTTPClient ConnectionTarget.swift
[1559/1617] Compiling AsyncHTTPClient DeconstructedURL.swift
[1560/1617] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1561/1617] Compiling AsyncHTTPClient FoundationExtensions.swift
[1562/1617] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1563/1617] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1564/1617] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[1565/1617] Emitting module AsyncHTTPClient
[1566/1625] Compiling FluentMySQLDriver FluentMySQLConfiguration.swift
[1567/1626] Emitting module FluentMySQLDriver
[1568/1626] Compiling FluentMySQLDriver Exports.swift
[1569/1626] Compiling FluentMySQLDriver FluentMySQLError.swift
[1570/1626] Compiling FluentMySQLDriver MySQLConverterDelegate.swift
[1571/1626] Compiling FluentMySQLDriver MySQLError+Database.swift
[1572/1626] Compiling FluentMySQLDriver FluentMySQLDriver.swift
[1573/1626] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1574/1626] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1575/1626] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1576/1626] Compiling AsyncHTTPClient HTTP1Connection.swift
[1577/1626] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1578/1626] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1579/1626] Compiling AsyncHTTPClient HTTP2Connection.swift
[1580/1626] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1581/1626] Compiling FluentMySQLDriver MySQLRow+Database.swift
[1582/1626] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1583/1626] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1584/1626] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1585/1626] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1586/1626] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1587/1626] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1588/1626] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1589/1626] Compiling AsyncHTTPClient RequestBodyLength.swift
[1590/1626] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1591/1626] Compiling AsyncHTTPClient RequestOptions.swift
[1592/1626] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1593/1626] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1594/1626] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1595/1626] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1596/1626] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1597/1626] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1598/1626] Compiling AsyncHTTPClient RequestBag.swift
[1599/1626] Compiling AsyncHTTPClient RequestValidation.swift
[1600/1626] Compiling AsyncHTTPClient SSLContextCache.swift
[1601/1626] Compiling AsyncHTTPClient Scheme.swift
[1602/1626] Compiling AsyncHTTPClient Singleton.swift
[1603/1626] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1604/1626] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[1605/1626] Compiling AsyncHTTPClient Utils.swift
[1606/1626] Compiling FluentMySQLDriver FluentMySQLDatabase.swift
[1608/1627] Compiling AsyncHTTPClient HTTPClient.swift
[1609/1627] Compiling AsyncHTTPClient HTTPHandler.swift
[1610/1627] Compiling AsyncHTTPClient LRUCache.swift
[1611/1627] Compiling AsyncHTTPClient NWErrorHandler.swift
[1612/1627] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1613/1627] Compiling AsyncHTTPClient TLSConfiguration.swift
[1614/1627] Compiling AsyncHTTPClient RedirectState.swift
[1615/1627] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1616/1627] Wrapping AST for AsyncHTTPClient for debugging
[1618/1796] Compiling Vapor AsyncBasicResponder.swift
[1619/1796] Compiling Vapor AsyncMiddleware.swift
[1620/1796] Compiling Vapor AsyncPasswordHasher+Concurrency.swift
[1621/1796] Compiling Vapor AsyncSessionDriver.swift
[1622/1796] Compiling Vapor Authentication+Concurrency.swift
[1623/1796] Compiling Vapor Cache+Concurrency.swift
[1624/1796] Compiling Vapor Client+Concurrency.swift
[1625/1796] Compiling Vapor RequestBody+Concurrency.swift
[1626/1796] Compiling Vapor Responder+Concurrency.swift
[1627/1796] Compiling Vapor ResponseCodable+Concurrency.swift
[1628/1796] Compiling Vapor RoutesBuilder+Concurrency.swift
[1629/1796] Compiling Vapor ViewRenderer+Concurrency.swift
[1630/1796] Compiling Vapor WebSocket+Concurrency.swift
[1631/1796] Compiling Vapor ContainerGetPathExecutor.swift
[1632/1796] Compiling Vapor Content.swift
[1633/1796] Compiling Vapor ContentCoders.swift
[1634/1796] Compiling Vapor ContentConfiguration.swift
[1635/1796] Compiling Vapor ContentContainer.swift
[1636/1796] Compiling Vapor JSONCoder+Custom.swift
[1637/1796] Compiling Vapor JSONCoders+Content.swift
[1638/1796] Compiling Vapor PlaintextDecoder.swift
[1639/1796] Compiling Vapor PlaintextEncoder.swift
[1640/1796] Compiling Vapor URLQueryCoders.swift
[1641/1796] Compiling Vapor URLQueryContainer.swift
[1642/1820] Compiling Vapor HTTPServerResponseEncoder.swift
[1643/1820] Compiling Vapor HTTPServerUpgradeHandler.swift
[1644/1820] Compiling Vapor Logger+Report.swift
[1645/1820] Compiling Vapor LoggingSystem+Environment.swift
[1646/1820] Compiling Vapor Application+Middleware.swift
[1647/1820] Compiling Vapor CORSMiddleware.swift
[1648/1820] Compiling Vapor ErrorMiddleware.swift
[1649/1820] Compiling Vapor FileMiddleware.swift
[1650/1820] Compiling Vapor Middleware.swift
[1651/1820] Compiling Vapor MiddlewareConfiguration.swift
[1652/1820] Compiling Vapor ResponseCompressionMiddleware.swift
[1653/1820] Compiling Vapor RouteLoggingMiddleware.swift
[1654/1820] Compiling Vapor TracingMiddleware.swift
[1655/1820] Compiling Vapor File+Multipart.swift
[1656/1820] Compiling Vapor FormDataDecoder+Content.swift
[1657/1820] Compiling Vapor FormDataEncoder+Content.swift
[1658/1820] Compiling Vapor Application+Password.swift
[1659/1820] Compiling Vapor Application+Passwords.swift
[1660/1820] Compiling Vapor AsyncPasswordHasher.swift
[1661/1820] Compiling Vapor BcryptHasher.swift
[1662/1820] Compiling Vapor PasswordHasher.swift
[1663/1820] Compiling Vapor PlaintextHasher.swift
[1664/1820] Compiling Vapor Request+Password.swift
[1665/1820] Compiling Vapor Redirect.swift
[1666/1844] Compiling Vapor Validator.swift
[1667/1844] Compiling Vapor ValidatorResult.swift
[1668/1844] Compiling Vapor And.swift
[1669/1844] Compiling Vapor Case.swift
[1670/1844] Compiling Vapor CharacterSet.swift
[1671/1844] Compiling Vapor Count.swift
[1672/1844] Compiling Vapor Custom.swift
[1673/1844] Compiling Vapor Email.swift
[1674/1844] Compiling Vapor Empty.swift
[1675/1844] Compiling Vapor In.swift
[1676/1844] Compiling Vapor Nil.swift
[1677/1844] Compiling Vapor NilIgnoring.swift
[1678/1844] Compiling Vapor Not.swift
[1679/1844] Compiling Vapor Or.swift
[1680/1844] Compiling Vapor Pattern.swift
[1681/1844] Compiling Vapor Range.swift
[1682/1844] Compiling Vapor URL.swift
[1683/1844] Compiling Vapor Valid.swift
[1684/1844] Compiling Vapor Application+Views.swift
[1685/1844] Compiling Vapor PlaintextRenderer.swift
[1686/1844] Compiling Vapor Request+View.swift
[1687/1844] Compiling Vapor View.swift
[1688/1844] Compiling Vapor ViewRenderer.swift
[1689/1844] Compiling Vapor _Deprecations.swift
[1690/1844] Compiling Vapor Bytes+Hex.swift
[1691/1844] Compiling Vapor Bytes+SecureCompare.swift
[1692/1844] Compiling Vapor Collection+Safe.swift
[1693/1844] Compiling Vapor DataProtocol+Copy.swift
[1694/1844] Compiling Vapor DecoderUnwrapper.swift
[1695/1844] Compiling Vapor DirectoryConfiguration.swift
[1696/1844] Compiling Vapor DotEnv.swift
[1697/1844] Compiling Vapor Extendable.swift
[1698/1844] Compiling Vapor File.swift
[1699/1844] Compiling Vapor FileIO.swift
[1700/1844] Compiling Vapor LifecycleHandler.swift
[1701/1844] Compiling Vapor OptionalType.swift
[1702/1844] Compiling Vapor RFC1123.swift
[1703/1844] Compiling Vapor SocketAddress+Hostname.swift
[1704/1844] Compiling Vapor Storage.swift
[1705/1844] Compiling Vapor String+IsIPAddress.swift
[1706/1844] Compiling Vapor Thread.swift
[1707/1844] Compiling Vapor URI.swift
[1708/1844] Compiling Vapor RangeResult.swift
[1709/1844] Compiling Vapor Validatable.swift
[1710/1844] Compiling Vapor Validation.swift
[1711/1844] Compiling Vapor ValidationKey.swift
[1712/1844] Compiling Vapor Validations.swift
[1713/1844] Compiling Vapor ValidationsError.swift
[1714/1844] Compiling Vapor Request+Body.swift
[1715/1844] Compiling Vapor Request+BodyStream.swift
[1716/1844] Compiling Vapor Request.swift
[1717/1844] Compiling Vapor Application+Responder.swift
[1718/1844] Compiling Vapor DefaultResponder.swift
[1719/1844] Compiling Vapor Response+Body.swift
[1720/1844] Compiling Vapor Response.swift
[1721/1844] Compiling Vapor ResponseCodable.swift
[1722/1844] Compiling Vapor Application+Routes.swift
[1723/1844] Compiling Vapor Parameters+Require.swift
[1724/1844] Compiling Vapor Request+WebSocket.swift
[1725/1844] Compiling Vapor Route.swift
[1726/1844] Compiling Vapor RouteCollection.swift
[1727/1844] Compiling Vapor Routes.swift
[1728/1844] Compiling Vapor RoutesBuilder+Group.swift
[1729/1844] Compiling Vapor RoutesBuilder+Method.swift
[1730/1844] Compiling Vapor RoutesBuilder+Middleware.swift
[1731/1844] Compiling Vapor RoutesBuilder+WebSocket.swift
[1732/1844] Compiling Vapor RoutesBuilder.swift
[1733/1844] Compiling Vapor OTP.swift
[1734/1844] Compiling Vapor Application+Servers.swift
[1735/1844] Compiling Vapor Server.swift
[1736/1844] Compiling Vapor App+Service.swift
[1737/1844] Compiling Vapor Req+Service.swift
[1738/1844] Compiling Vapor Core.swift
[1739/1844] Compiling Vapor Running.swift
[1740/1844] Compiling Vapor CORSMiddleware+AllowOriginSetting.swift
[1741/1844] Compiling Vapor CORSMiddleware+Configuration+exposedHeaders.swift
[1742/1844] Compiling Vapor DotEnvFile+load.swift
[1743/1844] Compiling Vapor Routes+caseInsenstive.swift
[1744/1844] Compiling Vapor Validatable+validate.swift
[1745/1844] Compiling Vapor Environment+Process.swift
[1746/1844] Compiling Vapor Environment+Secret.swift
[1747/1844] Compiling Vapor Environment.swift
[1748/1844] Compiling Vapor Abort.swift
[1749/1844] Compiling Vapor AbortError.swift
[1750/1844] Compiling Vapor DebuggableError.swift
[1751/1844] Compiling Vapor Demangler.swift
[1752/1844] Compiling Vapor ErrorSource.swift
[1753/1844] Compiling Vapor StackTrace.swift
[1754/1844] Compiling Vapor Exports.swift
[1755/1844] Compiling Vapor Application+HTTP.swift
[1756/1844] Compiling Vapor BasicResponder.swift
[1757/1844] Compiling Vapor BodyStream.swift
[1758/1844] Compiling Vapor Application+HTTP+Client.swift
[1759/1844] Compiling Vapor EventLoopHTTPClient.swift
[1760/1844] Compiling Vapor EndpointCache.swift
[1761/1844] Compiling Vapor HTTPMethod+String.swift
[1762/1844] Emitting module Vapor
[1763/1844] Compiling Vapor Service.swift
[1764/1844] Compiling Vapor Application+Sessions.swift
[1765/1844] Compiling Vapor MemorySessions.swift
[1766/1844] Compiling Vapor Request+Session.swift
[1767/1844] Compiling Vapor Session.swift
[1768/1844] Compiling Vapor SessionCache.swift
[1769/1844] Compiling Vapor SessionData.swift
[1770/1844] Compiling Vapor SessionDriver.swift
[1771/1844] Compiling Vapor SessionsConfiguration.swift
[1772/1844] Compiling Vapor SessionsMiddleware.swift
[1773/1844] Compiling Vapor URLEncodedFormData.swift
[1774/1844] Compiling Vapor URLEncodedFormDecoder.swift
[1775/1844] Compiling Vapor URLEncodedFormEncoder.swift
[1776/1844] Compiling Vapor URLEncodedFormError.swift
[1777/1844] Compiling Vapor URLEncodedFormParser.swift
[1778/1844] Compiling Vapor URLEncodedFormSerializer.swift
[1779/1844] Compiling Vapor URLQueryFragmentConvertible.swift
[1780/1844] Compiling Vapor AnyResponse.swift
[1781/1844] Compiling Vapor Array+Random.swift
[1782/1844] Compiling Vapor Base32.swift
[1783/1844] Compiling Vapor Base64.swift
[1784/1844] Compiling Vapor BaseN.swift
[1785/1844] Compiling Vapor BasicCodingKey.swift
[1786/1844] Compiling Vapor ByteCount.swift
[1787/1844] Compiling Vapor HTTPStatus.swift
[1788/1844] Compiling Vapor HTTPCookies.swift
[1789/1844] Compiling Vapor HTTPHeaderCacheControl.swift
[1790/1844] Compiling Vapor HTTPHeaderExpires.swift
[1791/1844] Compiling Vapor HTTPHeaderLastModified.swift
[1792/1844] Compiling Vapor HTTPHeaders+Cache.swift
[1793/1844] Compiling Vapor HTTPHeaders+Connection.swift
[1794/1844] Compiling Vapor HTTPHeaders+ContentDisposition.swift
[1795/1844] Compiling Vapor HTTPHeaders+ContentRange.swift
[1796/1844] Compiling Vapor HTTPHeaders+Directive.swift
[1797/1844] Compiling Vapor HTTPHeaders+Forwarded.swift
[1798/1844] Compiling Vapor HTTPHeaders+Link.swift
[1799/1844] Compiling Vapor HTTPHeaders+Name.swift
[1800/1844] Compiling Vapor HTTPHeaders+ResponseCompression.swift
[1801/1844] Compiling Vapor HTTPHeaders.swift
[1802/1844] Compiling Vapor HTTPMediaType.swift
[1803/1844] Compiling Vapor HTTPMediaTypePreference.swift
[1804/1844] Compiling Vapor Responder.swift
[1805/1844] Compiling Vapor Application+HTTP+Server.swift
[1806/1844] Compiling Vapor HTTPServer.swift
[1807/1844] Compiling Vapor HTTPServerConfiguration+RequestDecompressionConfiguration.swift
[1808/1844] Compiling Vapor HTTPServerConfiguration+ResponseCompressionConfiguration.swift
[1809/1844] Compiling Vapor HTTPServerHandler.swift
[1810/1844] Compiling Vapor HTTPServerRequestDecoder.swift
[1811/1844] Compiling Vapor Application.swift
[1812/1844] Compiling Vapor AuthenticationCache.swift
[1813/1844] Compiling Vapor Authenticator.swift
[1814/1844] Compiling Vapor BasicAuthorization.swift
[1815/1844] Compiling Vapor BearerAuthorization.swift
[1816/1844] Compiling Vapor GuardMiddleware.swift
[1817/1844] Compiling Vapor RedirectMiddleware.swift
[1818/1844] Compiling Vapor SessionAuthenticatable.swift
[1819/1844] Compiling Vapor Bcrypt.swift
[1820/1844] Compiling Vapor Application+Cache.swift
[1821/1844] Compiling Vapor Cache.swift
[1822/1844] Compiling Vapor CacheExpirationTime.swift
[1823/1844] Compiling Vapor MemoryCache.swift
[1824/1844] Compiling Vapor Request+Cache.swift
[1825/1844] Compiling Vapor Application+Clients.swift
[1826/1844] Compiling Vapor Client.swift
[1827/1844] Compiling Vapor ClientRequest.swift
[1828/1844] Compiling Vapor ClientResponse.swift
[1829/1844] Compiling Vapor Request+Client.swift
[1830/1844] Compiling Vapor BootCommand.swift
[1831/1844] Compiling Vapor CommandContext+Application.swift
[1832/1844] Compiling Vapor RoutesCommand.swift
[1833/1844] Compiling Vapor ServeCommand.swift
[1834/1844] Compiling Vapor AnyResponse+Concurrency.swift
[1835/1845] Wrapping AST for Vapor for debugging
[1837/1892] Compiling Fluent FluentProvider.swift
[1838/1892] Compiling Fluent MigrateCommand.swift
[1839/1892] Compiling VaporSecurityHeaders SecurityHeaders.swift
[1840/1892] Compiling VaporSecurityHeaders SecurityHeaders+HeaderKey.swift
[1841/1893] Compiling Leaf LeafError+AbortError.swift
[1842/1893] Compiling Fluent Pagination+Concurrency.swift
[1843/1893] Compiling Fluent Sessions+Concurrency.swift
[1844/1893] Emitting module Redis
[1845/1893] Compiling Fluent FluentProvider+Concurrency.swift
[1846/1893] Compiling Fluent ModelCredentialsAuthenticatable+Concurrency.swift
[1847/1893] Compiling Fluent Exports.swift
[1848/1893] Compiling Fluent Fluent+Cache.swift
[1851/1894] Compiling Leaf LeafRenderer+ViewRenderer.swift
[1852/1894] Compiling Leaf Request+Leaf.swift
[1853/1894] Compiling Leaf Application+Leaf.swift
[1858/1896] Emitting module Fluent
[1861/1896] Emitting module Leaf
[1862/1896] Compiling VaporSecurityHeaders SecurityHeadersFactory.swift
[1863/1896] Compiling Redis RedisConfiguration.swift
[1864/1896] Compiling Fluent Fluent+History.swift
[1865/1896] Compiling Fluent Fluent+Paginate.swift
[1866/1896] Compiling Redis Request+Redis.swift
[1869/1896] Compiling Fluent ModelAuthenticatable.swift
[1870/1896] Compiling Fluent ModelCredentialsAuthenticatable.swift
[1871/1896] Emitting module VaporSecurityHeaders
[1878/1897] Compiling Redis RedisID.swift
[1879/1897] Compiling Redis RedisStorage.swift
[1880/1898] Compiling Fluent ModelTokenAuthenticatable.swift
[1881/1898] Compiling Fluent PageLimit.swift
[1882/1898] Compiling Leaf LeafEncoder.swift
[1883/1898] Compiling Leaf Exports.swift
[1886/1899] Compiling Fluent Fluent+Pagination.swift
[1887/1899] Compiling Fluent Fluent+Sessions.swift
[1892/1899] Compiling CSRF CSRFFormFieldTag.swift
[1893/1899] Emitting module CSRF
[1894/1899] Compiling CSRF CSRF.swift
[1896/1964] Compiling App ApplicationError.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1897/1964] Compiling App InitialDataProvider.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1898/1964] Compiling App EncodableWrapper.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1899/1964] Compiling App PageResponse.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1900/1964] Compiling App ResponseContent.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1901/1964] Compiling App ImageNameGenerator.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1902/1964] Compiling App StupidPasswordHasher.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1903/1964] Compiling App CSRFViewDecorator.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1904/1964] Compiling App FileRepository.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1905/1964] Compiling App ImageRepository.swift
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/CSRFViewDecorator.swift:6:21: error: static member 'createToken' cannot be used on instance of type 'CSRF'
 4 | final class CSRFViewDecorator: ViewDecorator {
 5 |     func decodate(context: Encodable, for request: Request) -> Encodable {
 6 |         let token = CSRF().createToken(from: request)
   |                     `- error: static member 'createToken' cannot be used on instance of type 'CSRF'
 7 |         return context.add("csrfToken", token)
 8 |     }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/FileRepository.swift:50:23: warning: 'collectFile(at:)' is deprecated: Migrate to async API
48 |
49 |     func readFileBody(using fileio: FileIO, path: String) -> EventLoopFuture<EditableFileBody> {
50 |         return fileio.collectFile(at: filePathInThemeDir(name: path))
   |                       `- warning: 'collectFile(at:)' is deprecated: Migrate to async API
51 |             .map { buffer in
52 |                 buffer.getString(at: 0, length: buffer.readableBytes, encoding: .utf8)
[1906/1973] Compiling App EditableFileUpdateForm.swift
[1907/1973] Compiling App ImageForm.swift
[1908/1973] Compiling App ImageUploadForm.swift
[1909/1973] Compiling App LoginForm.swift
[1910/1973] Compiling App PostForm.swift
[1911/1973] Compiling App Form.swift
[1912/1973] Compiling App SiteInfoForm.swift
[1913/1973] Compiling App TagForm.swift
[1914/1973] Compiling App ThemeForm.swift
[1915/1973] Compiling App AuthErrorMiddleware.swift
[1916/1973] Compiling App MessageDeliveryMiddleware.swift
[1917/1973] Compiling App PublicFileMiddleware.swift
[1918/1973] Compiling App EditableFile.swift
[1919/1973] Compiling App ImageGroup.swift
[1920/1973] Compiling App Theme.swift
[1921/1973] Compiling App CategoryForm.swift
[1922/1973] Compiling App DestoryItemForm.swift
[1923/1973] Compiling App EditableFileForm.swift
[1924/1973] Emitting module App
/host/spi-builder-workspace/Sources/App/Application/Services/Core/PageResponse.swift:6:9: warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 2 | import Foundation
 3 |
 4 | struct PageResponse<T: Codable>: ResponseContent {
   |                     `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 5 |
 6 |     let items: [T]
   |         `- warning: stored property 'items' of 'Sendable'-conforming generic struct 'PageResponse' has non-sendable type '[T]'; this is an error in the Swift 6 language mode
 7 |     let metadata: Metadata
 8 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1925/1973] Compiling App AdminThemeController.swift
[1926/1973] Compiling App AdminUserController.swift
[1927/1973] Compiling App LoginController.swift
[1928/1973] Compiling App LogoutController.swift
[1929/1973] Compiling App PostController.swift
[1930/1973] Compiling App Array+Util.swift
[1931/1973] Compiling App FileManager+Util.swift
[1932/1973] Compiling App String+Markdown.swift
[1933/1973] Compiling App String+Util.swift
[1934/1973] Compiling App TwitterRepository.swift
[1935/1973] Compiling App LeafDataEncoder.swift
[1936/1973] Compiling App ViewCreator.swift
[1937/1973] Compiling App ViewDecorator.swift
[1938/1973] Compiling App ConfigJSONLoader.swift
[1939/1973] Compiling App ApplicationConfig.swift
[1940/1973] Compiling App CSPConfig.swift
[1941/1973] Compiling App FileConfig.swift
[1942/1973] Compiling App MySQLDatabaseConfig.swift
[1943/1973] Compiling App AdminRoutes.swift
[1944/1973] Compiling App PublicRoutes.swift
[1945/1973] Compiling App AdminMenuType.swift
[1946/1973] Compiling App AdminViewContext.swift
[1947/1973] Compiling App FormError.swift
[1948/1973] Compiling App PublicViewContext.swift
[1949/1973] Compiling App LeafTags.swift
[1950/1973] Compiling App configure.swift
[1951/1973] Compiling App routes.swift
[1952/1973] Compiling App API+FileController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1953/1973] Compiling App API+ImageController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1954/1973] Compiling App API+ThemeController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1955/1973] Compiling App APINameSpace.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1956/1973] Compiling App AdminCategoryController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1957/1973] Compiling App AdminImageController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1958/1973] Compiling App AdminPostController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1959/1973] Compiling App AdminSiteInfoController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1960/1973] Compiling App AdminTagController.swift
/host/spi-builder-workspace/Sources/App/Controllers/API/API+ImageController.swift:31:29: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
29 |                 newImage.save(on: tx)
30 |                     .flatMapThrowing {
31 |                         try repository.save(image: form.data, for: imageFileName)
   |                             `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
32 |                     }
33 |             }.transform(to: Response(status: .ok))
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:69:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 67 |                     image.save(on: tx)
 68 |                         .flatMapThrowing {
 69 |                             try repository.rename(from: beforeName, to: afterName)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 70 |                         }
 71 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
/host/spi-builder-workspace/Sources/App/Controllers/Admin/AdminImageController.swift:94:33: warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 92 |                     image.delete(on: tx)
 93 |                         .flatMapThrowing {
 94 |                             try repository.delete(at: name)
    |                                 `- warning: capture of 'repository' with non-sendable type 'any ImageRepository' in a '@Sendable' closure
 95 |                         }
 96 |                 }
/host/spi-builder-workspace/Sources/App/Application/Services/Repository/ImageRepository.swift:4:10: note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 2 | import Vapor
 3 |
 4 | protocol ImageRepository {
   |          `- note: protocol 'ImageRepository' does not conform to the 'Sendable' protocol
 5 |
 6 |     func isExist(at name: String) -> Bool
[1961/1973] Compiling App UserForm.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1962/1973] Compiling App Category.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1963/1973] Compiling App Image.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1964/1973] Compiling App Post.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1965/1973] Compiling App PostTag.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1966/1973] Compiling App SiteInfo.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1967/1973] Compiling App Tag.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1968/1973] Compiling App User.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
[1969/1973] Compiling App APIRoutes.swift
/host/spi-builder-workspace/Sources/App/Models/Scheme/Category.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Category' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Image.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Image' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "path")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:10:9: warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
  8 |
  9 |     @ID(custom: .id)
 10 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Post' is mutable; this is an error in the Swift 6 language mode
 11 |
 12 |     @Field(key: "title")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:137:42: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
135 | extension QueryBuilder where Model == Post {
136 |     func publicAll() -> Self {
137 |         return filter(\.$isPublished == .sql(raw: "1"))
    |                                          |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                          `- note: use 'sql(unsafeRaw:)' instead
138 |     }
139 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:141:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
139 |
140 |     func noStaticAll() -> Self {
141 |         return filter(\.$isStatic == .sql(raw: "0"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
142 |     }
143 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/Post.swift:145:39: warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
143 |
144 |     func staticAll() -> Self {
145 |         return filter(\.$isStatic == .sql(raw: "1"))
    |                                       |- warning: 'sql(raw:)' is deprecated: Renamed to `.sql(unsafeRaw:)`. Please use caution when embedding raw SQL.
    |                                       `- note: use 'sql(unsafeRaw:)' instead
146 |     }
147 |
/host/spi-builder-workspace/Sources/App/Models/Scheme/PostTag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'PostTag' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Parent(key: "post_id")
/host/spi-builder-workspace/Sources/App/Models/Scheme/SiteInfo.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
 7 |
 8 |     @ID(custom: .id)
 9 |     var id: Int?
   |         `- warning: stored property '_id' of 'Sendable'-conforming class 'SiteInfo' is mutable; this is an error in the Swift 6 language mode
10 |
11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/Tag.swift:9:9: warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
  7 |
  8 |     @ID(custom: .id)
  9 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'Tag' is mutable; this is an error in the Swift 6 language mode
 10 |
 11 |     @Field(key: "name")
/host/spi-builder-workspace/Sources/App/Models/Scheme/User.swift:11:9: warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
  9 |
 10 |     @ID(custom: .id)
 11 |     var id: Int?
    |         `- warning: stored property '_id' of 'Sendable'-conforming class 'User' is mutable; this is an error in the Swift 6 language mode
 12 |
 13 |     @Field(key: "name")
BUILD FAILURE 6.1 linux