Skip to content

Commit

Permalink
chore: allow using a newer version of the nested router
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Dec 19, 2023
1 parent 9fdc57e commit 3187de3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-oauth2"
version = "0.9.0"
version = "0.9.1"
authors = ["Jens Reimann <jreimann@redhat.com>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion yew-oauth2-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
2 changes: 1 addition & 1 deletion yew-oauth2-redirect-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down

0 comments on commit 3187de3

Please sign in to comment.