feat: 简化登录模型,移除 nickname/avatar/expiresAt

这个提交包含在:
XuqmGroup 2026-05-01 22:40:57 +08:00
父节点 e7067d03cb
当前提交 3af573ca4c
共有 2298 个文件被更改,包括 5695 次插入48 次删除

1
.gitignore vendored
查看文件

@ -9,3 +9,4 @@ build/
.idea/ .idea/
*.log *.log
/.build/ /.build/
/XuqmDemo/.build/

查看文件

@ -8,10 +8,8 @@ public final class XuqmSDK: NSObject {
private(set) var tokenStore: TokenStore? private(set) var tokenStore: TokenStore?
public private(set) var currentUserId: String? public private(set) var currentUserId: String?
public var onUserSigExpired: (() -> Void)?
private var userSig: String? private var userSig: String?
private var userSigTimer: Timer?
private var cachedDeviceToken: String? private var cachedDeviceToken: String?
private override init() { private override init() {
@ -34,7 +32,6 @@ public final class XuqmSDK: NSObject {
public func login(userId: String, userSig: String) async { public func login(userId: String, userSig: String) async {
self.currentUserId = userId self.currentUserId = userId
self.userSig = userSig self.userSig = userSig
startUserSigExpirationTimer(userSig: userSig)
do { do {
try await ImSDK.shared.loginWithUserSig(userId, userSig) try await ImSDK.shared.loginWithUserSig(userId, userSig)
@ -52,9 +49,6 @@ public final class XuqmSDK: NSObject {
} }
public func logout() async { public func logout() async {
userSigTimer?.invalidate()
userSigTimer = nil
ImSDK.shared.disconnect() ImSDK.shared.disconnect()
if let userId = currentUserId { if let userId = currentUserId {
@ -81,42 +75,4 @@ public final class XuqmSDK: NSObject {
} }
} }
private func startUserSigExpirationTimer(userSig: String) {
userSigTimer?.invalidate()
guard let expDate = extractExpirationDate(from: userSig) else { return }
let interval = expDate.timeIntervalSinceNow - 300 // 5 minutes before expiry
guard interval > 0 else {
onUserSigExpired?()
return
}
userSigTimer = Timer.scheduledTimer(
timeInterval: interval,
target: self,
selector: #selector(userSigDidExpire),
userInfo: nil,
repeats: false
)
}
@objc private func userSigDidExpire() {
onUserSigExpired?()
}
private func extractExpirationDate(from userSig: String) -> Date? {
let parts = userSig.split(separator: ".")
guard parts.count >= 2 else { return nil }
var base64 = String(parts[1])
.replacingOccurrences(of: "-", with: "+")
.replacingOccurrences(of: "_", with: "/")
let padding = 4 - base64.count % 4
if padding != 4 {
base64 += String(repeating: "=", count: padding)
}
guard let data = Data(base64Encoded: base64),
let json = try? JSONSerialization.jsonObject(with: data) as? [String: Any],
let exp = json["exp"] as? TimeInterval else {
return nil
}
return Date(timeIntervalSince1970: exp)
}
} }

查看文件

@ -36,15 +36,13 @@ public final class ImSDK {
client?.connect() client?.connect()
} }
public func login(userId: String, nickname: String? = nil, avatar: String? = nil) async throws { public func login(userId: String) async throws {
let config = XuqmSDK.shared.requireConfig() let config = XuqmSDK.shared.requireConfig()
var items = [ let items = [
URLQueryItem(name: "appId", value: config.appId), URLQueryItem(name: "appId", value: config.appId),
URLQueryItem(name: "userId", value: userId), URLQueryItem(name: "userId", value: userId),
] ]
if let nickname { items.append(URLQueryItem(name: "nickname", value: nickname)) }
if let avatar { items.append(URLQueryItem(name: "avatar", value: avatar)) }
let res: ImLoginResponse = try await ApiClient.shared.request( let res: ImLoginResponse = try await ApiClient.shared.request(
path: "/api/im/auth/login", path: "/api/im/auth/login",

1
XuqmDemo/.build/.lock 普通文件
查看文件

@ -0,0 +1 @@
34606

查看文件

@ -0,0 +1,112 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724094000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Accessibility.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 141440
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772000898000000000
path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22985
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,216 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724274000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/AppKit.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 557884
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772000898000000000
path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22985
sdk_relative: true
- mtime: 1772512825000000000
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
size: 1662
sdk_relative: true
- mtime: 1773612959000000000
path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes'
size: 2012
sdk_relative: true
- mtime: 1771723124000000000
path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes'
size: 7789
sdk_relative: true
- mtime: 1772154033000000000
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
size: 104337
sdk_relative: true
- mtime: 1773298300000000000
path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes'
size: 37585
sdk_relative: true
- mtime: 1772169256000000000
path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes'
size: 7569
sdk_relative: true
- mtime: 1773613674000000000
path: 'System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes'
size: 384123
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
- mtime: 1772512914000000000
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5519
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/os.apinotes'
size: 1658
sdk_relative: true
- mtime: 1771941301000000000
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 109267
sdk_relative: true
- mtime: 1771942498000000000
path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 43046
sdk_relative: true
- mtime: 1772173643000000000
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 39535
sdk_relative: true
- mtime: 1771943514000000000
path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 31716
sdk_relative: true
- mtime: 1771944203000000000
path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2077
sdk_relative: true
- mtime: 1771944739000000000
path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 24238
sdk_relative: true
- mtime: 1771944245000000000
path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 777
sdk_relative: true
- mtime: 1771945025000000000
path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22114
sdk_relative: true
- mtime: 1771942500000000000
path: 'System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 7621
sdk_relative: true
- mtime: 1771943050000000000
path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 12611
sdk_relative: true
- mtime: 1771942500000000000
path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1336
sdk_relative: true
- mtime: 1771941065000000000
path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 229542
sdk_relative: true
- mtime: 1771941345000000000
path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 222898
sdk_relative: true
- mtime: 1772086860000000000
path: 'System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1120533
sdk_relative: true
- mtime: 1773613819000000000
path: 'System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 116025
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,48 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723941000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Combine.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 491404
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,116 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724009000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreData.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 116520
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771723124000000000
path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes'
size: 7789
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/os.apinotes'
size: 1658
sdk_relative: true
- mtime: 1771941301000000000
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 109267
sdk_relative: true
- mtime: 1771942498000000000
path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 43046
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,68 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723957000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 179152
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,108 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724016000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 323460
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,148 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724133000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreImage.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 21768
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1772512825000000000
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
size: 1662
sdk_relative: true
- mtime: 1773612959000000000
path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes'
size: 2012
sdk_relative: true
- mtime: 1772154033000000000
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
size: 104337
sdk_relative: true
- mtime: 1773298300000000000
path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes'
size: 37585
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772173643000000000
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 39535
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
- mtime: 1772512914000000000
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5519
sdk_relative: true
- mtime: 1771943514000000000
path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 31716
sdk_relative: true
- mtime: 1771944245000000000
path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 777
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,124 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724086000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreText.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 43440
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1772512825000000000
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
size: 1662
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
- mtime: 1772512914000000000
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5519
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,120 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724040000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 80292
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/os.apinotes'
size: 1658
sdk_relative: true
- mtime: 1771941301000000000
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 109267
sdk_relative: true
- mtime: 1771945025000000000
path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22114
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,140 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724122000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/CoreVideo.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 173320
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772512825000000000
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
size: 1662
sdk_relative: true
- mtime: 1773612959000000000
path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes'
size: 2012
sdk_relative: true
- mtime: 1772154033000000000
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
size: 104337
sdk_relative: true
- mtime: 1772173643000000000
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 39535
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
- mtime: 1772512914000000000
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5519
sdk_relative: true
- mtime: 1771943514000000000
path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 31716
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,36 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723927000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 77500
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,104 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724041000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DataDetection.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 51360
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1771942500000000000
path: 'System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 7621
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,120 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724088000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 46236
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/os.apinotes'
size: 1658
sdk_relative: true
- mtime: 1771941301000000000
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 109267
sdk_relative: true
- mtime: 1771943050000000000
path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 12611
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,64 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723951000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 210892
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,100 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723991000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 3785852
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,72 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723962000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 30128
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,108 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724017000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Metal.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 185460
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1772154033000000000
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
size: 104337
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772173643000000000
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 39535
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,112 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724007000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/OSLog.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 47388
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/os.apinotes'
size: 1658
sdk_relative: true
- mtime: 1771941301000000000
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 109267
sdk_relative: true
- mtime: 1771942500000000000
path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1336
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,52 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723932000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 50828
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,44 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723933000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Observation.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 30868
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,148 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724131000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/QuartzCore.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 29848
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1772154033000000000
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
size: 104337
sdk_relative: true
- mtime: 1772512825000000000
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
size: 1662
sdk_relative: true
- mtime: 1773612959000000000
path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes'
size: 2012
sdk_relative: true
- mtime: 1772169256000000000
path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes'
size: 7569
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772173643000000000
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 39535
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
- mtime: 1772512914000000000
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5519
sdk_relative: true
- mtime: 1771943514000000000
path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 31716
sdk_relative: true
- mtime: 1771944203000000000
path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2077
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,52 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723978000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Spatial.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 1306204
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941065000000000
path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 229542
sdk_relative: true
- mtime: 1771941345000000000
path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 222898
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,12 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723912000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Swift.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 15012496
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,16 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723916000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 18520
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1771993742000000000
path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1412
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,220 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724438000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUI.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 4050020
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771723124000000000
path: 'System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes'
size: 7789
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/os.apinotes'
size: 1658
sdk_relative: true
- mtime: 1771941301000000000
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 109267
sdk_relative: true
- mtime: 1771942498000000000
path: 'System/Library/Frameworks/CoreData.framework/Modules/CoreData.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 43046
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
- mtime: 1771945025000000000
path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22114
sdk_relative: true
- mtime: 1771943050000000000
path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 12611
sdk_relative: true
- mtime: 1771942500000000000
path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1336
sdk_relative: true
- mtime: 1771941065000000000
path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 229542
sdk_relative: true
- mtime: 1771941345000000000
path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 222898
sdk_relative: true
- mtime: 1772512825000000000
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
size: 1662
sdk_relative: true
- mtime: 1773612959000000000
path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes'
size: 2012
sdk_relative: true
- mtime: 1772154033000000000
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
size: 104337
sdk_relative: true
- mtime: 1773298300000000000
path: 'System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes'
size: 37585
sdk_relative: true
- mtime: 1772169256000000000
path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes'
size: 7569
sdk_relative: true
- mtime: 1773613674000000000
path: 'System/Library/Frameworks/AppKit.framework/Headers/AppKit.apinotes'
size: 384123
sdk_relative: true
- mtime: 1772000898000000000
path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22985
sdk_relative: true
- mtime: 1772512914000000000
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5519
sdk_relative: true
- mtime: 1772173643000000000
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 39535
sdk_relative: true
- mtime: 1771943514000000000
path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 31716
sdk_relative: true
- mtime: 1771944203000000000
path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2077
sdk_relative: true
- mtime: 1771944739000000000
path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 24238
sdk_relative: true
- mtime: 1771944245000000000
path: 'usr/lib/swift/CoreImage.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 777
sdk_relative: true
- mtime: 1771942500000000000
path: 'System/Library/Frameworks/DataDetection.framework/Modules/DataDetection.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 7621
sdk_relative: true
- mtime: 1772086860000000000
path: 'System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1120533
sdk_relative: true
- mtime: 1773613819000000000
path: 'System/Library/Frameworks/AppKit.framework/Modules/AppKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 116025
sdk_relative: true
- mtime: 1772089429000000000
path: 'System/Library/Frameworks/SwiftUI.framework/Modules/SwiftUI.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1507050
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,188 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724238000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 4144008
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772773598000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes'
size: 53963
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772603088000000000
path: 'System/Library/Frameworks/CoreGraphics.framework/Modules/CoreGraphics.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 88276
sdk_relative: true
- mtime: 1772000898000000000
path: 'System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22985
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/os.apinotes'
size: 1658
sdk_relative: true
- mtime: 1771941301000000000
path: 'usr/lib/swift/os.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 109267
sdk_relative: true
- mtime: 1771945025000000000
path: 'System/Library/Frameworks/CoreTransferable.framework/Modules/CoreTransferable.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22114
sdk_relative: true
- mtime: 1771943050000000000
path: 'System/Library/Frameworks/DeveloperToolsSupport.framework/Modules/DeveloperToolsSupport.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 12611
sdk_relative: true
- mtime: 1771942500000000000
path: 'usr/lib/swift/OSLog.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1336
sdk_relative: true
- mtime: 1771941065000000000
path: 'usr/lib/swift/simd.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 229542
sdk_relative: true
- mtime: 1771941345000000000
path: 'usr/lib/swift/Spatial.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 222898
sdk_relative: true
- mtime: 1772512825000000000
path: 'System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes'
size: 1662
sdk_relative: true
- mtime: 1772154033000000000
path: 'System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes'
size: 104337
sdk_relative: true
- mtime: 1773612959000000000
path: 'System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes'
size: 2012
sdk_relative: true
- mtime: 1772169256000000000
path: 'System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes'
size: 7569
sdk_relative: true
- mtime: 1772173643000000000
path: 'usr/lib/swift/Metal.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 39535
sdk_relative: true
- mtime: 1772512914000000000
path: 'System/Library/Frameworks/CoreText.framework/Modules/CoreText.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5519
sdk_relative: true
- mtime: 1771943514000000000
path: 'System/Library/Frameworks/CoreVideo.framework/Modules/CoreVideo.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 31716
sdk_relative: true
- mtime: 1771944203000000000
path: 'usr/lib/swift/QuartzCore.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2077
sdk_relative: true
- mtime: 1771944739000000000
path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 24238
sdk_relative: true
- mtime: 1772086860000000000
path: 'System/Library/Frameworks/SwiftUICore.framework/Modules/SwiftUICore.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1120533
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,104 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724011000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/Symbols.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 73092
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1771944739000000000
path: 'System/Library/Frameworks/Symbols.framework/Modules/Symbols.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 24238
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,48 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723941000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/System.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 401652
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,108 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775724006000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 74172
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941434000000000
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22492
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1772776850000000000
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
size: 162
sdk_relative: true
- mtime: 1772253432000000000
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
size: 81098
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
- mtime: 1771941652000000000
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 3688
sdk_relative: true
- mtime: 1771995906000000000
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 5151
sdk_relative: true
- mtime: 1771941054000000000
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 95429
sdk_relative: true
- mtime: 1772253192000000000
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1155103
sdk_relative: true
- mtime: 1772602894000000000
path: 'System/Library/Frameworks/UniformTypeIdentifiers.framework/Headers/UniformTypeIdentifiers.apinotes'
size: 1666
sdk_relative: true
- mtime: 1772602141000000000
path: 'usr/lib/swift/UniformTypeIdentifiers.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 20653
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,72 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723956000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/XPC.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 117708
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775407000000000
path: 'usr/include/_DarwinFoundation2.apinotes'
size: 1145
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
- mtime: 1772775454000000000
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2676
sdk_relative: true
- mtime: 1772775458000000000
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 1572
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
- mtime: 1772775468000000000
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 19538
sdk_relative: true
- mtime: 1771712388000000000
path: 'usr/include/ObjectiveC.apinotes'
size: 11147
sdk_relative: true
- mtime: 1771712453000000000
path: 'usr/include/Dispatch.apinotes'
size: 19
sdk_relative: true
- mtime: 1772774440000000000
path: 'usr/include/XPC.apinotes'
size: 123
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
- mtime: 1771996850000000000
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 22988
sdk_relative: true
- mtime: 1771941059000000000
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 167871
sdk_relative: true
- mtime: 1771941037000000000
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 6634
sdk_relative: true
- mtime: 1772016308000000000
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 57504
sdk_relative: true
- mtime: 1771941462000000000
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 45108
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,16 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723916000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 23712
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1771993793000000000
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 4364
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,16 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723928000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 748688
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1771993759000000000
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 280496
sdk_relative: true
version: 1
...

查看文件

@ -0,0 +1,16 @@
---
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule'
dependencies:
- mtime: 1775723921000000000
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.4/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule'
size: 92184
- mtime: 1771993359000000000
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 2193648
sdk_relative: true
- mtime: 1772775450000000000
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
size: 18804
sdk_relative: true
version: 1
...

某些文件未显示,因为此 diff 中更改的文件太多 显示更多