We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3403c59 commit d106ab2Copy full SHA for d106ab2
Examples/HelloJSON/Package.swift
@@ -1,4 +1,4 @@
1
-// swift-tools-version:6.0
+// swift-tools-version:6.1
2
3
import PackageDescription
4
@@ -13,7 +13,13 @@ let package = Package(
13
],
14
dependencies: [
15
// during CI, the dependency on local version of swift-aws-lambda-runtime is added dynamically below
16
- .package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", branch: "main")
+ .package(
17
+ url: "https://github.com/swift-server/swift-aws-lambda-runtime.git",
18
+ branch: "ff-package-traits",
19
+ traits: [
20
+ .trait(name: "FoundationJSONSupport"),
21
+ ]
22
+ )
23
24
targets: [
25
.executableTarget(
0 commit comments