Project updates from Template

This commit contains the latest updates from the generic Website template, which rework the compression and localization:

- Reworked the compression and localization in the Infrastructure package. (3c568e4)
- Adopted the reworked compression and localization in the Website service. (08cf3e3)

The template commit that only touched the root README (53676ed) was left out, as this project no longer carries that file.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
2026-09-20 12:45:58 +02:00
co-authored by Claude Fable 5.1
parent 65b62681eb
commit 916df7e2f0
24 changed files with 426 additions and 218 deletions
+16
View File
@@ -19,6 +19,10 @@ let package = Package(
.package(
path: "../Localization"
),
.package(
url: "https://github.com/adam-fowler/compress-nio.git",
from: "1.4.2"
),
.package(
url: "https://github.com/elementary-swift/elementary.git",
from: "0.6.0"
@@ -27,12 +31,20 @@ let package = Package(
url: "https://github.com/hummingbird-project/hummingbird.git",
from: "2.25.0"
),
.package(
url: "https://github.com/hummingbird-project/hummingbird-compression.git",
from: "2.0.0"
),
],
targets: [
.target(
name: "Infrastructure",
dependencies: [
.byName(name: "Localization"),
.product(
name: "CompressNIO",
package: "compress-nio"
),
.product(
name: "Elementary",
package: "elementary"
@@ -41,6 +53,10 @@ let package = Package(
name: "Hummingbird",
package: "hummingbird"
),
.product(
name: "HummingbirdCompression",
package: "hummingbird-compression"
),
],
path: "Sources"
),