build(deps): bump url from 2.1.1 to 2.2.0

Bumps [url](https://github.com/servo/rust-url) from 2.1.1 to 2.2.0.
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/compare/v2.1.1...v2.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
dependabot-preview[bot] 2020-11-06 07:53:08 +00:00 committed by Mike Welsh
parent dc74d3baec
commit fcf665fbe9
4 changed files with 20 additions and 9 deletions

23
Cargo.lock generated
View File

@ -1235,6 +1235,16 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00"
dependencies = [
"matches",
"percent-encoding 2.1.0",
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
@ -2944,7 +2954,7 @@ dependencies = [
"smallvec 1.4.2",
"swf",
"thiserror",
"url 2.1.1",
"url 2.2.0",
"weak-table",
]
@ -2967,7 +2977,7 @@ dependencies = [
"lyon",
"ruffle_core",
"ruffle_render_wgpu",
"url 2.1.1",
"url 2.2.0",
"webbrowser",
"winapi 0.3.9",
"winit",
@ -3073,7 +3083,7 @@ dependencies = [
"ruffle_render_canvas",
"ruffle_render_webgl",
"ruffle_web_common",
"url 2.1.1",
"url 2.2.0",
"wasm-bindgen",
"wasm-bindgen-futures",
"wasm-bindgen-test",
@ -3660,7 +3670,7 @@ dependencies = [
"lazy_static",
"qstring",
"rustls",
"url 2.1.1",
"url 2.2.0",
"webpki",
"webpki-roots",
]
@ -3678,10 +3688,11 @@ dependencies = [
[[package]]
name = "url"
version = "2.1.1"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
dependencies = [
"form_urlencoded",
"idna 0.2.0",
"matches",
"percent-encoding 2.1.0",

View File

@ -25,7 +25,7 @@ smallvec = "1.4.2"
num_enum = "0.5.1"
quick-xml = "0.18.1"
downcast-rs = "1.2.0"
url = "2.1.0"
url = "2.2.0"
weak-table = "0.3.0"
percent-encoding = "2.1.0"
thiserror = "1.0"

View File

@ -20,7 +20,7 @@ lyon = "0.16.2"
dasp = {version = "0.11.0", git = "https://github.com/RustAudio/dasp", rev = "f05a703", features = ["interpolate", "interpolate-linear", "signal"]}
winit = "0.23.0"
webbrowser = "0.5.5"
url = "2.1.1"
url = "2.2.0"
clipboard = "0.5.0"
dirs = "3.0"
isahc = "0.9.11"

View File

@ -31,7 +31,7 @@ log = "0.4"
ruffle_render_canvas = { path = "../render/canvas", optional = true }
ruffle_web_common = { path = "common" }
ruffle_render_webgl = { path = "../render/webgl", optional = true }
url = "2.1.1"
url = "2.2.0"
wasm-bindgen = "0.2.65"
wasm-bindgen-futures = "0.4.18"
chrono = { version = "0.4", features = ["wasmbind"] }