Skip to content

Commit 76ff0fd

Browse files
committed
Add Swift 5.10 manifest
... and refer to the latest Lighter.
1 parent dc8ae6c commit 76ff0fd

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var package = Package(
1212

1313
dependencies: [
1414
.package(url: "https://github.com/Lighter-swift/Lighter.git",
15-
from: "1.0.28"),
15+
from: "1.0.32"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1717
],
1818

Package@swift-5.10.swift

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// swift-tools-version:5.10
2+
3+
import PackageDescription
4+
5+
var package = Package(
6+
name: "Northwind",
7+
8+
platforms: [
9+
.macOS(.v10_15), .iOS(.v13), .visionOS(.v1), .watchOS(.v7), .tvOS(.v12)
10+
],
11+
products: [
12+
.library(name: "Northwind", targets: [ "Northwind" ])
13+
],
14+
15+
dependencies: [
16+
.package(url: "https://github.com/Lighter-swift/Lighter.git",
17+
from: "1.0.32"),
18+
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
19+
],
20+
21+
targets: [
22+
.target(name : "Northwind",
23+
dependencies : [ "Lighter" ],
24+
path : "dist",
25+
resources : [ .copy("northwind.db") ],
26+
plugins : [ .plugin(name: "Enlighter", package: "Lighter") ])
27+
]
28+
)

Package@swift-5.7.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var package = Package(
1212

1313
dependencies: [
1414
.package(url: "https://github.com/Lighter-swift/Lighter.git",
15-
from: "1.0.28"),
15+
from: "1.0.32"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1717
],
1818

Package@swift-5.9.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var package = Package(
1212

1313
dependencies: [
1414
.package(url: "https://github.com/Lighter-swift/Lighter.git",
15-
from: "1.0.28"),
15+
from: "1.0.32"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1717
],
1818

0 commit comments

Comments
 (0)