Update gloo requirement from 0.4 to 0.6 (#2337)

* Update gloo requirement from 0.4 to 0.6

Updates the requirements on [gloo](https://github.com/rustwasm/gloo) to permit the latest version.
- [Release notes](https://github.com/rustwasm/gloo/releases)
- [Commits](https://github.com/rustwasm/gloo/commits)

---
updated-dependencies:
- dependency-name: gloo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix ci

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: voidpumpkin <32368314+voidpumpkin@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2022-01-10 23:17:13 +02:00 committed by GitHub
parent 7d04f09b4a
commit 3677930fc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

View File

@ -12,7 +12,7 @@ getrandom = { version = "0.2", features = ["js"] }
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
yew = { path = "../../packages/yew" }
gloo = "0.4"
gloo = "0.6"
[dependencies.web-sys]
version = "0.3"

View File

@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
js-sys = "0.3"
yew = { path = "../../packages/yew" }
slab = "0.4.3"
gloo = "0.4"
gloo = "0.6"
wasm-bindgen = "0.2"
gloo-utils = "0.1"

View File

@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
serde = { version = "1.0", features = ["derive"] }
strum = "0.23"
strum_macros = "0.23"
gloo = "0.4"
gloo = "0.6"
yew = { path = "../../packages/yew" }
[dependencies.web-sys]

View File

@ -8,5 +8,5 @@ license = "MIT OR Apache-2.0"
[dependencies]
yew = { path = "../../packages/yew" }
js-sys = "0.3"
gloo = "0.4"
gloo = "0.6"
wasm-bindgen = "0.2"

View File

@ -11,7 +11,7 @@ strum_macros = "0.23"
serde = "1"
serde_derive = "1"
yew = { path = "../../packages/yew" }
gloo = "0.4"
gloo = "0.6"
[dependencies.web-sys]
version = "0.3"

View File

@ -483,6 +483,6 @@ error[E0277]: the trait bound `Cow<'static, str>: From<{integer}>` is not satisf
<Cow<'a, CStr> as From<&'a CString>>
<Cow<'a, CStr> as From<CString>>
<Cow<'a, OsStr> as From<&'a OsStr>>
and 11 others
and 14 others
= note: required because of the requirements on the impl of `Into<Cow<'static, str>>` for `{integer}`
note: required by `into`

View File

@ -20,7 +20,7 @@ yew-router-macro = { version = "0.16.0", path = "../yew-router-macro" }
wasm-bindgen = "0.2"
js-sys = "0.3"
gloo = { version = "0.5", features = ["futures"] }
gloo = { version = "0.6", features = ["futures"] }
route-recognizer = "0.3"
serde = "1"

View File

@ -18,7 +18,7 @@ rust-version = "1.56.0"
[dependencies]
console_error_panic_hook = "0.1"
gloo = "0.4"
gloo = "0.6"
gloo-utils = "0.1.0"
indexmap = { version = "1", features = ["std"] }
js-sys = "0.3"
@ -64,7 +64,7 @@ features = [
[dev-dependencies]
easybench-wasm = "0.2"
wasm-bindgen-test = "0.3"
gloo = { version = "0.4", features = ["futures"] }
gloo = { version = "0.6", features = ["futures"] }
[features]
doc_test = []