From 23564a715e55f77fcc0d9ca16cfe0d652053c808 Mon Sep 17 00:00:00 2001 From: Tommy Pauly Date: Mon, 8 Jun 2026 15:13:21 -0700 Subject: [PATCH] Update swift-crypto to 5.0.0-beta.1 --- Package.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index d711495..4d78a5e 100644 --- a/Package.swift +++ b/Package.swift @@ -56,7 +56,7 @@ var settings: [SwiftSetting]? = [ #if os(Linux) packageDependencies = [ .package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"), - .package(url: "https://github.com/apple/swift-crypto.git", from: "4.0.0"), + .package(url: "https://github.com/apple/swift-crypto.git", from: "5.0.0-beta.1"), ] targetDependencies = [ .product(name: "Logging", package: "swift-log"), @@ -65,7 +65,7 @@ targetDependencies = [ ] #else packageDependencies = [ - .package(url: "https://github.com/apple/swift-crypto.git", from: "4.0.0") + .package(url: "https://github.com/apple/swift-crypto.git", from: "5.0.0-beta.1") ] targetDependencies = [ .product(name: "Crypto", package: "swift-crypto"),