-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
37 lines (35 loc) · 1.01 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
36
37
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "SwiftBeanCountSheetSync",
platforms: [
.macOS(.v10_15),
],
products: [
.library(
name: "SwiftBeanCountSheetSync",
targets: ["SwiftBeanCountSheetSync"]),
],
dependencies: [
.package(
url: "https://github.com/Nef10/SwiftBeanCountModel.git",
.exact("0.1.6")
),
.package(
url: "https://github.com/Nef10/SwiftBeanCountParser.git",
.exact("0.1.8")
),
.package(
url: "https://github.com/Nef10/GoogleAuthentication.git",
.upToNextMajor(from: "1.0.3")
),
],
targets: [
.target(
name: "SwiftBeanCountSheetSync",
dependencies: ["SwiftBeanCountModel", "SwiftBeanCountParser", "GoogleAuthentication"]),
.testTarget(
name: "SwiftBeanCountSheetSyncTests",
dependencies: ["SwiftBeanCountSheetSync"]),
]
)