Cargo.toml 865 B

1234567891011121314151617181920212223242526272829303132
  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", "auth"]
  15. wallet = ["cdk-common/wallet"]
  16. auth = ["cdk-common/auth"]
  17. [dependencies]
  18. async-trait.workspace = true
  19. cdk-common = { workspace = true, features = ["test"] }
  20. redb = "2.4.0"
  21. thiserror.workspace = true
  22. tracing.workspace = true
  23. serde.workspace = true
  24. serde_json.workspace = true
  25. lightning-invoice.workspace = true
  26. uuid.workspace = true
  27. [dev-dependencies]
  28. tempfile = "3.17.1"
  29. tokio.workspace = true