From e3be05c1eb488f87839c3a3551a53e000f46aea8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 04:18:01 +0000 Subject: [PATCH] Update yew requirement from 0.20 to 0.21 Updates the requirements on [yew](https://github.com/yewstack/yew) to permit the latest version. - [Release notes](https://github.com/yewstack/yew/releases) - [Changelog](https://github.com/yewstack/yew/blob/master/CHANGELOG.md) - [Commits](https://github.com/yewstack/yew/compare/yew-v0.20.0...yew-v0.21.0) --- updated-dependencies: - dependency-name: yew dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- examples/web_app/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 55ca7d29..450a7973 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ tokio = { version = "1", features = ["rt", "macros"] } # The following dependencies are required for examples wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4" -yew = "0.20" +yew = "0.21" lazy_static = "1.4" web-sys = "0.3" console_error_panic_hook = "0.1" diff --git a/examples/web_app/Cargo.toml b/examples/web_app/Cargo.toml index 89c1eb8a..752f74b8 100644 --- a/examples/web_app/Cargo.toml +++ b/examples/web_app/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"] serde_json = "1.0" wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4.18" -yew = {version="0.20", features = ["csr"]} +yew = {version="0.21", features = ["csr"]} meilisearch-sdk = {path="../.."} lazy_static = "1.4" serde = {version="1.0", features=["derive"]}