-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
71 lines (70 loc) · 2.75 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
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "Kineo",
platforms: [
.macOS(.v13)
],
products: [
.library(name: "Kineo", targets: ["Kineo"]),
.executable(
name: "kineo",
targets: ["kineo-cli"]),
.executable(
name: "kineo-parse",
targets: ["kineo-parse"]),
],
dependencies: [
.package(url: "https://github.com/kasei/swift-sparql-syntax.git", .upToNextMinor(from: "0.2.11")),
// .package(name: "SPARQLSyntax", url: "https://github.com/kasei/swift-sparql-syntax.git", .branch("update")),
.package(url: "https://github.com/kasei/swift-serd.git", .upToNextMinor(from: "0.0.4")),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.5.0")),
.package(url: "https://github.com/kylef/URITemplate.swift.git", .upToNextMinor(from: "3.0.1")),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", .upToNextMinor(from: "0.11.5")),
// .package(name: "SQLite.swift", url: "https://github.com/kasei/SQLite.swift.git", .branch("fix-swift-4")),
.package(url: "https://github.com/kasei/diomede.git", .upToNextMinor(from: "0.0.65")),
.package(url: "https://github.com/kasei/IDPPlanner.git", .upToNextMinor(from: "0.0.5")),
.package(url: "https://github.com/apple/swift-algorithms", .upToNextMinor(from: "0.1.0")),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
],
targets: [
.target(
name: "Kineo",
dependencies: [
"CryptoSwift",
.product(name: "SPARQLSyntax", package: "swift-sparql-syntax"),
.product(name: "URITemplate", package: "URITemplate.swift"),
.product(name: "serd", package: "swift-serd"),
.product(name: "SQLite", package: "SQLite.swift"),
.product(name: "DiomedeQuadStore", package: "Diomede"),
.product(name: "IDPPlanner", package: "IDPPlanner"),
.product(name: "Algorithms", package: "swift-algorithms"),
]
),
.executableTarget(
name: "kineo-cli",
dependencies: [
"Kineo",
.product(name: "SPARQLSyntax", package: "swift-sparql-syntax"),
.product(name: "ArgumentParser", package: "swift-argument-parser")
]
),
.executableTarget(
name: "kineo-client",
dependencies: ["Kineo", .product(name: "SPARQLSyntax", package: "swift-sparql-syntax")]
),
.executableTarget(
name: "kineo-dawg-test",
dependencies: ["Kineo", .product(name: "SPARQLSyntax", package: "swift-sparql-syntax")]
),
.executableTarget(
name: "kineo-parse",
dependencies: ["Kineo", .product(name: "SPARQLSyntax", package: "swift-sparql-syntax")]
),
.executableTarget(
name: "kineo-test",
dependencies: ["Kineo", .product(name: "SPARQLSyntax", package: "swift-sparql-syntax")]
),
.testTarget(name: "KineoTests", dependencies: ["Kineo"])
]
)