Cargo.toml 873 B

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