Enable strict concurrency.

This commit is contained in:
Brent Simmons 2024-04-16 21:48:17 -07:00
parent 550a847352
commit 2230013bf8
1 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,10 @@ let package = Package(
.target(
name: "Parser",
dependencies: ["ParserObjC"],
path: "Sources/Swift"),
path: "Sources/Swift",
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]),
.target(
name: "ParserObjC",
dependencies: [],