mirror of
https://github.com/swift-server/swift-aws-lambda-events.git
synced 2026-05-03 07:42:27 +00:00
213b75d640
Use `swift-http-types` version 1.5.1 or more recent
26 lines
695 B
Swift
26 lines
695 B
Swift
// swift-tools-version:5.10
|
|
|
|
import PackageDescription
|
|
|
|
let swiftSettings: [SwiftSetting] = [.enableExperimentalFeature("StrictConcurrency=complete")]
|
|
|
|
let package = Package(
|
|
name: "swift-aws-lambda-events",
|
|
platforms: [.macOS(.v14)],
|
|
products: [
|
|
.library(name: "AWSLambdaEvents", targets: ["AWSLambdaEvents"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-http-types.git", from: "1.5.1")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AWSLambdaEvents",
|
|
dependencies: [
|
|
.product(name: "HTTPTypes", package: "swift-http-types")
|
|
],
|
|
swiftSettings: swiftSettings
|
|
)
|
|
]
|
|
)
|