From a83e096f55244203a983184b3d796f2d97379466 Mon Sep 17 00:00:00 2001 From: Felix Herrmann Date: Sat, 7 Sep 2024 21:23:09 +0200 Subject: [PATCH] Conform PackageProvider to Sendable --- Sources/SwiftPackageList/PackageProvider.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SwiftPackageList/PackageProvider.swift b/Sources/SwiftPackageList/PackageProvider.swift index 5f66815..1fcfc3b 100644 --- a/Sources/SwiftPackageList/PackageProvider.swift +++ b/Sources/SwiftPackageList/PackageProvider.swift @@ -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.