From bd4a7807e20944ee063b6acb042cb66d0f6bf16d Mon Sep 17 00:00:00 2001 From: zunda <47569369+zunda-pixel@users.noreply.github.com> Date: Sun, 15 Sep 2024 14:21:27 +0900 Subject: [PATCH] add Sendable --- Sources/CBOR.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/CBOR.swift b/Sources/CBOR.swift index 7d7691b..92c0bd1 100644 --- a/Sources/CBOR.swift +++ b/Sources/CBOR.swift @@ -132,7 +132,7 @@ public indirect enum CBOR : Equatable, Hashable, } } - public struct Tag: RawRepresentable, Hashable { + public struct Tag: RawRepresentable, Hashable, Sendable { public let rawValue: UInt64 public init(rawValue: UInt64) {