Cargo.toml 800 B

123456789101112131415161718192021222324252627
  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. readme = "README.md"
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [features]
  14. default = ["wallet"]
  15. wallet = ["cdk/wallet"]
  16. [dependencies]
  17. rexie = "0.6.0"
  18. cdk.workspace = true
  19. async-trait.workspace = true
  20. tokio.workspace = true
  21. serde.workspace = true
  22. serde_json.workspace = true
  23. thiserror.workspace = true
  24. serde-wasm-bindgen = "0.6.5"
  25. web-sys = { version = "0.3.69", default-features = false, features = ["console"] }