Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "cashu"
  3. version = "0.7.1"
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. description = "Cashu shared types and crypto utilities, used as the foundation for the CDK and their crates"
  7. homepage = "https://github.com/cashubtc/cdk"
  8. repository = "https://github.com/cashubtc/cdk.git"
  9. rust-version = "1.75.0" # MSRV
  10. license.workspace = true
  11. [features]
  12. default = ["mint", "wallet"]
  13. swagger = ["dep:utoipa"]
  14. mint = ["dep:uuid"]
  15. wallet = []
  16. bench = []
  17. [dependencies]
  18. uuid = { workspace = true, optional = true }
  19. bitcoin.workspace = true
  20. cbor-diag.workspace = true
  21. ciborium.workspace = true
  22. once_cell.workspace = true
  23. serde.workspace = true
  24. lightning-invoice.workspace = true
  25. thiserror.workspace = true
  26. tracing.workspace = true
  27. url.workspace = true
  28. utoipa = { workspace = true, optional = true }
  29. serde_json.workspace = true
  30. serde_with.workspace = true
  31. [target.'cfg(target_arch = "wasm32")'.dependencies]
  32. instant = { workspace = true, features = ["wasm-bindgen", "inaccurate"] }
  33. [dev-dependencies]
  34. bip39.workspace = true
  35. uuid.workspace = true