Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [package]
  2. name = "cdk-common"
  3. version = "0.6.0"
  4. edition = "2021"
  5. description = "CDK common types and traits"
  6. rust-version = "1.63.0" # MSRV
  7. [features]
  8. default = ["mint", "wallet"]
  9. swagger = ["dep:utoipa", "cashu/swagger"]
  10. bench = []
  11. wallet = ["cashu/wallet"]
  12. mint = ["cashu/mint", "dep:uuid"]
  13. [dependencies]
  14. async-trait = "0.1"
  15. bitcoin = { version = "0.32.2", features = [
  16. "base64",
  17. "serde",
  18. "rand",
  19. "rand-std",
  20. ] }
  21. cashu = { path = "../cashu", default-features = false, version = "0.6.0" }
  22. cbor-diag = "0.1.12"
  23. ciborium = { version = "0.2.2", default-features = false, features = ["std"] }
  24. once_cell = "1.20.2"
  25. serde = { version = "1", features = ["derive"] }
  26. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  27. thiserror = "2"
  28. tracing = "0.1"
  29. url = "2.3"
  30. uuid = { version = "1", features = ["v4", "serde"], optional = true }
  31. utoipa = { version = "4", optional = true }
  32. futures = "0.3.31"
  33. anyhow = "1.0"
  34. serde_json = "1"
  35. serde_with = "3"
  36. [target.'cfg(target_arch = "wasm32")'.dependencies]
  37. instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
  38. [dev-dependencies]
  39. rand = "0.8.5"
  40. bip39 = "2.0"