Cargo.toml 501 B

123456789101112131415161718192021
  1. [package]
  2. name = "cashu-sdk-ffi"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. [lib]
  7. name = "cashu_sdk_ffi"
  8. crate-type = ["cdylib", "staticlib"]
  9. [dependencies]
  10. cashu-ffi = { path = "../cashu-ffi" }
  11. cashu-sdk = { path = "../../crates/cashu-sdk", default-features = false, features = ["wallet", "mint", "blocking"] }
  12. tracing = { workspace = true }
  13. tracing-subscriber = { workspace = true }
  14. uniffi = { workspace = true }
  15. [build-dependencies]
  16. uniffi = { workspace = true, features = ["build"] }