Cargo.toml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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", "cln", "lnd", "lnbits", "fakewallet", "grpc-processor"]
  13. # Ensure at least one lightning backend is enabled
  14. management-rpc = ["cdk-mint-rpc"]
  15. cln = ["dep:cdk-cln"]
  16. lnd = ["dep:cdk-lnd"]
  17. lnbits = ["dep:cdk-lnbits"]
  18. fakewallet = ["dep:cdk-fake-wallet"]
  19. grpc-processor = ["dep:cdk-payment-processor"]
  20. sqlcipher = ["cdk-sqlite/sqlcipher"]
  21. # MSRV is not commited to with redb enabled
  22. redb = ["dep:cdk-redb"]
  23. swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"]
  24. redis = ["cdk-axum/redis"]
  25. [dependencies]
  26. anyhow.workspace = true
  27. async-trait.workspace = true
  28. axum.workspace = true
  29. cdk = { workspace = true, features = [
  30. "mint",
  31. ] }
  32. cdk-redb = { workspace = true, features = [
  33. "mint",
  34. ], optional = true }
  35. cdk-sqlite = { workspace = true, features = [
  36. "mint",
  37. ] }
  38. cdk-cln = { workspace = true, optional = true }
  39. cdk-lnbits = { workspace = true, optional = true }
  40. cdk-lnd = { workspace = true, optional = true }
  41. cdk-fake-wallet = { workspace = true, optional = true }
  42. cdk-axum.workspace = true
  43. cdk-mint-rpc = { workspace = true, optional = true }
  44. cdk-payment-processor = { workspace = true, optional = true }
  45. config = { version = "0.13.3", features = ["toml"] }
  46. clap.workspace = true
  47. bitcoin.workspace = true
  48. tokio = { workspace = true, default-features = false, features = ["signal"] }
  49. tracing.workspace = true
  50. tracing-subscriber.workspace = true
  51. futures.workspace = true
  52. serde.workspace = true
  53. bip39.workspace = true
  54. tower-http = { workspace = true, features = ["compression-full", "decompression-full"] }
  55. tower = "0.5.2"
  56. lightning-invoice.workspace = true
  57. home.workspace = true
  58. url.workspace = true
  59. utoipa = { workspace = true, optional = true }
  60. utoipa-swagger-ui = { version = "9.0.0", features = ["axum"], optional = true }