From b8c0878ca37228d616b0f2768db990703624b6e6 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Tue, 24 Mar 2026 01:19:58 +0000 Subject: [PATCH] Fixed the "swift-openapi-generator" package dependency to 1.11.0 in the package file to avoid a plugin issue when building from folders with unicode characters. (#25) Reviewed-on: https://repo.rock-n-code.com/rock-n-code/amiibo-service/pulls/25 Co-authored-by: Javier Cicchelli Co-committed-by: Javier Cicchelli --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 6f96a8f..3a1822c 100644 --- a/Package.swift +++ b/Package.swift @@ -32,7 +32,7 @@ let package = Package( ) ], dependencies: [ - .package(url: "https://github.com/apple/swift-openapi-generator.git", from: "1.3.0"), + .package(url: "https://github.com/apple/swift-openapi-generator.git", exact: "1.11.0"), .package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.5.0"), .package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.2"), .package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.1.0"),