From 3187de369b819bca1bcf69919202475838922a17 Mon Sep 17 00:00:00 2001 From: Jens Reimann Date: Tue, 19 Dec 2023 16:14:01 +0100 Subject: [PATCH] chore: allow using a newer version of the nested router --- Cargo.toml | 4 ++-- yew-oauth2-example/Cargo.toml | 2 +- yew-oauth2-redirect-example/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bf24063..f645c66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-oauth2" -version = "0.9.0" +version = "0.9.1" authors = ["Jens Reimann "] edition = "2021" license = "Apache-2.0" @@ -32,7 +32,7 @@ web-sys = { version = "0.3", features = [ ] } openidconnect = { version = "3.0", optional = true } -yew-nested-router = { version = "0.5", optional = true } +yew-nested-router = { version = ">=0.5, <0.7", optional = true } [features] # Enable for Yew nested router support diff --git a/yew-oauth2-example/Cargo.toml b/yew-oauth2-example/Cargo.toml index a893942..6116807 100644 --- a/yew-oauth2-example/Cargo.toml +++ b/yew-oauth2-example/Cargo.toml @@ -14,7 +14,7 @@ time = "0.3" wasm-bindgen = "0.2.79" wasm-logger = "0.2" yew = { version = "0.21", features = ["csr"] } -yew-nested-router = "0.5" +yew-nested-router = "0.6.1" openidconnect = { version = "3.0", optional = true } diff --git a/yew-oauth2-redirect-example/Cargo.toml b/yew-oauth2-redirect-example/Cargo.toml index 976093c..6ef46a2 100644 --- a/yew-oauth2-redirect-example/Cargo.toml +++ b/yew-oauth2-redirect-example/Cargo.toml @@ -13,7 +13,7 @@ time = "0.3" wasm-bindgen = "0.2.79" wasm-logger = "0.2" yew = { version = "0.21.0", features = ["csr"] } -yew-nested-router = "0.5" +yew-nested-router = "0.6.1" openidconnect = { version = "3.0", optional = true }