Files
breez-sdk-liquid/lib/bindings/Cargo.toml
Ross Savage 06b848a8f3 SDK events framework (#193)
* Add events framework

* Adapt RN codegen and add synced event

* Only use get_connection internally
2024-05-25 06:20:14 +02:00

28 lines
841 B
TOML

[package]
name = "breez-liquid-sdk-bindings"
edition = "2021"
version.workspace = true
[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"
[lib]
name = "breez_liquid_sdk_bindings"
crate-type = ["staticlib", "cdylib", "lib"]
[dependencies]
anyhow = { workspace = true }
breez-liquid-sdk = { path = "../core" }
uniffi = { workspace = true, features = [ "bindgen-tests", "cli" ] }
# Bindgen used by KMP, version has to match the one supported by KMP
uniffi_bindgen = "0.25.2"
uniffi-kotlin-multiplatform = { git = "https://gitlab.com/trixnity/uniffi-kotlin-multiplatform-bindings", rev = "55d51f3abf9819b32bd81756053dcfc10f8d5522" }
camino = "1.1.1"
thiserror = { workspace = true }
tokio = { version = "1", features = ["rt"] }
once_cell = "*"
[build-dependencies]
uniffi = { workspace = true, features = [ "build" ] }
glob = "0.3.1"