Cargo.toml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "cdk-mintd"
  3. version = "0.4.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.4.0", default-features = false, features = ["mint"] }
  15. cdk-redb = { path = "../cdk-redb", version = "0.4.0", default-features = false, features = ["mint"] }
  16. cdk-sqlite = { path = "../cdk-sqlite", version = "0.4.0", default-features = false, features = ["mint"] }
  17. cdk-cln = { path = "../cdk-cln", version = "0.4.0", default-features = false }
  18. cdk-lnbits = { path = "../cdk-lnbits", version = "0.4.0", default-features = false }
  19. cdk-phoenixd = { path = "../cdk-phoenixd", version = "0.4.0", default-features = false }
  20. cdk-lnd = { path = "../cdk-lnd", version = "0.4.0", default-features = false }
  21. cdk-fake-wallet = { path = "../cdk-fake-wallet", version = "0.4.0", default-features = false }
  22. cdk-strike = { path = "../cdk-strike", version = "0.4.0" }
  23. cdk-axum = { path = "../cdk-axum", version = "0.4.0", default-features = false }
  24. config = { version = "0.13.3", features = ["toml"] }
  25. clap = { version = "4.4.8", features = ["derive", "env", "default"] }
  26. tokio = { version = "1", default-features = false }
  27. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  28. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  29. futures = { version = "0.3.28", default-features = false }
  30. serde = { version = "1", default-features = false, features = ["derive"] }
  31. bip39 = "2.0"
  32. tower-http = { version = "0.4.4", features = ["cors"] }
  33. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  34. home = "0.5.5"
  35. url = "2.3"