Cargo.toml 854 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "cdk-redb"
  3. version = "0.4.0"
  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.66.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"]
  14. mint = ["cdk/mint"]
  15. wallet = ["cdk/wallet"]
  16. [dependencies]
  17. async-trait = "0.1"
  18. cdk = { path = "../cdk", version = "0.4.0", default-features = false }
  19. redb = "2.1.0"
  20. thiserror = "1"
  21. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  22. serde = { version = "1", default-features = false, features = ["derive"] }
  23. serde_json = "1"
  24. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }