Cargo.toml 973 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "cdk-redb"
  3. version.workspace = true
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. description = "Redb storage backend for CDK"
  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-common/wallet"]
  16. [dependencies]
  17. async-trait.workspace = true
  18. cdk-common = { workspace = true, features = ["test"] }
  19. redb = "2.6.3"
  20. thiserror.workspace = true
  21. tracing.workspace = true
  22. serde.workspace = true
  23. serde_json.workspace = true
  24. lightning-invoice.workspace = true
  25. uuid.workspace = true
  26. paste = "1.0.15"
  27. [dev-dependencies]
  28. tempfile = "3.17.1"
  29. tokio.workspace = true
  30. [target.'cfg(target_arch = "wasm32")'.dependencies]
  31. uuid = { workspace = true, features = ["js"] }
  32. [lints]
  33. workspace = true