Cargo.toml 890 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "cdk-js"
  3. version = "0.4.0"
  4. edition = "2021"
  5. license = "MIT"
  6. homepage = "https://github.com/cashubtc/cdk"
  7. repository = "https://github.com/cashubtc/cdk.git"
  8. rust-version = "1.63.0" # MSRV
  9. description = "Cashu Development Kit JS Bindings"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [lib]
  12. crate-type = ["lib", "cdylib"]
  13. [dependencies]
  14. cdk = { path = "../../crates/cdk", features = ["wallet"] }
  15. cdk-rexie = { path = "../../crates/cdk-rexie", features = ["wallet"] }
  16. console_error_panic_hook = "0.1"
  17. js-sys = "0.3"
  18. serde_json = "1"
  19. serde-wasm-bindgen = "0.6.5"
  20. serde = { version = "1", default-features = false, features = ["derive"] }
  21. wasm-bindgen = { version = "0.2.92", features = ["serde-serialize"] }
  22. wasm-bindgen-futures = "0.4.41"
  23. web-sys = { version = "0.3.69", default-features = false, features = ["console"] }