Skip to content

Commit

Permalink
ffi: fix Swift package
Browse files Browse the repository at this point in the history
Fixes rust-nostr/nostr-sdk-swift#3

Signed-off-by: Yuki Kishimoto <[email protected]>
  • Loading branch information
yukibtc committed Nov 15, 2024
1 parent 829e8ca commit 2e1e262
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@

* nostr: fix `TagStandard` de/serialization unit tests ([Yuki Kishimoto])
* pool: fix relay can't manually connect if reconnection is disabled ([Yuki Kishimoto])
* ffi: fix Swift package ([Yuki Kishimoto])

### Removed

Expand Down
1 change: 0 additions & 1 deletion bindings/nostr-sdk-ffi/swift/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ let package = Package(
products: [
.library(name: "NostrSDK", targets: ["nostr_sdkFFI", "NostrSDK"]),
],
dependencies: [],
targets: [
.binaryTarget(name: "nostr_sdkFFI", path: "./nostr_sdkFFI.xcframework"),
.target(name: "NostrSDK", dependencies: ["nostr_sdkFFI"]),
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
framework module nostr_sdkFFI {
umbrella header "nostr_sdkFFI-umbrella.h"

export *
module * { export * }
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
framework module nostr_sdkFFI {
umbrella header "nostr_sdkFFI-umbrella.h"

export *
module * { export * }
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
framework module nostr_sdkFFI {
umbrella header "nostr_sdkFFI-umbrella.h"

export *
module * { export * }
}

0 comments on commit 2e1e262

Please sign in to comment.