-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
34 lines (33 loc) · 901 Bytes
/
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
// swift-tools-version:5.8
import PackageDescription
let package = Package(
name: "app",
platforms: [
.macOS(.v13)
],
products: [
.executable(name: "app", targets: ["App"]),
],
dependencies: [
.package(url: "https://github.com/alchemy-swift/alchemy", branch: "main"),
//.package(url: "https://github.com/alchemy-swift/aws", branch: "main"),
],
targets: [
.executableTarget(
name: "App",
dependencies: [
.product(name: "Alchemy", package: "alchemy"),
//.product(name: "AlchemyS3", package: "aws"),
],
path: "App"
),
.testTarget(
name: "Tests",
dependencies: [
"App",
.product(name: "AlchemyTest", package: "alchemy")
],
path: "Tests"
),
]
)