| 123456789101112131415161718192021222324252627282930 |
- // swift-tools-version:6.1
- // The swift-tools-version declares the minimum version of Swift required to build this package.
- import PackageDescription
- let package = Package(
- name: "server",
- platforms: [.macOS(.v14)],
- dependencies: [
- .package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "2.16.0"),
- .package(url: "https://github.com/hummingbird-project/swift-mustache.git", from: "2.0.0"),
- .package(url: "https://github.com/vapor/postgres-nio.git", from: "1.21.0"),
- ],
- targets: [
- .executableTarget(
- name: "server",
- dependencies: [
- .product(name: "Hummingbird", package: "hummingbird"),
- .product(name: "Mustache", package: "swift-mustache"),
- .product(name: "PostgresNIO", package: "postgres-nio"),
- ],
- 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#building-for-production> for details.
- .unsafeFlags(["-cross-module-optimization"], .when(configuration: .release))
- ]
- )
- ]
- )
|