-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
44 lines (42 loc) · 1.13 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
// swift-tools-version:5.6.0
import PackageDescription
let package = Package(
name: "LSPServiceKit",
platforms: [.iOS(.v11), .tvOS(.v11), .macOS(.v12)],
products: [
.library(
name: "LSPServiceKit",
targets: ["LSPServiceKit"]
)
],
dependencies: [
.package(
url: "https://github.com/codeface-io/SwiftLSP.git",
exact: "0.3.15"
),
.package(
url: "https://github.com/flowtoolz/FoundationToolz.git",
exact: "0.4.0"
),
.package(
url: "https://github.com/codeface-io/SwiftObserver.git",
exact: "7.0.9"
),
.package(
url: "https://github.com/flowtoolz/SwiftyToolz.git",
exact: "0.5.1"
)
],
targets: [
.target(
name: "LSPServiceKit",
dependencies: ["SwiftLSP", "FoundationToolz", "SwiftObserver", "SwiftyToolz"],
path: "Code"
),
.testTarget(
name: "LSPServiceKitTests",
dependencies: ["LSPServiceKit", "SwiftLSP"],
path: "Tests"
)
]
)