diff --git a/examples/boids/Cargo.toml b/examples/boids/Cargo.toml index c1d6c8849d8..290f2304b60 100644 --- a/examples/boids/Cargo.toml +++ b/examples/boids/Cargo.toml @@ -7,6 +7,6 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0" -rand = { version = "0.7", features = ["wasm-bindgen"] } +rand = { version = "0.8", features = ["wasm-bindgen"] } serde = { version = "1.0", features = ["derive"] } yew = { path = "../../yew" } diff --git a/examples/game_of_life/Cargo.toml b/examples/game_of_life/Cargo.toml index 98127a9fdbd..621eb3ae5d0 100644 --- a/examples/game_of_life/Cargo.toml +++ b/examples/game_of_life/Cargo.toml @@ -10,6 +10,6 @@ edition = "2018" [dependencies] log = "0.4" -rand = { version = "0.7", features = ["wasm-bindgen"] } +rand = { version = "0.8", features = ["wasm-bindgen"] } wasm-logger = "0.2" yew = { path = "../../yew" } diff --git a/examples/keyed_list/Cargo.toml b/examples/keyed_list/Cargo.toml index a64bccb994b..c5d405e490b 100644 --- a/examples/keyed_list/Cargo.toml +++ b/examples/keyed_list/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] log = "0.4" instant = { version = "0.1", features = ["wasm-bindgen"] } -rand = { version = "0.7", features = ["wasm-bindgen"] } +rand = { version = "0.8", features = ["wasm-bindgen"] } wasm-logger = "0.2" yew = { path = "../../yew" } yewtil = { path = "../../yewtil" } diff --git a/examples/router/Cargo.toml b/examples/router/Cargo.toml index c9a3e86f25f..cb60fb71da7 100644 --- a/examples/router/Cargo.toml +++ b/examples/router/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" instant = { version = "0.1", features = ["wasm-bindgen"] } lipsum = "0.7" log = "0.4" -rand = { version = "0.7", features = ["small_rng", "wasm-bindgen"] } +rand = { version = "0.8", features = ["small_rng", "wasm-bindgen"] } wasm-logger = "0.2" yew = { path = "../../yew" } yew-router = { path = "../../yew-router" }