Gravatar-SDK-iOS icon indicating copy to clipboard operation
Gravatar-SDK-iOS copied to clipboard

Improve swift concurrency throughout the SDK

Open etoledom opened this issue 3 months ago • 1 comments

We can use -strict-concurrency=complete flag to check the overall implementation:

.target(
    name: "Gravatar",
    swiftSettings: [
        .unsafeFlags(["-strict-concurrency=complete"])
    ]
),

or also

.target(
    name: "Gravatar",
    swiftSettings: [
        .enableUpcomingFeature("StrictConcurrency")
    ]
),

etoledom avatar Mar 22 '24 12:03 etoledom