-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
37 lines (35 loc) · 1.07 KB
/
Package.swift
File metadata and controls
37 lines (35 loc) · 1.07 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
// swift-tools-version: 6.1
import PackageDescription
let package = Package(
name: "IceVault",
platforms: [
.macOS(.v14)
],
products: [
.executable(name: "IceVault", targets: ["IceVault"])
],
dependencies: [
.package(url: "https://github.com/groue/GRDB.swift", from: "7.0.0"),
.package(url: "https://github.com/awslabs/aws-sdk-swift", from: "1.0.0"),
.package(url: "https://github.com/kishikawakatsumi/KeychainAccess", from: "4.2.2")
],
targets: [
.executableTarget(
name: "IceVault",
dependencies: [
.product(name: "GRDB", package: "GRDB.swift"),
.product(name: "AWSS3", package: "aws-sdk-swift"),
.product(name: "KeychainAccess", package: "KeychainAccess")
],
path: "IceVault",
resources: [
.process("Resources")
]
),
.testTarget(
name: "IceVaultTests",
dependencies: ["IceVault"],
path: "Tests/IceVaultTests"
)
]
)