bdk-ffi/bdk-ffi/Cargo.toml

29 lines
687 B
TOML
Raw Normal View History

2021-06-03 17:51:07 -07:00
[package]
name = "bdk-ffi"
2023-06-15 10:15:23 -04:00
version = "0.29.0"
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"
license = "MIT OR Apache-2.0"
2021-06-03 17:51:07 -07:00
[lib]
2023-02-28 11:55:29 -05:00
crate-type = ["lib", "staticlib", "cdylib"]
name = "bdkffi"
2021-06-03 17:51:07 -07:00
[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"
2023-03-23 12:21:18 -04:00
[features]
default = ["uniffi/cli"]
2021-06-03 17:51:07 -07:00
[dependencies]
2023-04-12 22:48:26 -05:00
bdk = { version = "0.28", features = ["all-keys", "use-esplora-ureq", "sqlite-bundled", "rpc"] }
uniffi = { version = "0.23.0" }
2022-02-08 17:01:03 +01:00
2021-10-11 23:04:18 -07:00
[build-dependencies]
uniffi = { version = "0.23.0", features = ["build"] }
2022-12-15 09:39:59 -05:00
[dev-dependencies]
2023-02-28 11:55:29 -05:00
uniffi = { version = "0.23.0", features = ["bindgen-tests"] }
2022-12-15 09:39:59 -05:00
assert_matches = "1.5.0"