File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 11// swift-tools-version:5.9
22// The swift-tools-version declares the minimum version of Swift required to build this package.
33import PackageDescription
4- let checksum = " dba8765e8b651801c1fedbfcd125e3e80f8ac3dc05bac2814dde84841c668a2f "
5- let version = " 25.07.01 "
4+ let checksum = " 30b2549d0277f54f134328b47947991d1d27a543ab2d66e2b07d1781c88a41e0 "
5+ let version = " 25.07.02 "
66let url = " https://github.com/element-hq/matrix-rust-components-swift/releases/download/ \( version) /MatrixSDKFFI.xcframework.zip "
77let package = Package (
88 name: " MatrixRustSDK " ,
Original file line number Diff line number Diff line change @@ -30535,6 +30535,10 @@ public enum TraceLogPacks {
3053530535 * Enables all the logs relevant to the timeline.
3053630536 */
3053730537 case timeline
30538+ /**
30539+ * Enables all the logs relevant to the notification client.
30540+ */
30541+ case notificationClient
3053830542}
3053930543
3054030544
@@ -30551,6 +30555,8 @@ public struct FfiConverterTypeTraceLogPacks: FfiConverterRustBuffer {
3055130555
3055230556 case 3: return .timeline
3055330557
30558+ case 4: return .notificationClient
30559+
3055430560 default: throw UniffiInternalError.unexpectedEnumCase
3055530561 }
3055630562 }
@@ -30570,6 +30576,10 @@ public struct FfiConverterTypeTraceLogPacks: FfiConverterRustBuffer {
3057030576 case .timeline:
3057130577 writeInt(&buf, Int32(3))
3057230578
30579+
30580+ case .notificationClient:
30581+ writeInt(&buf, Int32(4))
30582+
3057330583 }
3057430584 }
3057530585}
You can’t perform that action at this time.
0 commit comments