Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [workspace]
  2. members = [
  3. "bindings/cdk-js",
  4. "crates/cdk",
  5. "crates/cdk-redb",
  6. "crates/cdk-rexie",
  7. ]
  8. resolver = "2"
  9. [workspace.package]
  10. license = "MIT"
  11. homepage = "https://github.com/cashubtc/cdk"
  12. repository = "https://github.com/cashubtc/cdk.git"
  13. rust-version = "1.70.0" # MSRV
  14. [workspace.metadata]
  15. authors = ["CDK Developers"]
  16. edition = "2021"
  17. description = "Cashu Development Kit"
  18. readme = "README.md"
  19. repository = "https://github.com/cashubtc/cdk"
  20. license-file = "LICENSE"
  21. keywords = ["bitcoin", "e-cash", "cashu"]
  22. [workspace.dependencies]
  23. async-trait = "0.1.74"
  24. cdk = { path = "./crates/cdk", default-features = false }
  25. cdk-rexie = { path = "./crates/cdk-rexie", default-features = false }
  26. cdk-redb = { path = "./crates/cdk-redb", default-features = false }
  27. tokio = { version = "1.32", default-features = false }
  28. thiserror = "1"
  29. tracing = { version = "0.1", default-features = false, features = ["attributes"] }
  30. serde = { version = "1", default-features = false, features = ["derive"] }
  31. serde_json = "1"
  32. serde-wasm-bindgen = { version = "0.6.5", default-features = false }
  33. web-sys = { version = "0.3.68", default-features = false, features = ["console"] }
  34. uniffi = { version = "0.27.1", default-features = false }
  35. [profile]
  36. [profile.ci]
  37. inherits = "dev"
  38. incremental = false
  39. debug = "line-tables-only"
  40. lto = "off"