Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [package]
  2. name = "cdk-integration-tests"
  3. version = "0.2.0"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "Core Cashu Development Kit library implementing the Cashu protocol"
  7. homepage.workspace = true
  8. repository.workspace = true
  9. rust-version.workspace = true # MSRV
  10. license.workspace = true
  11. [features]
  12. [dependencies]
  13. axum.workspace = true
  14. rand.workspace = true
  15. bip39 = { workspace = true, features = ["rand"] }
  16. anyhow.workspace = true
  17. cdk = { workspace = true, features = ["mint", "wallet"] }
  18. cdk-axum.workspace = true
  19. cdk-fake-wallet.workspace = true
  20. tower-http.workspace = true
  21. futures.workspace = true
  22. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  23. tokio = { workspace = true, features = [
  24. "rt-multi-thread",
  25. "time",
  26. "macros",
  27. "sync",
  28. ] }
  29. [target.'cfg(target_arch = "wasm32")'.dependencies]
  30. tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
  31. getrandom = { version = "0.2", features = ["js"] }
  32. instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
  33. [dev-dependencies]
  34. axum.workspace = true
  35. rand.workspace = true
  36. bip39 = { workspace = true, features = ["rand"] }
  37. anyhow.workspace = true
  38. cdk = { workspace = true, features = ["mint", "wallet"] }
  39. cdk-axum.workspace = true
  40. cdk-fake-wallet.workspace = true
  41. tower-http.workspace = true
  42. # cdk-redb.workspace = true
  43. # cdk-sqlite.workspace = true