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
12
12
import Dispatch
13
13
14
14
/// 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 " )
15
17
public protocol Archiver {
16
18
17
19
/// A set of extensions the current archiver supports.
@@ -31,6 +33,8 @@ public protocol Archiver {
31
33
}
32
34
33
35
/// 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 " )
34
38
public struct ZipArchiver : Archiver {
35
39
public var supportedExtensions : Set < String > { [ " zip " ] }
36
40
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ import TSCBasic
13
13
import TSCUtility
14
14
import TSCTestSupport
15
15
16
+ // FIXME: deprecate 2/2022, remove once clients transitioned
17
+ @available ( * , deprecated, message: " moved to SwiftPM " )
16
18
class ArchiverTests : XCTestCase {
17
19
// MARK: - ZipArchiver Tests
18
20
You can’t perform that action at this time.
0 commit comments