Skip to content

Commit 5bf79bb

Browse files
authored
Add platform requirements (#35)
* Add platform requirements * bump
1 parent 7727770 commit 5bf79bb

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@ import PackageDescription
44

55
let package = Package(
66
name: "swift-url-routing",
7+
platforms: [
8+
.iOS(.v13),
9+
.macOS(.v10_15),
10+
.tvOS(.v13),
11+
.watchOS(.v6),
12+
],
713
products: [
814
.library(name: "URLRouting", targets: ["URLRouting"])
915
],
1016
dependencies: [
1117
.package(url: "https://github.com/apple/swift-argument-parser", from: "0.5.0"),
12-
.package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.9.2"),
13-
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "0.2.1"),
18+
.package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.10.0"),
19+
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "0.3.0"),
1420
.package(name: "Benchmark", url: "https://github.com/google/swift-benchmark", from: "0.1.1"),
1521
],
1622
targets: [

0 commit comments

Comments
 (0)