From 6a25aaf6b90e6eb332e6810be3b3411e188cae20 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 6 Nov 2020 07:53:13 +0000 Subject: [PATCH] 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] --- Cargo.lock | 15 +++++++++++++-- vmm/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b28ab4477..f4c2ef0b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -346,6 +346,16 @@ dependencies = [ "synstructure", ] +[[package]] +name = "form_urlencoded" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00" +dependencies = [ + "matches", + "percent-encoding", +] + [[package]] name = "fuchsia-cprng" version = "0.1.1" @@ -1406,10 +1416,11 @@ checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" [[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", "matches", "percent-encoding", diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index d39cbe822..41692f549 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -38,7 +38,7 @@ serde_json = ">=1.0.9" signal-hook = "0.1.16" tempfile = "3.1.0" thiserror = "1.0" -url = "2.1.1" +url = "2.2.0" vfio-ioctls = { git = "https://github.com/cloud-hypervisor/vfio-ioctls", branch = "ch" } virtio-devices = { path = "../virtio-devices" } vm-allocator = { path = "../vm-allocator" }