Cargo.toml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "cdk-mintd"
  3. version = "0.6.1"
  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-cln = { path = "../cdk-cln", version = "0.6.0", default-features = false }
  18. cdk-lnbits = { path = "../cdk-lnbits", version = "0.6.0", default-features = false }
  19. cdk-database = { path = "../cdk-database" }
  20. cdk-phoenixd = { path = "../cdk-phoenixd", version = "0.6.0", default-features = false }
  21. cdk-lnd = { path = "../cdk-lnd", version = "0.6.0", default-features = false }
  22. cdk-fake-wallet = { path = "../cdk-fake-wallet", version = "0.6.0", default-features = false }
  23. cdk-strike = { path = "../cdk-strike", version = "0.6.0" }
  24. cdk-axum = { path = "../cdk-axum", version = "0.6.0", default-features = false }
  25. config = { version = "0.13.3", features = ["toml"] }
  26. clap = { version = "4.4.8", features = ["derive", "env", "default"] }
  27. tokio = { version = "1", default-features = false }
  28. tracing = { version = "0.1", default-features = false, features = [
  29. "attributes",
  30. "log",
  31. ] }
  32. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  33. futures = { version = "0.3.28", default-features = false }
  34. serde = { version = "1", default-features = false, features = ["derive"] }
  35. bip39 = "2.0"
  36. tower-http = { version = "0.4.4", features = ["cors", "compression-full"] }
  37. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  38. home = "0.5.5"
  39. url = "2.3"
  40. utoipa = { version = "4", optional = true }
  41. utoipa-swagger-ui = { version = "4", features = ["axum"], optional = true }
  42. rand = "0.8.5"
  43. [features]
  44. swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"]
  45. redis = ["cdk-axum/redis"]