Skip to content

Commit a7fac6f

Browse files
authored
Merge pull request #14 from Quick/enable_strict_concurrency_checking
Enable Strict Concurrency Checking
2 parents c54c57b + 630f7f7 commit a7fac6f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

[email protected]

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ let package = Package(
2323
dependencies: ["Nimble"],
2424
resources: [
2525
.copy("PrivacyInfo.xcprivacy")
26-
]
26+
],
27+
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]
2728
),
2829
.testTarget(
2930
name: "FakesTests",
30-
dependencies: ["Fakes", "Nimble"]
31+
dependencies: ["Fakes", "Nimble"],
32+
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]
3133
),
3234
]
3335
)

0 commit comments

Comments
 (0)