-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
38 lines (36 loc) · 1.14 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
38
// swift-tools-version:5.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "S3DeduplicationHelper",
dependencies: [
.package(
name: "Files",
url: "https://github.com/johnsundell/files.git",
from: "4.0.0"
),
.package(
name: "AWSSDKSwift",
url: "https://github.com/swift-aws/aws-sdk-swift.git",
from: "4.0.0"
),
],
targets: [
.target(
name: "S3DeduplicationHelper",
dependencies: ["S3DeduplicationHelperCore"]),
.target(
name: "S3DeduplicationHelperCore",
dependencies: [
"Files",
.product(name: "S3", package: "AWSSDKSwift"),
.product(name: "SES", package: "AWSSDKSwift"),
.product(name: "IAM", package: "AWSSDKSwift"),
]
),
.testTarget(
name: "S3DeduplicationHelperTests",
dependencies: ["S3DeduplicationHelperCore", "Files", "AWSSDKSwift"]
)
]
)