@@ -23,6 +23,8 @@ extension AuthorizationProviding {
2323 which is only available in macOS 10.13+, iOS 11+, etc at this time.
2424 */
2525/// Container of parsed netrc connection settings
26+ // FIXME: deprecate 2/2022, remove once clients transitioned
27+ @available ( * , deprecated, message: " moved to SwiftPM " )
2628@available ( macOS 10 . 13 , iOS 11 , tvOS 11 , watchOS 4 , * )
2729public struct Netrc {
2830 /// Representation of `machine` connection settings & `default` connection settings.
@@ -98,6 +100,8 @@ public struct Netrc {
98100@available ( macOS 10 . 13 , iOS 11 , tvOS 11 , watchOS 4 , * )
99101extension Netrc : AuthorizationProviding { }
100102
103+ // FIXME: deprecate 2/2022, remove once clients transitioned
104+ @available ( * , deprecated, message: " moved to SwiftPM " )
101105@available ( macOS 10 . 13 , iOS 11 , tvOS 11 , watchOS 4 , * )
102106public extension Netrc {
103107 enum Error : Swift . Error {
@@ -136,13 +140,17 @@ public extension Netrc {
136140 }
137141}
138142
143+ // FIXME: deprecate 2/2022, remove once clients transitioned
144+ @available ( * , deprecated, message: " moved to SwiftPM " )
139145@available ( macOS 10 . 13 , iOS 11 , tvOS 11 , watchOS 4 , * )
140146extension Netrc . Error : CustomNSError {
141147 public var errorUserInfo : [ String : Any ] {
142148 return [ NSLocalizedDescriptionKey: " \( self ) " ]
143149 }
144150}
145151
152+ // FIXME: deprecate 2/2022, remove once clients transitioned
153+ @available ( * , deprecated, message: " moved to SwiftPM " )
146154@available ( macOS 10 . 13 , iOS 11 , tvOS 11 , watchOS 4 , * )
147155fileprivate enum RegexUtil {
148156 @frozen fileprivate enum Token : String , CaseIterable {
0 commit comments