Skip to content

Commit 297680b

Browse files
Merge pull request #194 from thunderbiscuit/update/uniffi-bindgen
Update uniffi-bindgen to 0.19.5
2 parents 159e7ab + 8166f82 commit 297680b

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/cont_integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
strategy:
1111
matrix:
1212
rust:
13-
- version: 1.60.0 # STABLE
13+
- version: 1.63.0 # STABLE
1414
clippy: true
15-
- version: 1.57.0 # MSRV
15+
- version: 1.61.0 # MSRV
1616
steps:
1717
- name: checkout
1818
uses: actions/checkout@v2

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Native language bindings for BDK
22

3+
<p>
4+
<a href="https://github.com/bitcoindevkit/bdk-ffi/blob/master/LICENSE"><img alt="MIT or Apache-2.0 Licensed" src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg"/></a>
5+
<a href="https://github.com/bitcoindevkit/bdk-ffi/actions?query=workflow%3ACI"><img alt="CI Status" src="https://github.com/bitcoindevkit/bdk-ffi/workflows/CI/badge.svg"></a>
6+
<a href="https://blog.rust-lang.org/2022/05/19/Rust-1.61.0.html"><img alt="Rustc Version 1.61.0+" src="https://img.shields.io/badge/rustc-1.61.0%2B-lightgrey.svg"/></a>
7+
<a href="https://discord.gg/d7NkDKm"><img alt="Chat on Discord" src="https://img.shields.io/discord/753336465005608961?logo=discord"></a>
8+
</p>
9+
310
The workspace in this repository creates the `libbdkffi` multi-language library for the rust based
411
[bdk] library from the [Bitcoin Dev Kit] project. The `bdk-ffi-bindgen` package builds a tool for
512
generating the actual language binding code used to access the `libbdkffi` library.

bdk-ffi-bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[dependencies]
77
anyhow = "=1.0.45" # remove after upgrading to next version of uniffi
88
structopt = "0.3"
9-
uniffi_bindgen = "=0.19.3"
9+
uniffi_bindgen = "0.19.5"
1010
camino = "1.0.9"

bdk-ffi-bindgen/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::path::{Path, PathBuf};
44
use std::str::FromStr;
55
use structopt::StructOpt;
66

7-
#[derive(Debug, PartialEq)]
7+
#[derive(Debug, Eq, PartialEq)]
88
pub enum Language {
99
Kotlin,
1010
Python,
@@ -52,6 +52,7 @@ fn generate_bindings(opt: &Opt) -> anyhow::Result<(), anyhow::Error> {
5252
None,
5353
vec![opt.language.to_string().as_str()],
5454
Some(out_dir),
55+
None,
5556
false,
5657
)?;
5758

0 commit comments

Comments
 (0)