Skip to content

Commit 37c1a08

Browse files
committed
Upgrade swift-tools-version to 6.2
1 parent 2f459e0 commit 37c1a08

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.0
1+
// swift-tools-version: 6.2
22

33
import PackageDescription
44

Sources/PersistentKeyValueKit/Persistent Key-Value Representation/Implementations/ProxyPersistentKeyValueRepresentation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public struct ProxyPersistentKeyValueRepresentation<Value, Proxy> where Proxy: K
2929
other: Other,
3030
to: @Sendable @escaping (Value) -> Other.Value,
3131
from: @Sendable @escaping (Other.Value) -> Value
32-
) where Other: ProxyPersistentKeyValueRepresentationProtocol, Other.Proxy == Proxy {
32+
) where Other: ProxyPersistentKeyValueRepresentationProtocol & SendableMetatype, Other.Proxy == Proxy, Proxy: SendableMetatype {
3333
self.to = { @Sendable in
3434
other.to(to($0))
3535
}

0 commit comments

Comments
 (0)