File tree 1 file changed +16
-6
lines changed
1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import PackageDescription
4
4
5
+ let swiftSettings : [ SwiftSetting ] = [ . enableExperimentalFeature( " StrictConcurrency=complete " ) ]
6
+
5
7
let package = Package (
6
8
name: " swift-aws-lambda-events " ,
7
9
products: [
@@ -12,11 +14,19 @@ let package = Package(
12
14
. package ( url: " https://github.com/apple/swift-http-types.git " , from: " 1.0.0 " ) ,
13
15
] ,
14
16
targets: [
15
- . target( name: " AWSLambdaEvents " ,
16
- dependencies: [ . product( name: " HTTPTypes " , package : " swift-http-types " ) ] ,
17
- swiftSettings: [ . enableExperimentalFeature( " StrictConcurrency=complete " ) ] ) ,
18
- . testTarget( name: " AWSLambdaEventsTests " ,
19
- dependencies: [ " AWSLambdaEvents " ] ,
20
- swiftSettings: [ . enableExperimentalFeature( " StrictConcurrency=complete " ) ] ) ,
17
+ . target(
18
+ name: " AWSLambdaEvents " ,
19
+ dependencies: [
20
+ . product( name: " HTTPTypes " , package : " swift-http-types " ) ,
21
+ ] ,
22
+ swiftSettings: swiftSettings
23
+ ) ,
24
+ . testTarget(
25
+ name: " AWSLambdaEventsTests " ,
26
+ dependencies: [
27
+ " AWSLambdaEvents " ,
28
+ ] ,
29
+ swiftSettings: swiftSettings
30
+ ) ,
21
31
]
22
32
)
You can’t perform that action at this time.
0 commit comments