Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [package]
  2. name = "cashu-sdk"
  3. version = "0.1.0"
  4. edition = "2021"
  5. authors = ["thesimplekid"]
  6. homepage.workspace = true
  7. repository.workspace = true
  8. rust-version.workspace = true # MSRV
  9. license.workspace = true
  10. [features]
  11. default = ["mint", "wallet"]
  12. mint = ["cashu/mint"]
  13. blocking = ["dep:once_cell"]
  14. wallet = ["cashu/wallet", "dep:minreq", "dep:once_cell"]
  15. # Fix: Should be minreq or gloo
  16. # [target.'cfg(not(target_arch = "wasm32"))'.features]
  17. # wallet = ["cashu/wallet", "minreq", "once_cell"]
  18. # [target.'cfg(target_arch = "wasm32")'.features]
  19. # wallet = ["cashu/wallet", "gloo", "once_cell"]
  20. [dependencies]
  21. cashu = { path = "../cashu" }
  22. serde = { workspace = true }
  23. serde_json = { workspace = true }
  24. url = { workspace = true }
  25. tracing = { workspace = true }
  26. futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
  27. once_cell = { version = "1.17", optional = true }
  28. [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
  29. tokio = { workspace = true, features = ["rt-multi-thread", "time", "macros", "sync"] }
  30. minreq = { version = "2.7.0", optional = true, features = ["json-using-serde", "https"] }
  31. [target.'cfg(target_arch = "wasm32")'.dependencies]
  32. tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
  33. gloo = { version = "0.10.0", features = ["net"]}