From 0409d8edadee9acc37e9d62180e45d61aee395ef Mon Sep 17 00:00:00 2001 From: yaroslav k Date: Sun, 16 Aug 2026 11:28:19 +0300 Subject: [PATCH] add web-sys as a direct dependency Needed for localStorage, FileReader and Blob download in the client. The features were already enabled transitively by leptos-use; this makes the dependency explicit. --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 9078f1f..306ef2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -258,6 +258,7 @@ dependencies = [ "serde_json", "thiserror 2.0.19", "wasm-bindgen", + "web-sys", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 0f4640b..bd59075 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,6 +32,7 @@ console_log = "1.0.0" num-traits = "0.2.19" num-format = "0.4.4" js-sys = "=0.3.103" +web-sys = "=0.3.103" seq-macro = "0.3.6"