Skip to content

Commit ec537f7

Browse files
committed
bump version to 5.10
1 parent dfd0a26 commit ec537f7

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

[email protected]

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
dependencies: [
21+
.product(name: "HTTPTypes", package: "swift-http-types")
22+
],
23+
swiftSettings: swiftSettings
24+
)
25+
]
26+
)

0 commit comments

Comments
 (0)