Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "cdk-sqlite"
  3. version = "0.7.1"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "SQLite 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 = []
  15. wallet = []
  16. [dependencies]
  17. async-trait = "0.1"
  18. cdk-common = { path = "../cdk-common", version = "0.7.1" }
  19. bitcoin = { version = "0.32.2", default-features = false }
  20. sqlx = { version = "0.6.3", default-features = false, features = [
  21. "runtime-tokio-rustls",
  22. "sqlite",
  23. "macros",
  24. "migrate",
  25. "uuid",
  26. ] }
  27. thiserror = "1"
  28. tokio = { version = "1", features = ["time", "macros", "sync"] }
  29. tracing = { version = "0.1", default-features = false, features = [
  30. "attributes",
  31. "log",
  32. ] }
  33. serde_json = "1"
  34. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  35. uuid = { version = "=1.12.1", features = ["v4", "serde"] }