-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathPackage.swift
42 lines (40 loc) · 1.22 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
// swift-tools-version: 5.5
import PackageDescription
let package = Package(
name: "swift-url-routing",
products: [
.library(name: "URLRouting", targets: ["URLRouting"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "0.5.0"),
.package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.9.2"),
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "0.2.1"),
.package(name: "Benchmark", url: "https://github.com/google/swift-benchmark", from: "0.1.1"),
],
targets: [
.target(
name: "URLRouting",
dependencies: [
.product(name: "Parsing", package: "swift-parsing"),
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
]
),
.testTarget(
name: "URLRoutingTests",
dependencies: [
"URLRouting"
]
),
.executableTarget(
name: "swift-url-routing-benchmark",
dependencies: [
"URLRouting",
.product(name: "Benchmark", package: "Benchmark"),
]
),
.executableTarget(
name: "variadics-generator",
dependencies: [.product(name: "ArgumentParser", package: "swift-argument-parser")]
),
]
)