Cargo.toml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [package]
  2. name = "cdk-integration-tests"
  3. version = "0.7.0"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "Core Cashu Development Kit library implementing the Cashu protocol"
  7. license = "MIT"
  8. homepage = "https://github.com/cashubtc/cdk"
  9. repository = "https://github.com/cashubtc/cdk.git"
  10. rust-version = "1.75.0" # MSRV
  11. [features]
  12. http_subscription = ["cdk/http_subscription"]
  13. [dependencies]
  14. async-trait.workspace = true
  15. axum.workspace = true
  16. rand.workspace = true
  17. bip39 = { workspace = true, features = ["rand"] }
  18. anyhow.workspace = true
  19. cashu = { path = "../cashu", features = ["mint", "wallet"] }
  20. cdk = { path = "../cdk", features = ["mint", "wallet"] }
  21. cdk-cln = { path = "../cdk-cln" }
  22. cdk-lnd = { path = "../cdk-lnd" }
  23. cdk-axum = { path = "../cdk-axum" }
  24. cdk-sqlite = { path = "../cdk-sqlite" }
  25. cdk-redb = { path = "../cdk-redb" }
  26. cdk-fake-wallet = { path = "../cdk-fake-wallet" }
  27. futures = { workspace = true, default-features = false, features = [
  28. "executor",
  29. ] }
  30. once_cell.workspace = true
  31. uuid.workspace = true
  32. serde.workspace = true
  33. serde_json.workspace = true
  34. # ln-regtest-rs = { path = "../../../../ln-regtest-rs" }
  35. ln-regtest-rs = { git = "https://github.com/thesimplekid/ln-regtest-rs", rev = "ed24716" }
  36. lightning-invoice.workspace = true
  37. tracing.workspace = true
  38. tracing-subscriber.workspace = true
  39. tokio-tungstenite.workspace = true
  40. tower-http = { workspace = true, features = ["cors"] }
  41. tower-service = "0.3.3"
  42. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  43. tokio.workspace = true
  44. [target.'cfg(target_arch = "wasm32")'.dependencies]
  45. tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
  46. getrandom = { version = "0.2", features = ["js"] }
  47. instant = { workspace = true, features = ["wasm-bindgen", "inaccurate"] }
  48. [dev-dependencies]
  49. bip39 = { workspace = true, features = ["rand"] }
  50. anyhow.workspace = true
  51. cdk = { path = "../cdk", features = ["mint", "wallet"] }
  52. cdk-axum = { path = "../cdk-axum" }
  53. cdk-fake-wallet = { path = "../cdk-fake-wallet" }
  54. tower-http = { workspace = true, features = ["cors"] }