2022-05-24 14:35:10 +02:00
|
|
|
// swift-tools-version:5.5
|
2020-05-17 20:01:30 +02:00
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
2022-05-22 23:26:55 +02:00
|
|
|
name: "Caps-Server",
|
2020-09-20 11:36:35 +02:00
|
|
|
platforms: [
|
2023-01-11 18:18:59 +01:00
|
|
|
.macOS(.v12)
|
2020-09-20 11:36:35 +02:00
|
|
|
],
|
2020-05-17 20:01:30 +02:00
|
|
|
dependencies: [
|
2020-10-29 11:42:57 +01:00
|
|
|
.package(url: "https://github.com/vapor/vapor", from: "4.0.0"),
|
2023-10-02 00:04:36 +02:00
|
|
|
.package(url: "https://github.com/christophhagen/Clairvoyant", from: "0.11.2"),
|
|
|
|
.package(url: "https://github.com/christophhagen/ClairvoyantVapor", from: "0.4.0"),
|
2023-09-08 10:05:55 +02:00
|
|
|
.package(url: "https://github.com/christophhagen/ClairvoyantBinaryCodable", from: "0.3.0"),
|
2020-05-17 20:01:30 +02:00
|
|
|
],
|
|
|
|
targets: [
|
2023-12-06 09:39:12 +01:00
|
|
|
.executableTarget(
|
|
|
|
name: "App",
|
|
|
|
dependencies: [
|
|
|
|
.product(name: "Vapor", package: "vapor"),
|
|
|
|
.product(name: "Clairvoyant", package: "Clairvoyant"),
|
|
|
|
.product(name: "ClairvoyantVapor", package: "ClairvoyantVapor"),
|
|
|
|
.product(name: "ClairvoyantBinaryCodable", package: "ClairvoyantBinaryCodable"),
|
|
|
|
]
|
|
|
|
)
|
2020-05-17 20:01:30 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|