-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPackage.swift
More file actions
31 lines (29 loc) · 791 Bytes
/
Package.swift
File metadata and controls
31 lines (29 loc) · 791 Bytes
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
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "LocoKit2",
defaultLocalization: "en",
platforms: [
.iOS(.v18)
],
products: [
.library(name: "LocoKit2", targets: ["LocoKit2"])
],
dependencies: [
.package(url: "https://github.com/Jounce/Surge", from: "2.3.0"),
.package(url: "https://github.com/groue/GRDB.swift", from: "7.1.0")
],
targets: [
.target(
name: "LocoKit2",
dependencies: [
"Surge",
.product(name: "GRDB", package: "GRDB.swift")
],
resources: [
.process("Resources")
]
),
.testTarget(name: "LocoKit2Tests", dependencies: ["LocoKit2"])
]
)