Cargo.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 = ["multipart", "json", "charset"] }
  12. tokio = { version = "1.44.1", features = ["macros"] }
  13. # boa_engine = "0.19.0"
  14. nom = "8.0.0"
  15. # Because 0.13.1 does not have widget::responsive even though
  16. # it is there in the docs???????
  17. # iced = { version = "0.14.0-dev", features = ["tokio", "debug"] }
  18. iced = { version = "0.14.0-dev", features = ["tokio", "advanced"] }
  19. iced_aw = { version = "0.13.0-dev", features = [
  20. "menu",
  21. "quad",
  22. "tabs",
  23. "tab_bar",
  24. ] }
  25. tracing = "0.1.41"
  26. tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
  27. thiserror = "2.0.17"
  28. mime = "0.3.17"
  29. [patch.crates-io]
  30. iced = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
  31. iced_core = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
  32. iced_widget = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
  33. iced_aw = { git = "https://github.com/iced-rs/iced_aw.git", rev = "f49e058684b6e03a49b94c0ae6d9fb40db6ef2a2" }