Skip to content

Commit 723d054

Browse files
Update Package.swift
1 parent df875b2 commit 723d054

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 5.7.0
1+
// swift-tools-version: 5.5.0
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -14,21 +14,21 @@ let package = Package(
1414
dependencies: [
1515
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
1616
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.5.1"),
17-
.package(url: "https://github.com/GigaBitcoin/secp256k1.swift", .upToNextMinor(from: "0.10.0")),
17+
.package(name: "secp256k1", url: "https://github.com/GigaBitcoin/secp256k1.swift", .upToNextMinor(from: "0.10.0")),
1818
],
1919
targets: [
2020
.target(
2121
name: "Web3Core",
2222
dependencies: [
23-
.product(name: "secp256k1", package: "secp256k1.swift"),
23+
"secp256k1",
2424
"BigInt",
2525
"CryptoSwift"
2626
]
2727
),
2828
.target(
2929
name: "web3swift",
3030
dependencies: [
31-
.product(name: "secp256k1", package: "secp256k1.swift"),
31+
"secp256k1",
3232
"Web3Core",
3333
"BigInt",
3434
],

0 commit comments

Comments
 (0)