Cargo.toml 779 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "cdk-rexie"
  3. version.workspace = true
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. description = "Indexdb storage backend for CDK in the browser"
  7. license.workspace = true
  8. homepage = "https://github.com/cashubtc/cdk"
  9. repository = "https://github.com/cashubtc/cdk.git"
  10. rust-version.workspace = true # MSRV
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [features]
  13. default = ["wallet"]
  14. wallet = ["cdk/wallet"]
  15. [dependencies]
  16. rexie = "0.6.0"
  17. cdk.workspace = true
  18. async-trait.workspace = true
  19. tokio.workspace = true
  20. serde.workspace = true
  21. serde_json.workspace = true
  22. thiserror.workspace = true
  23. serde-wasm-bindgen = "0.6.5"
  24. web-sys = { version = "0.3.69", default-features = false, features = ["console"] }