Skip to content

Commit ed05cd3

Browse files
authored
Merge pull request #27 from sideeffect-io/fix/unsage-flags
project: remove unsafe flags
2 parents e7e74cf + 8bd9b2c commit ed05cd3

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Package.swift

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@ let package = Package(
2121
.target(
2222
name: "AsyncExtensions",
2323
dependencies: [.product(name: "Collections", package: "swift-collections")],
24-
path: "Sources",
25-
swiftSettings: [
26-
.unsafeFlags([
27-
"-Xfrontend", "-warn-concurrency",
28-
"-Xfrontend", "-enable-actor-data-race-checks",
29-
])
30-
]
24+
path: "Sources"
25+
// ,
26+
// swiftSettings: [
27+
// .unsafeFlags([
28+
// "-Xfrontend", "-warn-concurrency",
29+
// "-Xfrontend", "-enable-actor-data-race-checks",
30+
// ])
31+
// ]
3132
),
3233
.testTarget(
3334
name: "AsyncExtensionsTests",

0 commit comments

Comments
 (0)