diff --git a/Package.resolved b/Package.resolved index a637026d..a68c3c23 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "e8afea31d6f98c7cb4947db31994459153154eb95df6065b3f29a875b6bc9cba", + "originHash" : "461668ea15b2d23804514bc54f6825fc8833ec0ed643d855bb9a4583d5da508f", "pins" : [ { "identity" : "aexml", @@ -33,8 +33,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/tuist/FileSystem.git", "state" : { - "revision" : "0cb0534744f19f6522e4288d170b572a35632439", - "version" : "0.13.13" + "revision" : "9b721b9ce9066476bd02770bd3bb448f85a1ea79", + "version" : "0.13.28" } }, { @@ -141,8 +141,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-nio", "state" : { - "revision" : "4e8f4b1c9adaa59315c523540c1ff2b38adc20a9", - "version" : "2.87.0" + "revision" : "56724a2b6d8e2aed1b2c5f23865b9ea5c43f9977", + "version" : "2.89.0" } }, { diff --git a/Sources/XcodeGraph/Graph/GraphDependency.swift b/Sources/XcodeGraph/Graph/GraphDependency.swift index 35c514d9..40f35481 100644 --- a/Sources/XcodeGraph/Graph/GraphDependency.swift +++ b/Sources/XcodeGraph/Graph/GraphDependency.swift @@ -3,14 +3,14 @@ import Path public enum GraphDependency: Hashable, CustomStringConvertible, Comparable, Codable, Sendable { public struct XCFramework: Hashable, CustomStringConvertible, Comparable, Codable, Sendable { - public let path: AbsolutePath - public let infoPlist: XCFrameworkInfoPlist - public let linking: BinaryLinking - public let mergeable: Bool - public let status: LinkingStatus - public let swiftModules: [AbsolutePath] - public let moduleMaps: [AbsolutePath] - public let expectedSignature: String? + public var path: AbsolutePath + public var infoPlist: XCFrameworkInfoPlist + public var linking: BinaryLinking + public var mergeable: Bool + public var status: LinkingStatus + public var swiftModules: [AbsolutePath] + public var moduleMaps: [AbsolutePath] + public var expectedSignature: String? public init( path: AbsolutePath, @@ -18,7 +18,6 @@ public enum GraphDependency: Hashable, CustomStringConvertible, Comparable, Coda linking: BinaryLinking, mergeable: Bool, status: LinkingStatus, - macroPath _: AbsolutePath?, swiftModules: [AbsolutePath], moduleMaps: [AbsolutePath], expectedSignature: String? = nil @@ -327,7 +326,6 @@ public enum GraphDependency: Hashable, CustomStringConvertible, Comparable, Coda linking: BinaryLinking = .dynamic, mergeable: Bool = false, status: LinkingStatus = .required, - macroPath: AbsolutePath? = nil, swiftModules: [AbsolutePath] = [], moduleMaps: [AbsolutePath] = [] ) -> GraphDependency { @@ -338,7 +336,6 @@ public enum GraphDependency: Hashable, CustomStringConvertible, Comparable, Coda linking: linking, mergeable: mergeable, status: status, - macroPath: macroPath, swiftModules: swiftModules, moduleMaps: moduleMaps ) diff --git a/Sources/XcodeGraphMapper/Mappers/Targets/TargetDependency+GraphMapping.swift b/Sources/XcodeGraphMapper/Mappers/Targets/TargetDependency+GraphMapping.swift index adede7ef..a85e3ae6 100644 --- a/Sources/XcodeGraphMapper/Mappers/Targets/TargetDependency+GraphMapping.swift +++ b/Sources/XcodeGraphMapper/Mappers/Targets/TargetDependency+GraphMapping.swift @@ -64,7 +64,6 @@ extension TargetDependency { linking: metadata.linking, mergeable: metadata.mergeable, status: status, - macroPath: metadata.macroPath, swiftModules: metadata.swiftModules, moduleMaps: metadata.moduleMaps, expectedSignature: metadata.expectedSignature?.signatureString()