-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump Liquid Wallet Kit to version 0.8.2-1
- Loading branch information
Showing
4 changed files
with
2,296 additions
and
1,214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = "LiquidWalletKit" | ||
spec.version = "0.8.2-1" | ||
spec.license = { :type => "MIT OR BSD-2-Clause" } | ||
spec.summary = "Swift bindings to the Liquid Wallet Kit" | ||
spec.homepage = "https://blockstream.com" | ||
spec.authors = { "Riccardo Casatta" => "[email protected]", "Luca Vaccaro" => "[email protected]" } | ||
spec.documentation_url = "https://docs.rs/lwk_bindings" | ||
spec.source = { :git => 'https://github.com/Blockstream/lwk-swift.git', :tag => spec.version } | ||
spec.ios.deployment_target = "13.0" | ||
spec.source_files = [ | ||
"Sources/LiquidWalletKit/*.swift", | ||
"Sources/LiquidWalletKit/**/*.swift" | ||
] | ||
spec.static_framework = true | ||
|
||
spec.dependency "lwkFFI", "= #{spec.version}" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// swift-tools-version:5.5 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "lwk_bindings", | ||
platforms: [ | ||
.macOS(.v12), | ||
.iOS(.v13), | ||
], | ||
products: [ | ||
.library(name: "LiquidWalletKit", targets: ["lwkFFI", "LiquidWalletKit"]), | ||
], | ||
targets: [ | ||
.binaryTarget(name: "lwkFFI", url: "https://github.com/Blockstream/lwk-swift/releases/download/0.8.2-1/lwkFFI.xcframework.zip", checksum: "9d2d08c4f4d61b98848bc467ab01cbbade33c8cfe72fde508d8c85872246e2f2"), | ||
.target(name: "LiquidWalletKit", dependencies: ["lwkFFI"]), | ||
] | ||
) |
Oops, something went wrong.