From 4e9f224d63ab3d9ce1b33ee26962d31758eca1a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Mar 2023 04:59:54 +0000 Subject: [PATCH] Update yew requirement from 0.18 to 0.20 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/0.18.0...yew-v0.20.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 019abff6..caab7403 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,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.18" +yew = "0.20" 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 9c9f6107..a4f9748d 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 = "0.18" +yew = "0.20" meilisearch-sdk = {path="../.."} lazy_static = "1.4" serde = {version="1.0", features=["derive"]}