From 1cf5497d034623962837b0501a7f0ce18a5129d4 Mon Sep 17 00:00:00 2001 From: metalurgical <97008724+metalurgical@users.noreply.github.com> Date: Thu, 11 Jan 2024 16:30:36 +0200 Subject: [PATCH] feat: upgrade secp256k1 from 0.10.0 to 0.12.2 This updates the version lock of secp256k1 from 0.10.0 to 0.12.2 Additionally adds macOS support pending dependency update for HsCryptoKit --- Package.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index c42fcf6..5259270 100644 --- a/Package.swift +++ b/Package.swift @@ -6,6 +6,7 @@ let package = Package( name: "HdWalletKit", platforms: [ .iOS(.v13), + .macOS(.v10_15) ], products: [ .library( @@ -14,7 +15,7 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "3.0.0"), - .package(url: "https://github.com/GigaBitcoin/secp256k1.swift.git", exact: .init(0, 10, 0)), + .package(url: "https://github.com/GigaBitcoin/secp256k1.swift.git", exact: .init(0, 12, 2)), .package(url: "https://github.com/horizontalsystems/HsCryptoKit.Swift.git", .upToNextMinor(from: "1.3.0")), ], targets: [