diff --git a/Package.resolved b/Package.resolved index 250c4d8..526b9e7 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "5490c1d99605cbdd23872f8f8ff1166cebcd2ffb5cd9b89b6cefa870286e522e", + "originHash" : "4d1818384bf1e5e6200d78f16d960f120ec649e30c0b39c2fe9ea67b629df81b", "pins" : [ { "identity" : "async-http-client", @@ -15,8 +15,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/containerization.git", "state" : { - "revision" : "420b915d8b4b0bc5d7edc638b985ee8fd32a3fbe", - "version" : "0.29.0" + "revision" : "56916452e9fb09ed8ff94b80d8a95dd1a8ca66ac", + "version" : "0.30.1" } }, { @@ -141,8 +141,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-log.git", "state" : { - "revision" : "8c0f217f01000dd30f60d6e536569ad4e74291f9", - "version" : "1.11.0" + "revision" : "5073617dac96330a486245e4c0179cb0a6fd2256", + "version" : "1.12.0" } }, { @@ -168,8 +168,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-nio-http2.git", "state" : { - "revision" : "6d8d596f0a9bfebb925733003731fe2d749b7e02", - "version" : "1.42.0" + "revision" : "81cc18264f92cd307ff98430f89372711d4f6fe9", + "version" : "1.43.0" } }, { diff --git a/Package.swift b/Package.swift index dbac17d..4d85835 100644 --- a/Package.swift +++ b/Package.swift @@ -25,12 +25,12 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/apple/containerization.git", from: "0.29.0"), - .package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.3.0"), - .package(url: "https://github.com/apple/swift-crypto.git", from: "3.0.0"), - .package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"), - .package(url: "https://github.com/apple/swift-nio.git", from: "2.70.0"), - .package(url: "https://github.com/swift-server/async-http-client.git", from: "1.23.0"), + .package(url: "https://github.com/apple/containerization.git", from: "0.30.0"), + .package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.7.0"), + .package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "5.0.0"), + .package(url: "https://github.com/apple/swift-log.git", from: "1.12.0"), + .package(url: "https://github.com/apple/swift-nio.git", from: "2.97.0"), + .package(url: "https://github.com/swift-server/async-http-client.git", from: "1.33.1"), ], targets: [ .target( diff --git a/Sources/AgentIsolationAppleContainerRuntime/AppleContainerRuntime.swift b/Sources/AgentIsolationAppleContainerRuntime/AppleContainerRuntime.swift index 8965f45..fc3e394 100644 --- a/Sources/AgentIsolationAppleContainerRuntime/AppleContainerRuntime.swift +++ b/Sources/AgentIsolationAppleContainerRuntime/AppleContainerRuntime.swift @@ -40,9 +40,9 @@ let store = try ImageStore(path: imageStoreRoot) self.imageStore = store - let network: ContainerManager.Network? + let network: Network? if #available(macOS 26.0, *) { - network = try ContainerManager.VmnetNetwork() + network = try VmnetNetwork() } else { network = nil }