Skip to content

Commit

Permalink
Merge pull request #121 from FelixHerrmann/feature/sendable-conformances
Browse files Browse the repository at this point in the history
[Feature] Sendable Conformances
  • Loading branch information
FelixHerrmann authored Sep 7, 2024
2 parents a67479f + a83e096 commit 2abe214
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/SwiftPackageList/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Foundation

/// A package object in the package-list file.
public struct Package: Hashable, Codable {
public struct Package: Sendable, Hashable, Codable {

/// The package identity based on it's source location.
public let identity: String
Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftPackageList/PackageProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

/// A type that provides ``Package``s from some arbitrary source.
public protocol PackageProvider {
public protocol PackageProvider: Sendable {

/// Provides the array of packages.
/// - Returns: An array of ``Package`` objects.
Expand Down

0 comments on commit 2abe214

Please sign in to comment.