Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "restez"
  3. version = "0.1.0"
  4. description = "Rest made easy"
  5. authors = ["biblius"]
  6. edition = "2024"
  7. [dependencies]
  8. serde = { version = "1.0.228", features = ["derive"] }
  9. serde_json = "1.0.145"
  10. sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio"] }
  11. reqwest = { version = "0.12.15", features = [
  12. "multipart",
  13. "json",
  14. "charset",
  15. "stream",
  16. ] }
  17. tokio = { version = "1.44.1", features = ["macros"] }
  18. # boa_engine = "0.19.0"
  19. nom = "8.0.0"
  20. # Because 0.13.1 does not have widget::responsive even though
  21. # it is there in the docs???????
  22. # iced = { version = "0.14.0-dev", features = ["tokio", "debug"] }
  23. iced = { version = "0.14.0-dev", features = ["tokio", "advanced"] }
  24. iced_aw = { version = "0.13.0-dev", features = [
  25. "menu",
  26. "quad",
  27. "tabs",
  28. "tab_bar",
  29. ] }
  30. tracing = "0.1.41"
  31. tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
  32. thiserror = "2.0.17"
  33. mime = "0.3.17"
  34. [patch.crates-io]
  35. iced = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
  36. iced_core = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
  37. iced_widget = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
  38. iced_aw = { git = "https://github.com/iced-rs/iced_aw.git", rev = "f49e058684b6e03a49b94c0ae6d9fb40db6ef2a2" }