Cargo.toml 715 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "cdk-redb"
  3. version = { workspace = true }
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "Redb storage backend for CDK"
  7. license.workspace = true
  8. homepage.workspace = true
  9. repository.workspace = true
  10. rust-version.workspace = true
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [features]
  13. default = ["mint", "wallet"]
  14. mint = ["cdk/mint"]
  15. wallet = ["cdk/wallet"]
  16. [dependencies]
  17. async-trait.workspace = true
  18. cdk = { workspace = true, default-features = false }
  19. redb = "2.1.0"
  20. tokio.workspace = true
  21. thiserror.workspace = true
  22. tracing.workspace = true
  23. serde.workspace = true
  24. serde_json.workspace = true
  25. lightning-invoice.workspace = true