Some bug fixes #8

Merged
javier merged 7 commits from library/bug-fixes into main 2025-10-05 22:05:28 +00:00
Showing only changes of commit 40e6973681 - Show all commits
+6 -2
View File
@@ -33,6 +33,7 @@ let package = Package(
.package(url: "https://github.com/apple/swift-openapi-generator.git", from: "1.3.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/apple/swift-crypto.git", from: "3.13.0"),
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.1.0")
],
targets: [
@@ -40,7 +41,10 @@ let package = Package(
name: MarvelService.target,
dependencies: [
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession")
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession"),
.product(name: "Crypto", package: "swift-crypto", condition: .when(platforms: [
.android, .linux, .openbsd, .windows
]))
],
path: "Sources/MarvelService",
plugins: [
@@ -63,4 +67,4 @@ enum MarvelService {
static let package = "marvel-service"
static let target = "MarvelService"
static let test = "\(MarvelService.target)Tests"
}
}