| 1234567891011121314151617181920212223242526272829303132333435363738 | 
							- [package]
 
- name = "cdk-ffi"
 
- version.workspace = true
 
- edition.workspace = true
 
- license.workspace = true
 
- repository.workspace = true
 
- rust-version.workspace = true
 
- description = "FFI bindings for cdk wallet"
 
- homepage = "https://github.com/cashubtc/cdk"
 
- [lib]
 
- crate-type = ["cdylib", "staticlib", "rlib"]
 
- name = "cdk_ffi"
 
- [dependencies]
 
- async-trait = { workspace = true }
 
- bip39 = { workspace = true }
 
- cdk = { workspace = true, default-features = false, features = ["wallet", "auth", "bip353"] }
 
- cdk-sqlite = { workspace = true }
 
- ctor = "0.2"
 
- futures = { workspace = true }
 
- once_cell = { workspace = true }
 
- rand = { workspace = true }
 
- serde = { workspace = true, features = ["derive"] }
 
- serde_json = { workspace = true }
 
- thiserror = { workspace = true }
 
- tokio = { workspace = true, features = ["sync", "rt", "rt-multi-thread"] }
 
- uniffi = { version = "0.29", features = ["cli", "tokio"] }
 
- url = { workspace = true }
 
- uuid = { workspace = true, features = ["v4"] }
 
- [dev-dependencies]
 
- [[bin]]
 
- name = "uniffi-bindgen"
 
- path = "src/bin/uniffi-bindgen.rs"
 
 
  |