generated from hummingbird-project/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
71 lines (69 loc) · 3.05 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:6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swiftodon",
platforms: [.macOS(.v15)],
products: [
.executable(name: "App", targets: ["App"]),
.library(name: "MastodonData", targets: ["MastodonData"]),
// .library(name: "KeyStorage", targets: ["KeyStorage"]),
.library(name: "Storage", targets: ["Storage"]),
],
dependencies: [
.package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "2.0.0"),
.package(url: "https://github.com/hummingbird-project/hummingbird-auth.git", from: "2.0.0"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.3.0"),
.package(url: "https://github.com/hummingbird-project/hummingbird-fluent.git", from: "2.0.0-beta.5"),
.package(url: "https://github.com/swift-server/webauthn-swift.git", from: "1.0.0-alpha.2"),
.package(url: "https://github.com/hummingbird-project/swift-mustache.git", from: "2.0.0-beta.1"),
.package(url: "https://github.com/vapor/fluent-sqlite-driver.git", from: "4.0.0"),
],
targets: [
.executableTarget(
name: "App",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Hummingbird", package: "hummingbird"),
.product(name: "HummingbirdAuth", package: "hummingbird-auth"),
.product(name: "HummingbirdRouter", package: "hummingbird"),
.product(name: "HummingbirdFluent", package: "hummingbird-fluent"),
.product(name: "FluentSQLiteDriver", package: "fluent-sqlite-driver"),
.product(name: "WebAuthn", package: "webauthn-swift"),
.product(name: "Mustache", package: "swift-mustache"),
"MastodonData",
"Storage",
],
path: "Sources/App",
resources: [.process("Resources")]
),
.target(name: "MastodonData", dependencies: [
.product(name: "Hummingbird", package: "hummingbird"),
], path: "Sources/MastodonData"),
// .target(name: "KeyStorage", dependencies: []),
.target(name: "Storage", dependencies: [], path: "Sources/Storage"),
.testTarget(
name: "MastodonDataTests",
dependencies: [
.byName(name: "MastodonData"),
.byName(name: "Storage"),
],
path: "Tests/MastodonData"
),
.testTarget(
name: "AppTests",
dependencies: [
.byName(name: "App"),
.product(name: "HummingbirdTesting", package: "hummingbird"),
],
path: "Tests/AppTests"
),
.testTarget(
name: "SignatureMiddlewareTests",
dependencies: [
// .byName(name: "KeyStorage")
],
path: "Tests/SignatureMiddleware"
),
]
)