-
Notifications
You must be signed in to change notification settings - Fork 6
/
Package@swift-6.0.swift
49 lines (46 loc) · 1.35 KB
/
Package@swift-6.0.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
// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "GPXKit",
platforms: [
.iOS(.v13),
.macOS(.v10_13),
.watchOS(.v6),
.tvOS(.v12)
],
products: [
.library(
name: "GPXKit",
targets: ["GPXKit"]
)
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.3.3"),
.package(url: "https://github.com/apple/swift-algorithms", from: "1.2.0"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.3"),
.package(url: "https://github.com/apple/swift-numerics", from: "1.0.2")
],
targets: [
.target(
name: "GPXKit",
dependencies: [
.product(name: "Algorithms", package: "swift-algorithms")
]
),
.testTarget(
name: "GPXKitTests",
dependencies: [
"GPXKit",
.product(name: "CustomDump", package: "swift-custom-dump"),
.product(name: "Numerics", package: "swift-numerics")
]
)
],
swiftLanguageModes: [.v6]
)
for target in package.targets {
target.swiftSettings = target.swiftSettings ?? []
target.swiftSettings?.append(contentsOf: [
.enableUpcomingFeature("ExistentialAny")
])
}