diff --git a/Sources/Version+Codable.swift b/Sources/Version+Codable.swift index 66a1258..e706187 100644 --- a/Sources/Version+Codable.swift +++ b/Sources/Version+Codable.swift @@ -32,3 +32,7 @@ public extension CodingUserInfoKey { /// A value indicating what decoding method to use: tolerant or strict. Default value is strict static let decodingMethod = CodingUserInfoKey(rawValue: "dev.mxcl.Version.decodingMethod")! } + +#if swift(>=5.5) +extension DecodingMethod: Sendable {} +#endif