File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change 22
33import PackageDescription
44
5+ let swiftSettings : [ SwiftSetting ] = [ . enableExperimentalFeature( " StrictConcurrency=complete " ) ]
6+
57let package = Package (
68 name: " swift-aws-lambda-events " ,
79 products: [
@@ -12,11 +14,19 @@ let package = Package(
1214 . package ( url: " https://github.com/apple/swift-http-types.git " , from: " 1.0.0 " ) ,
1315 ] ,
1416 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+ ) ,
2131 ]
2232)
You can’t perform that action at this time.
0 commit comments