diff --git a/Cargo.toml b/Cargo.toml index 4565dd9..6561c80 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ web-sys = { version = "0.3", features = [ ] } openidconnect = { version = "3.0", optional = true } -yew-nested-router = { version = "0.4", optional = true } +yew-nested-router = { version = "0.5", optional = true } [features] # Enable for Yew nested router support diff --git a/README.md b/README.md index bd52c6c..a98dbca 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ yew-oauth2 = "0.8" By default, the `router` integration is disabled, you can enable it using: ```toml -yew-oauth2 = { version = "0.7", features = ["router"] } +yew-oauth2 = { version = "0.8", features = ["router"] } ``` ## OpenID Connect diff --git a/yew-oauth2-example/Cargo.toml b/yew-oauth2-example/Cargo.toml index b7908fa..a893942 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.4" +yew-nested-router = "0.5" openidconnect = { version = "3.0", optional = true } diff --git a/yew-oauth2-redirect-example/Cargo.toml b/yew-oauth2-redirect-example/Cargo.toml index adfc746..976093c 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.4" +yew-nested-router = "0.5" openidconnect = { version = "3.0", optional = true }