Bump uniffi-rs to 0.19.3 (#173)

This commit is contained in:
thunderbiscuit 2022-07-25 15:15:23 -04:00 committed by GitHub
parent 1a20d0a6c2
commit fa5c67cd05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 8 deletions

View File

@ -16,8 +16,8 @@ name = "bdkffi"
[dependencies]
bdk = { version = "0.20", features = ["all-keys", "use-esplora-ureq", "sqlite-bundled"] }
uniffi_macros = { version = "0.16.0", features = ["builtin-bindgen"] }
uniffi = { version = "0.16.0", features = ["builtin-bindgen"] }
uniffi_macros = { version = "0.19.3", features = ["builtin-bindgen"] }
uniffi = { version = "0.19.3", features = ["builtin-bindgen"] }
[build-dependencies]
uniffi_build = { version = "0.16.0", features = ["builtin-bindgen"] }
uniffi_build = { version = "0.19.3", features = ["builtin-bindgen"] }

View File

@ -3,9 +3,8 @@ name = "bdk-ffi-bindgen"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "=1.0.45" # remove after upgrading to next version of uniffi
structopt = "0.3"
uniffi_bindgen = "0.16.0"
uniffi_bindgen = "0.19.3"
camino = "1.0.9"

View File

@ -2,6 +2,7 @@ use std::fmt;
use std::path::{Path, PathBuf};
use std::str::FromStr;
use structopt::StructOpt;
use camino::Utf8Path;
#[derive(Debug, PartialEq)]
pub enum Language {
@ -44,11 +45,13 @@ impl FromStr for Language {
}
fn generate_bindings(opt: &Opt) -> anyhow::Result<(), anyhow::Error> {
let path: &Utf8Path = Utf8Path::from_path(&opt.udl_file).unwrap();
let out_dir: &Utf8Path = Utf8Path::from_path(&opt.out_dir).unwrap();
uniffi_bindgen::generate_bindings(
&opt.udl_file,
path,
None,
vec![opt.language.to_string().as_str()],
Some(&opt.out_dir),
Some(out_dir),
false,
)?;