From 33f202584483211c38a6f224faf17ab51355dab3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jul 2023 12:06:45 +0000 Subject: [PATCH] Update gloo requirement from 0.8 to 0.9 Updates the requirements on [gloo](https://github.com/rustwasm/gloo) to permit the latest version. - [Release notes](https://github.com/rustwasm/gloo/releases) - [Changelog](https://github.com/rustwasm/gloo/blob/master/CHANGELOG.md) - [Commits](https://github.com/rustwasm/gloo/compare/0.8.0...0.9.0) --- updated-dependencies: - dependency-name: gloo dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- packages/yew-router/Cargo.toml | 2 +- packages/yew/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/yew-router/Cargo.toml b/packages/yew-router/Cargo.toml index 54d91714..7c987c21 100644 --- a/packages/yew-router/Cargo.toml +++ b/packages/yew-router/Cargo.toml @@ -17,7 +17,7 @@ yew-router-macro = { version = "0.16.0", path = "../yew-router-macro" } wasm-bindgen = "0.2" js-sys = "0.3" -gloo = { version = "0.8", features = ["futures"] } +gloo = { version = "0.9", features = ["futures"] } route-recognizer = "0.3" serde = "1" serde_urlencoded = "0.7.1" diff --git a/packages/yew/Cargo.toml b/packages/yew/Cargo.toml index 5652a613..3df9a301 100644 --- a/packages/yew/Cargo.toml +++ b/packages/yew/Cargo.toml @@ -18,7 +18,7 @@ rust-version = "1.60.0" [dependencies] console_error_panic_hook = "0.1" -gloo = "0.8" +gloo = "0.9" indexmap = { version = "1", features = ["std"] } js-sys = "0.3" slab = "0.4" @@ -82,7 +82,7 @@ once_cell = "1" [dev-dependencies] wasm-bindgen-test = "0.3" -gloo = { version = "0.8", features = ["futures"] } +gloo = { version = "0.9", features = ["futures"] } wasm-bindgen-futures = "0.4" rustversion = "1" trybuild = "1"