-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
74 lines (71 loc) · 2.46 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Knit",
platforms: [
.macOS(.v14),
.iOS(.v15),
],
products: [
.library(name: "Knit", targets: ["Knit"]),
.plugin(name: "KnitBuildPlugin", targets: ["KnitBuildPlugin"]),
.executable(name: "knit-cli", targets: ["KnitCommand"]),
],
dependencies: [
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.9.1"),
.package(url: "https://github.com/Swinject/SwinjectAutoregistration.git", from: "2.9.1"),
.package(url: "https://github.com/apple/swift-syntax.git", from: "510.0.2"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.4.0"),
],
targets: [
.target(
name: "Knit",
dependencies: [
.product(name: "Swinject", package: "Swinject"),
.product(name: "SwinjectAutoregistration", package: "SwinjectAutoregistration"),
],
exclude: ["ServiceCollection/Container+ServiceCollection.erb"]
),
.testTarget(
name: "KnitTests",
dependencies: [
.target(name: "Knit"),
]
),
.plugin(
name: "KnitBuildPlugin",
capability: .buildTool,
dependencies: [
.target(name: "KnitCommand"),
]
),
// MARK: - CLI
.executableTarget(
name: "KnitCommand",
dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.target(name: "KnitCodeGen"),
]
),
.target(
name: "KnitCodeGen",
dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftParser", package: "swift-syntax"),
.product(name: "SwiftSyntaxBuilder", package: "swift-syntax"),
]
),
.testTarget(
name: "KnitCodeGenTests",
dependencies: [
"KnitCodeGen",
]
),
],
swiftLanguageVersions: [
// When this SPM package is imported by a Swift 6 toolchain it should still be used in the v5 language mode
.v5,
]
)