Cargo.toml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.63.0" # MSRV
  11. [features]
  12. http_subscription = ["cdk/http_subscription"]
  13. [dependencies]
  14. async-trait = "0.1"
  15. axum = "0.6.20"
  16. rand = "0.8.5"
  17. bip39 = { version = "2.0", features = ["rand"] }
  18. anyhow = "1"
  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. tower-http = { version = "0.4.4", features = ["cors"] }
  28. futures = { version = "0.3.28", default-features = false, features = [
  29. "executor",
  30. ] }
  31. once_cell = "1.19.0"
  32. uuid = { version = "1", features = ["v4"] }
  33. serde = "1"
  34. serde_json = "1"
  35. # ln-regtest-rs = { path = "../../../../ln-regtest-rs" }
  36. ln-regtest-rs = { git = "https://github.com/thesimplekid/ln-regtest-rs", rev = "f9e7bbbb" }
  37. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  38. tracing = { version = "0.1", default-features = false, features = [
  39. "attributes",
  40. "log",
  41. ] }
  42. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  43. tower-service = "0.3.3"
  44. tokio-tungstenite = "0.24.0"
  45. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  46. tokio = { version = "1", features = [
  47. "rt-multi-thread",
  48. "time",
  49. "macros",
  50. "sync",
  51. ] }
  52. [target.'cfg(target_arch = "wasm32")'.dependencies]
  53. tokio = { version = "1", features = ["rt", "macros", "sync", "time"] }
  54. getrandom = { version = "0.2", features = ["js"] }
  55. instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
  56. [dev-dependencies]
  57. bip39 = { version = "2.0", features = ["rand"] }
  58. anyhow = "1"
  59. cdk = { path = "../cdk", features = ["mint", "wallet"] }
  60. cdk-axum = { path = "../cdk-axum" }
  61. cdk-fake-wallet = { path = "../cdk-fake-wallet" }
  62. tower-http = { version = "0.4.4", features = ["cors"] }