From de2869fb646b8c99eb77cb1400e0b8137b23a5eb Mon Sep 17 00:00:00 2001 From: 1024jp <1024jp@wolfrosch.com> Date: Wed, 14 Jun 2023 07:47:19 +0900 Subject: [PATCH] Add more Sendable --- Sources/Gzip/Data+Gzip.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Gzip/Data+Gzip.swift b/Sources/Gzip/Data+Gzip.swift index b636378..0c277a9 100644 --- a/Sources/Gzip/Data+Gzip.swift +++ b/Sources/Gzip/Data+Gzip.swift @@ -42,7 +42,7 @@ public enum Gzip { /// Compression level whose rawValue is based on the zlib's constants. -public struct CompressionLevel: RawRepresentable { +public struct CompressionLevel: RawRepresentable, Sendable { /// Compression level in the range of `0` (no compression) to `9` (maximum compression). public let rawValue: Int32