-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPackage.swift
55 lines (54 loc) · 1.54 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
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "SQLite",
platforms: [
.macOS(.v13), .macCatalyst(.v16),
.iOS(.v16), .tvOS(.v16), .watchOS(.v9),
],
products: [
.library(
name: "SQLite",
targets: ["SQLite"]
),
],
dependencies: [
.package(
url: "https://github.com/shareup/combine-extensions.git",
from: "6.0.0"
),
.package(
url: "https://github.com/groue/GRDB.swift.git",
from: "6.29.3"
),
.package(
url: "https://github.com/shareup/precise-iso-8601-date-formatter.git",
from: "1.0.3"
),
.package(
url: "https://github.com/shareup/synchronized.git",
from: "4.0.1"
),
],
targets: [
.target(
name: "SQLite",
dependencies: [
.product(name: "GRDB", package: "GRDB.swift"),
.product(
name: "PreciseISO8601DateFormatter",
package: "precise-iso-8601-date-formatter"
),
.product(name: "Synchronized", package: "synchronized"),
]
),
.testTarget(
name: "SQLiteTests",
dependencies: [
.product(name: "CombineExtensions", package: "combine-extensions"),
.product(name: "CombineTestExtensions", package: "combine-extensions"),
"SQLite",
]
),
]
)