mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2026-01-29 19:04:20 +01:00
* CI: build bindings, add binding tests * Cargo fmt * Add assertion in python binding test
22 lines
474 B
TOML
22 lines
474 B
TOML
[package]
|
|
name = "ls-sdk-bindings"
|
|
edition = "2021"
|
|
version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "uniffi-bindgen"
|
|
path = "uniffi-bindgen.rs"
|
|
|
|
[lib]
|
|
name = "ls_sdk_bindings"
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|
|
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
ls-sdk = { path = "../ls-sdk-core" }
|
|
uniffi = { workspace = true, features = [ "bindgen-tests", "cli" ] }
|
|
thiserror = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
uniffi = { workspace = true, features = [ "build" ] } |