Cargo.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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-lnd.workspace = true
  34. cdk-fake-wallet.workspace = true
  35. cdk-axum.workspace = true
  36. cdk-mint-rpc = { workspace = true, optional = true }
  37. config = { version = "0.13.3", features = ["toml"] }
  38. clap.workspace = true
  39. bitcoin.workspace = true
  40. tokio = { workspace = true, default-features = false, features = ["signal"] }
  41. tracing.workspace = true
  42. tracing-subscriber.workspace = true
  43. futures.workspace = true
  44. serde.workspace = true
  45. bip39.workspace = true
  46. tower-http = { workspace = true, features = ["compression-full", "decompression-full"] }
  47. tower = "0.5.2"
  48. lightning-invoice.workspace = true
  49. home = "0.5.5"
  50. url.workspace = true
  51. utoipa = { workspace = true, optional = true }
  52. utoipa-swagger-ui = { version = "9.0.0", features = ["axum"], optional = true }