mirror of
https://github.com/swift-server/swift-aws-lambda-runtime.git
synced 2026-05-03 07:22:27 +00:00
8676c8933a
* apply swiftformat * update dep on Swift Docc to v1.3.0 * force usage of swift docc plugin 1.3.0
74 lines
3.3 KiB
Swift
74 lines
3.3 KiB
Swift
// swift-tools-version:5.7
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-aws-lambda-runtime",
|
|
platforms: [
|
|
.macOS(.v12),
|
|
.iOS(.v15),
|
|
.tvOS(.v15),
|
|
.watchOS(.v8),
|
|
],
|
|
products: [
|
|
// this library exports `AWSLambdaRuntimeCore` and adds Foundation convenience methods
|
|
.library(name: "AWSLambdaRuntime", targets: ["AWSLambdaRuntime"]),
|
|
// this has all the main functionality for lambda and it does not link Foundation
|
|
.library(name: "AWSLambdaRuntimeCore", targets: ["AWSLambdaRuntimeCore"]),
|
|
// plugin to package the lambda, creating an archive that can be uploaded to AWS
|
|
.plugin(name: "AWSLambdaPackager", targets: ["AWSLambdaPackager"]),
|
|
// for testing only
|
|
.library(name: "AWSLambdaTesting", targets: ["AWSLambdaTesting"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.43.1")),
|
|
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.4.2")),
|
|
.package(url: "https://github.com/swift-server/swift-backtrace.git", .upToNextMajor(from: "1.2.3")),
|
|
.package(url: "https://github.com/apple/swift-docc-plugin", exact: "1.3.0"),
|
|
],
|
|
targets: [
|
|
.target(name: "AWSLambdaRuntime", dependencies: [
|
|
.byName(name: "AWSLambdaRuntimeCore"),
|
|
.product(name: "NIOCore", package: "swift-nio"),
|
|
.product(name: "NIOFoundationCompat", package: "swift-nio"),
|
|
]),
|
|
.target(name: "AWSLambdaRuntimeCore", dependencies: [
|
|
.product(name: "Logging", package: "swift-log"),
|
|
.product(name: "Backtrace", package: "swift-backtrace"),
|
|
.product(name: "NIOHTTP1", package: "swift-nio"),
|
|
.product(name: "NIOCore", package: "swift-nio"),
|
|
.product(name: "NIOConcurrencyHelpers", package: "swift-nio"),
|
|
.product(name: "NIOPosix", package: "swift-nio"),
|
|
]),
|
|
.plugin(
|
|
name: "AWSLambdaPackager",
|
|
capability: .command(
|
|
intent: .custom(
|
|
verb: "archive",
|
|
description: "Archive the Lambda binary and prepare it for uploading to AWS. Requires docker on macOS or non Amazonlinux 2 distributions."
|
|
)
|
|
)
|
|
),
|
|
.testTarget(name: "AWSLambdaRuntimeCoreTests", dependencies: [
|
|
.byName(name: "AWSLambdaRuntimeCore"),
|
|
.product(name: "NIOTestUtils", package: "swift-nio"),
|
|
.product(name: "NIOFoundationCompat", package: "swift-nio"),
|
|
]),
|
|
.testTarget(name: "AWSLambdaRuntimeTests", dependencies: [
|
|
.byName(name: "AWSLambdaRuntimeCore"),
|
|
.byName(name: "AWSLambdaRuntime"),
|
|
]),
|
|
// testing helper
|
|
.target(name: "AWSLambdaTesting", dependencies: [
|
|
.byName(name: "AWSLambdaRuntime"),
|
|
.product(name: "NIO", package: "swift-nio"),
|
|
]),
|
|
.testTarget(name: "AWSLambdaTestingTests", dependencies: ["AWSLambdaTesting"]),
|
|
// for perf testing
|
|
.executableTarget(name: "MockServer", dependencies: [
|
|
.product(name: "NIOHTTP1", package: "swift-nio"),
|
|
.product(name: "NIO", package: "swift-nio"),
|
|
]),
|
|
]
|
|
)
|