diff options
author | 2025-06-01 20:17:57 +0100 | |
---|---|---|
committer | 2025-06-01 20:17:57 +0100 | |
commit | 33bb7130943b5f74b3b0f08c5e6d8f7c5e54d4c0 (patch) | |
tree | 0617888d360550508ede95aa12c00375cde4e70b /Cargo.lock | |
parent | 6ee4190a26f32bfa953302ee363ad3bb6c384ebb (diff) | |
download | macaw-web-33bb7130943b5f74b3b0f08c5e6d8f7c5e54d4c0.tar.gz macaw-web-33bb7130943b5f74b3b0f08c5e6d8f7c5e54d4c0.tar.bz2 macaw-web-33bb7130943b5f74b3b0f08c5e6d8f7c5e54d4c0.zip |
feat: switch to leptos-fetch for state management
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -1510,6 +1510,26 @@ dependencies = [ ] [[package]] +name = "leptos-fetch" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "094fee918af2bd8c6d67e9765db107e2b5d6306ca7f03bd63314eb5920e10142" +dependencies = [ + "chrono", + "chrono-humanize", + "codee", + "futures", + "leptos", + "parking_lot", + "paste", + "rustc_version", + "send_wrapper", + "task-local", + "tracing", + "web-sys", +] + +[[package]] name = "leptos_config" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1715,6 +1735,7 @@ dependencies = [ "indexmap", "jid", "leptos", + "leptos-fetch", "reactive_stores", "serde", "stylance", @@ -3075,6 +3096,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] +name = "task-local" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2c821daee0efdf6414970c8185a1c22e259a7ed87b2fd9f7d3c5f5503fd2863" +dependencies = [ + "pin-project-lite", +] + +[[package]] name = "tempfile" version = "3.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" |