Files

73 lines
2.3 KiB
Swift
Raw Permalink Normal View History

2025-10-02 15:30:12 +00:00
// swift-tools-version: 5.10
2025-10-07 23:02:12 +00:00
// ===----------------------------------------------------------------------===
//
// This source file is part of the Marvel Service open source project
//
// Copyright (c) 2025 Röck+Cöde VoF. and the Marvel Service project authors
// Licensed under Apache license v2.0
//
2025-10-02 15:30:12 +00:00
// See LICENSE for license information
2025-10-07 23:02:12 +00:00
// See CONTRIBUTORS for the list of Marvel Service project authors
2025-10-02 15:30:12 +00:00
//
2025-10-07 23:02:12 +00:00
// SPDX-License-Identifier: Apache-2.0
//
// ===----------------------------------------------------------------------===
2025-10-02 16:55:17 +02:00
import PackageDescription
let package = Package(
2025-10-02 15:30:12 +00:00
name: MarvelService.package,
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.visionOS(.v1),
.watchOS(.v6)
],
2025-10-02 16:55:17 +02:00
products: [
.library(
2025-10-02 15:30:12 +00:00
name: MarvelService.package,
targets: [MarvelService.target]
)
],
dependencies: [
2025-10-05 22:05:07 +00:00
.package(url: "https://github.com/apple/swift-crypto.git", from: "3.13.0"),
2025-10-02 15:30:12 +00:00
.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/swiftlang/swift-docc-plugin", from: "1.1.0")
2025-10-02 16:55:17 +02:00
],
targets: [
.target(
2025-10-02 15:30:12 +00:00
name: MarvelService.target,
dependencies: [
2025-10-05 22:05:07 +00:00
.product(name: "Crypto", package: "swift-crypto", condition: .when(platforms: [
.android, .linux, .openbsd, .windows
])),
2025-10-02 15:30:12 +00:00
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession")
],
path: "Sources/MarvelService",
plugins: [
.plugin(name: "OpenAPIGenerator", package: "swift-openapi-generator")
]
2025-10-02 16:55:17 +02:00
),
.testTarget(
2025-10-02 15:30:12 +00:00
name: MarvelService.test,
dependencies: [
.byName(name: MarvelService.target)
],
path: "Tests/MarvelService"
2025-10-02 16:55:17 +02:00
),
]
)
2025-10-02 15:30:12 +00:00
// MARK: - Constants
enum MarvelService {
static let package = "marvel-service"
static let target = "MarvelService"
static let test = "\(MarvelService.target)Tests"
2025-10-05 22:05:07 +00:00
}