Cargo.toml 889 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "cdk-sqlite"
  3. version = { workspace = true }
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "Sqlite 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. bitcoin.workspace = true
  20. sqlx = { version = "0.6.3", default-features = false, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
  21. thiserror.workspace = true
  22. tokio = { workspace = true, features = [
  23. "time",
  24. "macros",
  25. "sync",
  26. ] }
  27. tracing.workspace = true
  28. serde_json.workspace = true
  29. lightning-invoice.workspace = true