Cargo.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [package]
  2. name = "cdk-mintd"
  3. version = "0.7.2"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. license = "MIT"
  7. homepage = "https://github.com/cashubtc/cdk"
  8. repository = "https://github.com/cashubtc/cdk.git"
  9. description = "CDK mint binary"
  10. rust-version = "1.75.0"
  11. [features]
  12. default = ["management-rpc"]
  13. swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"]
  14. redis = ["cdk-axum/redis"]
  15. management-rpc = ["cdk-mint-rpc"]
  16. # MSRV is not commited to with redb enabled
  17. redb = ["dep:cdk-redb"]
  18. [dependencies]
  19. anyhow.workspace = true
  20. async-trait.workspace = true
  21. axum.workspace = true
  22. cdk = { workspace = true, features = [
  23. "mint",
  24. ] }
  25. cdk-redb = { workspace = true, features = [
  26. "mint",
  27. ], optional = true }
  28. cdk-sqlite = { workspace = true, features = [
  29. "mint",
  30. ] }
  31. cdk-cln.workspace = true
  32. cdk-lnbits.workspace = true
  33. cdk-phoenixd.workspace = true
  34. cdk-lnd.workspace = true
  35. cdk-fake-wallet.workspace = true
  36. cdk-axum.workspace = true
  37. cdk-mint-rpc = { workspace = true, optional = true }
  38. config = { version = "0.13.3", features = ["toml"] }
  39. clap.workspace = true
  40. bitcoin.workspace = true
  41. tokio = { workspace = true, default-features = false, features = ["signal"] }
  42. tracing.workspace = true
  43. tracing-subscriber.workspace = true
  44. futures.workspace = true
  45. serde.workspace = true
  46. bip39.workspace = true
  47. tower-http = { workspace = true, features = ["compression-full", "decompression-full"] }
  48. tower = "0.5.2"
  49. lightning-invoice.workspace = true
  50. home = "0.5.5"
  51. url.workspace = true
  52. utoipa = { workspace = true, optional = true }
  53. utoipa-swagger-ui = { version = "9.0.0", features = ["axum"], optional = true }