Sesame-Server/Package.swift

29 lines
1.1 KiB
Swift
Raw Normal View History

2022-01-23 20:49:06 +01:00
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "SesameServer",
platforms: [
2023-01-31 19:10:57 +01:00
.macOS(.v12)
2022-01-23 20:49:06 +01:00
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "4.0.0"),
2023-11-09 13:12:32 +01:00
.package(url: "https://github.com/christophhagen/Clairvoyant", from: "0.13.0"),
.package(url: "https://github.com/christophhagen/ClairvoyantVapor", from: "0.5.0"),
2023-09-07 14:13:28 +02:00
.package(url: "https://github.com/christophhagen/ClairvoyantBinaryCodable", from: "0.3.1"),
2023-12-08 12:39:10 +01:00
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "4.0.0"),
2022-01-23 20:49:06 +01:00
],
targets: [
2023-12-06 09:49:26 +01:00
.executableTarget(
2022-01-23 20:49:06 +01:00
name: "App",
dependencies: [
2023-01-31 19:10:57 +01:00
.product(name: "Vapor", package: "vapor"),
.product(name: "Clairvoyant", package: "Clairvoyant"),
2023-09-07 14:13:28 +02:00
.product(name: "ClairvoyantVapor", package: "ClairvoyantVapor"),
.product(name: "ClairvoyantBinaryCodable", package: "ClairvoyantBinaryCodable"),
2023-12-08 12:39:10 +01:00
.product(name: "Crypto", package: "swift-crypto"),
2022-01-23 20:49:06 +01:00
]
2023-12-06 09:49:26 +01:00
)
2022-01-23 20:49:06 +01:00
]
)