2021-06-03 17:51:07 -07:00
|
|
|
[package]
|
2021-11-01 19:07:27 -07:00
|
|
|
name = "bdk-ffi"
|
2022-03-02 14:46:06 -08:00
|
|
|
version = "0.3.1"
|
2021-10-14 00:10:43 +05:30
|
|
|
authors = ["Steve Myers <steve@notmandatory.org>", "Sudarsan Balaji <sudarsan.balaji@artfuldev.com>"]
|
2021-06-03 17:51:07 -07:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
2021-10-28 00:35:22 +05:30
|
|
|
crate-type = ["staticlib", "cdylib"]
|
2021-11-01 19:07:27 -07:00
|
|
|
name = "bdkffi"
|
2021-06-03 17:51:07 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2021-12-21 22:08:21 -08:00
|
|
|
bdk = { version = "0.14", features = ["all-keys", "use-esplora-ureq"] }
|
2021-12-16 15:14:05 +01:00
|
|
|
uniffi_macros = { version = "0.16.0", features = ["builtin-bindgen"] }
|
|
|
|
uniffi = { version = "0.16.0", features = ["builtin-bindgen"] }
|
2021-10-11 23:04:18 -07:00
|
|
|
thiserror = "1.0"
|
2021-11-22 15:59:12 -08:00
|
|
|
anyhow = "=1.0.45" # remove after upgrading to next version of uniffi
|
2021-06-03 17:51:07 -07:00
|
|
|
|
2022-02-08 17:01:03 +01:00
|
|
|
uniffi_bindgen = { version = "0.16.0", optional = true }
|
|
|
|
|
2021-10-11 23:04:18 -07:00
|
|
|
[build-dependencies]
|
2021-12-16 15:14:05 +01:00
|
|
|
uniffi_build = { version = "0.16.0", features = ["builtin-bindgen"] }
|
2022-02-08 17:01:03 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
generate-python = ["uniffi_bindgen"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "generate"
|