diff --git a/Cargo.toml b/Cargo.toml index ebabae4..550b4b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ web_sys = [ [dependencies] log = "0.4.8" serde = { version = "1.0.104", features = ["derive"] } -yew = { version = "0.14.0", features = ["services", "agent"], optional = true } +yew = { version = "0.15.0", features = ["services", "agent"], optional = true } #yew = {git = "https://github.com/yewstack/yew", branch = "web-sys", optional = true, features = ["services", "agent"]} yew-router-route-parser = {path = "crates/yew_router_route_parser", version = "0.11.0"} yew-router-macro = {path = "crates/yew_router_macro", version = "0.11.0"} diff --git a/examples/guide/Cargo.toml b/examples/guide/Cargo.toml index caeae8a..f866c1b 100644 --- a/examples/guide/Cargo.toml +++ b/examples/guide/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -yew = {version = "0.14.0", features = ["services", "agent", "std_web"]} +yew = {version = "0.15.0", features = ["services", "agent", "std_web"]} #yew = {git = "https://github.com/yewstack/yew", branch = "web-sys", features = ["std_web"]} yew-router = {path = "../../", features = ["std_web"]} #web_logger = "0.2" diff --git a/examples/minimal/Cargo.toml b/examples/minimal/Cargo.toml index 5f14988..217f5dd 100644 --- a/examples/minimal/Cargo.toml +++ b/examples/minimal/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -yew = {version="0.14.0", features = ["std_web"]} +yew = {version="0.15.0", features = ["std_web"]} #yew = {git = "https://github.com/yewstack/yew", branch = "web-sys", features = ["std_web"]} yew-router = {path = "../../", features = ["std_web"]} web_logger = "0.2" diff --git a/examples/router_component/Cargo.toml b/examples/router_component/Cargo.toml index a99a903..b6f6efd 100644 --- a/examples/router_component/Cargo.toml +++ b/examples/router_component/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Henry Zimmerman "] edition="2018" [dependencies] -yew = {version="0.14.0", features = ["std_web"]} +yew = {version="0.15.0", features = ["std_web"]} #yew = {git = "https://github.com/yewstack/yew", branch = "web-sys", features = ["std_web"]} yew-router = {path = "../../", features = ["std_web"]} web_logger = "0.2"