Skip to content

Commit f9466f0

Browse files
author
Dionysis Karatzas
authored
Merge pull request #236 from sirily11/develop
fix: secp256k1 error
2 parents 05bd9d4 + e69c43a commit f9466f0

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Package.resolved

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
dependencies: [
1414
.package(name: "BigInt", url: "https://github.com/attaswift/BigInt", from: "5.0.0"),
1515
.package(name: "GenericJSON", url: "https://github.com/zoul/generic-json-swift", from: "2.0.0"),
16-
.package(name: "secp256k1", url: "https://github.com/Boilertalk/secp256k1.swift", from: "0.1.0"),
16+
.package(url: "https://github.com/GigaBitcoin/secp256k1.swift.git", .upToNextMajor(from: "0.6.0")),
1717
.package(url: "https://github.com/OpenCombine/OpenCombine.git", from: "0.13.0")
1818
],
1919
targets: [
@@ -26,9 +26,10 @@ let package = Package(
2626
.target(name: "Internal_CryptoSwift_PBDKF2"),
2727
"BigInt",
2828
"GenericJSON",
29-
"secp256k1",
29+
.product(name: "BigInt", package: "BigInt"),
3030
"OpenCombine",
3131
.product(name: "OpenCombineFoundation", package: "OpenCombine"),
32+
.product(name: "secp256k1", package: "secp256k1.swift")
3233
],
3334
path: "web3swift/src"
3435
),

0 commit comments

Comments
 (0)