Sesame-Server/Package.swift

38 lines
1.6 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"),
2022-01-23 20:49:06 +01:00
],
targets: [
.target(
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"),
2022-01-23 20:49:06 +01:00
],
swiftSettings: [
// Enable better optimizations when building in Release configuration. Despite the use of
// the `.unsafeFlags` construct required by SwiftPM, this flag is recommended for Release
// builds. See <https://github.com/swift-server/guides/blob/main/docs/building.md#building-for-production> for details.
.unsafeFlags(["-cross-module-optimization"], .when(configuration: .release))
]
),
.executableTarget(name: "Run", dependencies: [.target(name: "App")]),
.testTarget(name: "AppTests", dependencies: [
.target(name: "App"),
.product(name: "XCTVapor", package: "vapor"),
])
]
)