File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ import TSCBasic
1212import Dispatch
1313
1414/// The `Archiver` protocol abstracts away the different operations surrounding archives.
15+ // FIXME: deprecate 2/2022, remove once clients transitioned
16+ @available ( * , deprecated, message: " moved to SwiftPM " )
1517public protocol Archiver {
1618
1719 /// A set of extensions the current archiver supports.
@@ -31,6 +33,8 @@ public protocol Archiver {
3133}
3234
3335/// An `Archiver` that handles ZIP archives using the command-line `zip` and `unzip` tools.
36+ // FIXME: deprecate 2/2022, remove once clients transitioned
37+ @available ( * , deprecated, message: " moved to SwiftPM " )
3438public struct ZipArchiver : Archiver {
3539 public var supportedExtensions : Set < String > { [ " zip " ] }
3640
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ import TSCBasic
1313import TSCUtility
1414import TSCTestSupport
1515
16+ // FIXME: deprecate 2/2022, remove once clients transitioned
17+ @available ( * , deprecated, message: " moved to SwiftPM " )
1618class ArchiverTests : XCTestCase {
1719 // MARK: - ZipArchiver Tests
1820
You can’t perform that action at this time.
0 commit comments