diff options
-rw-r--r-- | iGopherBrowser.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 30 | ||||
-rw-r--r-- | iGopherBrowser/ContentView.swift | 2 | ||||
-rw-r--r-- | iGopherBrowser/FileView.swift | 2 | ||||
-rw-r--r-- | iGopherBrowser/Helpers.swift | 2 |
4 files changed, 23 insertions, 13 deletions
diff --git a/iGopherBrowser.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/iGopherBrowser.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index a52fef6..92cb36a 100644 --- a/iGopherBrowser.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/iGopherBrowser.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,4 +1,5 @@ { + "originHash" : "56c8501113dc3988ff26a73d0f37f6285ebe551a14563d31aca1e5b96fb22408", "pins" : [ { "identity" : "swift-atomics", @@ -14,8 +15,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-collections.git", "state" : { - "revision" : "a902f1823a7ff3c9ab2fba0f992396b948eda307", - "version" : "1.0.5" + "revision" : "3d2dc41a01f9e49d84f0a3925fb858bed64f702d", + "version" : "1.1.2" } }, { @@ -24,7 +25,7 @@ "location" : "https://github.com/navanchauhan/swift-gopher", "state" : { "branch" : "master", - "revision" : "9fc992d316ffb2773df1a1fd352602cedadce2be" + "revision" : "bdecfea74933ecbe28af0ae77b8a5bc87e3fc445" } }, { @@ -32,8 +33,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-nio", "state" : { - "revision" : "702cd7c56d5d44eeba73fdf83918339b26dc855c", - "version" : "2.62.0" + "revision" : "e4abde8be0e49dc7d66e6eed651254accdcd9533", + "version" : "2.69.0" } }, { @@ -41,8 +42,17 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-nio-transport-services.git", "state" : { - "revision" : "ebf8b9c365a6ce043bf6e6326a04b15589bd285e", - "version" : "1.20.0" + "revision" : "38ac8221dd20674682148d6451367f89c2652980", + "version" : "1.21.0" + } + }, + { + "identity" : "swift-system", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-system.git", + "state" : { + "revision" : "d2ba781702a1d8285419c15ee62fd734a9437ff5", + "version" : "1.3.2" } }, { @@ -50,10 +60,10 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/TelemetryDeck/SwiftClient", "state" : { - "revision" : "98500be378267abaa072ed08c2caf7da6493489e", - "version" : "1.5.0" + "revision" : "d20ccc4b8266cf739eede58cdfc7e9c6ffb41cda", + "version" : "1.5.1" } } ], - "version" : 2 + "version" : 3 } diff --git a/iGopherBrowser/ContentView.swift b/iGopherBrowser/ContentView.swift index 5de5d8c..06ad2a6 100644 --- a/iGopherBrowser/ContentView.swift +++ b/iGopherBrowser/ContentView.swift @@ -7,7 +7,7 @@ import GopherHelpers import SwiftUI -import swiftGopherClient +import SwiftGopherClient struct GopherNode: Identifiable, Equatable { static func == (lhs: GopherNode, rhs: GopherNode) -> Bool { diff --git a/iGopherBrowser/FileView.swift b/iGopherBrowser/FileView.swift index 05583de..ed5ef68 100644 --- a/iGopherBrowser/FileView.swift +++ b/iGopherBrowser/FileView.swift @@ -9,7 +9,7 @@ import GopherHelpers import QuickLook import SwiftUI import TelemetryClient -import swiftGopherClient +import SwiftGopherClient func determineFileType(data: Data) -> String? { let signatures: [Data: String] = [ diff --git a/iGopherBrowser/Helpers.swift b/iGopherBrowser/Helpers.swift index 0235e2e..decc97e 100644 --- a/iGopherBrowser/Helpers.swift +++ b/iGopherBrowser/Helpers.swift @@ -6,7 +6,7 @@ // import Foundation -import swiftGopherClient +import SwiftGopherClient public func getHostAndPort( from urlString: String, defaultPort: Int = 70, defaultHost: String = "gopher.navan.dev" |