-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
39 lines (36 loc) · 1.11 KB
/
Package.swift
File metadata and controls
39 lines (36 loc) · 1.11 KB
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
36
37
38
39
// swift-tools-version: 6.2
import PackageDescription
let swiftSettings: [SwiftSetting] = [
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("MemberImportVisibility"),
]
let package = Package(
name: "DevAppStoreConnect",
platforms: [
.macOS(.v15)
],
products: [
.executable(
name: "dasc",
targets: [
"DevAppStoreConnect"
]
)
],
dependencies: [
.package(url: "https://github.com/AvdLee/appstoreconnect-swift-sdk.git", from: "4.1.2"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
.package(url: "https://github.com/tuist/Noora.git", from: "0.51.2"),
],
targets: [
.executableTarget(
name: "DevAppStoreConnect",
dependencies: [
.product(name: "AppStoreConnect-Swift-SDK", package: "appstoreconnect-swift-sdk"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
"Noora",
],
swiftSettings: swiftSettings
)
]
)