| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- [package]
- name = "restez"
- version = "0.1.0"
- description = "Rest made easy"
- authors = ["biblius"]
- edition = "2024"
- [dependencies]
- serde = { version = "1.0.228", features = ["derive"] }
- serde_json = "1.0.145"
- sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio"] }
- reqwest = { version = "0.12.15", features = [
- "multipart",
- "json",
- "charset",
- "stream",
- ] }
- tokio = { version = "1.44.1", features = ["macros"] }
- # boa_engine = "0.19.0"
- nom = "8.0.0"
- # Because 0.13.1 does not have widget::responsive even though
- # it is there in the docs???????
- # iced = { version = "0.14.0-dev", features = ["tokio", "debug"] }
- iced = { version = "0.14.0-dev", features = ["tokio", "advanced"] }
- iced_aw = { version = "0.13.0-dev", features = [
- "menu",
- "quad",
- "tabs",
- "tab_bar",
- ] }
- tracing = "0.1.41"
- tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
- thiserror = "2.0.17"
- mime = "0.3.17"
- [patch.crates-io]
- iced = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
- iced_core = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
- iced_widget = { git = "https://github.com/iced-rs/iced.git", rev = "26dfcb6d42a5cdd38ef0f75000484eaf4693f89a" }
- iced_aw = { git = "https://github.com/iced-rs/iced_aw.git", rev = "f49e058684b6e03a49b94c0ae6d9fb40db6ef2a2" }
|