-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
35 lines (28 loc) · 916 Bytes
/
Package.swift
File metadata and controls
35 lines (28 loc) · 916 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
32
33
34
35
// swift-tools-version:5.7
import PackageDescription
var package = Package(
name: "LighterExamples",
platforms: [ .macOS(.v10_15), .iOS(.v13) ],
products: [
.executable(name: "NorthwindWebAPI", targets: [ "NorthwindWebAPI" ])
],
dependencies: [
.package(url: "https://github.com/Lighter-swift/Lighter.git",
from: "1.4.12"),
.package(url: "https://github.com/Northwind-swift/NorthwindSQLite.swift.git",
from: "1.2.4"),
.package(url: "https://github.com/Macro-swift/MacroExpress.git",
from: "1.0.8"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
],
targets: [
.executableTarget(
name: "NorthwindWebAPI",
dependencies: [
.product(name: "Northwind", package: "NorthwindSQLite.swift"),
"MacroExpress"
],
exclude: [ "views", "README.md" ]
)
]
)