Cargo.toml 822 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "cdk-redb"
  3. version = "0.7.1"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "Redb storage backend for CDK"
  7. license = "MIT"
  8. homepage = "https://github.com/cashubtc/cdk"
  9. repository = "https://github.com/cashubtc/cdk.git"
  10. rust-version = "1.81.0" # MSRV
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [features]
  13. default = ["mint", "wallet", "auth"]
  14. mint = ["cdk-common/mint"]
  15. wallet = ["cdk-common/wallet"]
  16. auth = ["cdk-common/auth"]
  17. [dependencies]
  18. async-trait.workspace = true
  19. cdk-common.workspace = true
  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