Skip to content

Commit

Permalink
Update Sendable
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer committed Apr 3, 2024
1 parent a946314 commit 30db50c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,19 @@ let package = Package(
name: "SpeziLicense",
dependencies: [
.product(name: "SwiftPackageList", package: "swift-package-list")
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
.testTarget(
name: "SpeziLicenseTests",
dependencies: [
.target(name: "SpeziLicense"),
.product(name: "Spezi", package: "Spezi")
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
)
]
Expand Down
2 changes: 1 addition & 1 deletion Sources/SpeziLicense/License.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation


/// License struct to be passed to `ContributionsList`
public struct License {
public struct License: Sendable {
/// The full name of the License
public let name: String
/// The standardized SPDX-License-Identifier
Expand Down

0 comments on commit 30db50c

Please sign in to comment.