Skip to content

Commit 39dd392

Browse files
authored
Update ZKP bindings package (#240)
ZKP Bindings
1 parent 24b7f76 commit 39dd392

File tree

95 files changed

+4
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+4
-4
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ let package = Package(
4444
.target(
4545
name: "zkp",
4646
dependencies: [
47-
"secp256k1_zkp_bindings"
47+
"zkp_bindings"
4848
]
4949
),
5050
.target(
@@ -61,7 +61,7 @@ let package = Package(
6161
]
6262
),
6363
.target(
64-
name: "secp256k1_zkp_bindings",
64+
name: "zkp_bindings",
6565
cSettings: [
6666
// Basic config values that are universal and require no dependencies.
6767
.define("ECMULT_GEN_PREC_BITS", to: "4"),

Sources/zkp/Exports.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// See the accompanying file LICENSE for information
99
//
1010

11-
#if canImport(secp256k1_zkp_bindings)
12-
@_exported import secp256k1_zkp_bindings
11+
#if canImport(zkp_bindings)
12+
@_exported import zkp_bindings
1313
#else
1414
@_exported import secp256k1_bindings
1515
#endif

0 commit comments

Comments
 (0)