-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
59 lines (57 loc) · 1.58 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// swift-tools-version: 5.8
import PackageDescription
let package = Package(
name: "swift-sacoge",
platforms: [
.macOS(.v13)
],
products: [
.executable(name: "sacoge", targets: ["sacoge"]),
.plugin(name: "SacogePlugin", targets: ["SacogePlugin"]),
.library(name: "SacogeCore", targets: ["SacogeCore"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-crypto.git", from: "3.0.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.12.0"),
],
targets: [
.executableTarget(
name: "sacoge",
dependencies: [
"SacogeCore",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
.plugin(
name: "SacogePlugin",
capability: .buildTool(),
dependencies: [
"sacoge"
]
),
.target(
name: "SacogeCore",
dependencies: [
.product(name: "Crypto", package: "swift-crypto")
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
.testTarget(
name: "SacogeCoreTests",
dependencies: [
"SacogeCore",
.product(name: "SnapshotTesting", package: "swift-snapshot-testing"),
.product(name: "InlineSnapshotTesting", package: "swift-snapshot-testing"),
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
]
)