We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfd0a26 commit ec537f7Copy full SHA for ec537f7
[email protected]
@@ -0,0 +1,26 @@
1
+// swift-tools-version:5.10
2
+
3
+import PackageDescription
4
5
+let swiftSettings: [SwiftSetting] = [.enableExperimentalFeature("StrictConcurrency=complete")]
6
7
+let package = Package(
8
+ name: "swift-aws-lambda-events",
9
+ platforms: [.macOS(.v14)],
10
+ products: [
11
+ .library(name: "AWSLambdaEvents", targets: ["AWSLambdaEvents"])
12
+ ],
13
+ dependencies: [
14
+ .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
15
+ .package(url: "https://github.com/apple/swift-http-types.git", from: "1.0.0"),
16
17
+ targets: [
18
+ .target(
19
+ name: "AWSLambdaEvents",
20
21
+ .product(name: "HTTPTypes", package: "swift-http-types")
22
23
+ swiftSettings: swiftSettings
24
+ )
25
+ ]
26
+)
0 commit comments