-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathPackage.swift
35 lines (33 loc) · 1.34 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// swift-tools-version: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "CelestiaAddonValidator",
platforms: [
.macOS("12.0"), .iOS("15.0"), .watchOS("8.0"), .tvOS("15.0")
],
dependencies: [
.package(url: "https://github.com/levinli303/OpenCloudKit.git", from: "1.0.1"),
.package(url: "https://github.com/levinli303/mwrequest.git", from: "1.0.4"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.0"),
.package(url: "https://github.com/weichsel/ZIPFoundation.git", from: "0.9.0"),
],
targets: [
.target(
name: "CelestiaAddonValidator",
dependencies: [
.product(name: "OpenCloudKit", package: "OpenCloudKit"),
.product(name: "MWRequest", package: "MWRequest"),
.product(name: "ZIPFoundation", package: "ZIPFoundation"),
]
),
.executableTarget(
name: "CelestiaAddonValidatorApp",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "OpenCloudKit", package: "OpenCloudKit"),
.target(name: "CelestiaAddonValidator")
]
),
]
)