-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
48 lines (44 loc) · 1.34 KB
/
Package.swift
File metadata and controls
48 lines (44 loc) · 1.34 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
38
39
40
41
42
43
44
45
46
47
48
// swift-tools-version: 5.8
// swiftlint:disable explicit_acl explicit_top_level_acl
import PackageDescription
let swiftSettings: [SwiftSetting] = [
.enableUpcomingFeature("BareSlashRegexLiterals"),
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ImplicitOpenExistentials"),
.enableUpcomingFeature("StrictConcurrency"),
.enableExperimentalFeature("AccessLevelOnImport"),
// .unsafeFlags([
// "-warn-concurrency",
// "-enable-actor-data-race-checks",
// // Warn about functions with >100 lines
// "-Xfrontend", "-warn-long-function-bodies=100",
// // Warn about slow type checking expressions
// "-Xfrontend", "-warn-long-expression-type-checking=100"
// ])
]
let package = Package(
name: "StealthyStash",
platforms: [.macOS(.v12), .iOS(.v14), .watchOS(.v7), .tvOS(.v14)],
products: [
.library(
name: "StealthyStash",
targets: ["StealthyStash"]
)
],
dependencies: [],
targets: [
.target(
name: "StealthyStash",
dependencies: [],
swiftSettings: swiftSettings
),
.testTarget(
name: "StealthyStashTests",
dependencies: ["StealthyStash"],
swiftSettings: swiftSettings
)
]
)
// swiftlint:enable explicit_acl explicit_top_level_acl