-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
40 lines (38 loc) · 1.18 KB
/
Package.swift
File metadata and controls
40 lines (38 loc) · 1.18 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
// swift-tools-version:6.1
import PackageDescription
let package = Package(
name: "Restructure",
platforms: [
.macOS(.v14), .iOS(.v17), .tvOS(.v17), .watchOS(.v9), .visionOS(.v2)
],
products: [
.library(
name: "Restructure",
targets: ["Restructure"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-numerics", from: "1.0.0"),
.package(url: "https://github.com/SimplyDanny/SwiftLintPlugins", from: "0.59.1")
],
targets: [
.target(
name: "Restructure",
swiftSettings: [
.enableUpcomingFeature("StrictConcurrency")
],
plugins: [.plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")],
),
.testTarget(
name: "RestructureTests",
dependencies: [
"Restructure",
.product(name: "Numerics", package: "swift-numerics")
],
swiftSettings: [
.enableUpcomingFeature("StrictConcurrency")
]
),
]
)