| 123456789101112131415161718192021222324252627 | 
							- [package]
 
- name = "cdk-rexie"
 
- version.workspace = true
 
- edition.workspace = true
 
- authors = ["CDK Developers"]
 
- description = "Indexdb storage backend for CDK in the browser"
 
- license.workspace = true
 
- homepage = "https://github.com/cashubtc/cdk"
 
- repository = "https://github.com/cashubtc/cdk.git"
 
- rust-version.workspace = true # MSRV
 
- readme = "README.md"
 
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
- [features]
 
- default = ["wallet"]
 
- wallet = ["cdk/wallet"]
 
- [dependencies]
 
- rexie = "0.6.0"
 
- cdk.workspace = true
 
- async-trait.workspace = true
 
- tokio.workspace = true
 
- serde.workspace = true
 
- serde_json.workspace = true
 
- thiserror.workspace = true
 
- serde-wasm-bindgen = "0.6.5"
 
- web-sys =  { version = "0.3.69", default-features = false, features = ["console"] }
 
 
  |