123456789101112131415161718192021222324252627282930313233 |
- // swift-tools-version:5.5
- // The swift-tools-version declares the minimum version of Swift required to build this package.
- import PackageDescription
- let package = Package(
- name: "server",
- platforms: [.macOS(.v10_15)],
- products: [
- .executable(name: "server", targets: ["server"])
- ],
- dependencies: [
- .package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "1.0.0"),
- .package(url: "https://github.com/hummingbird-project/hummingbird-mustache.git", from: "1.0.1"),
- .package(url: "https://github.com/vapor/postgres-nio.git", from: "1.8.0"),
- ],
- targets: [
- .executableTarget(name: "server",
- dependencies: [
- .product(name: "Hummingbird", package: "hummingbird"),
- .product(name: "HummingbirdFoundation", package: "hummingbird"),
- .product(name: "HummingbirdMustache", package: "hummingbird-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))
- ]
- ),
- ]
- )
|