Cargo.toml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "cdk-mintd"
  3. version = "0.6.0"
  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. rust-version = "1.63.0" # MSRV
  10. description = "CDK mint binary"
  11. [dependencies]
  12. anyhow = "1"
  13. axum = "0.6.20"
  14. cdk = { path = "../cdk", version = "0.6.0", default-features = false, features = [
  15. "mint",
  16. ] }
  17. cdk-redb = { path = "../cdk-redb", version = "0.6.0", default-features = false, features = [
  18. "mint",
  19. ] }
  20. cdk-sqlite = { path = "../cdk-sqlite", version = "0.6.0", default-features = false, features = [
  21. "mint",
  22. ] }
  23. cdk-cln = { path = "../cdk-cln", version = "0.6.0", default-features = false }
  24. cdk-lnbits = { path = "../cdk-lnbits", version = "0.6.0", default-features = false }
  25. cdk-phoenixd = { path = "../cdk-phoenixd", version = "0.6.0", default-features = false }
  26. cdk-lnd = { path = "../cdk-lnd", version = "0.6.0", default-features = false }
  27. cdk-fake-wallet = { path = "../cdk-fake-wallet", version = "0.6.0", default-features = false }
  28. cdk-strike = { path = "../cdk-strike", version = "0.6.0" }
  29. cdk-axum = { path = "../cdk-axum", version = "0.6.0", default-features = false }
  30. config = { version = "0.13.3", features = ["toml"] }
  31. clap = { version = "4.4.8", features = ["derive", "env", "default"] }
  32. tokio = { version = "1", default-features = false }
  33. tracing = { version = "0.1", default-features = false, features = [
  34. "attributes",
  35. "log",
  36. ] }
  37. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  38. futures = { version = "0.3.28", default-features = false }
  39. serde = { version = "1", default-features = false, features = ["derive"] }
  40. bip39 = "2.0"
  41. tower-http = { version = "0.4.4", features = ["cors", "compression-full"] }
  42. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  43. home = "0.5.5"
  44. url = "2.3"
  45. utoipa = { version = "4", optional = true }
  46. utoipa-swagger-ui = { version = "4", features = ["axum"], optional = true }
  47. rand = "0.8.5"
  48. [features]
  49. swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"]
  50. redis = ["cdk-axum/redis"]