From 5e4bf05e1edc412ef33bc325f852175914e63214 Mon Sep 17 00:00:00 2001 From: Matt Briggs Date: Tue, 16 Jun 2020 10:43:08 -0700 Subject: [PATCH] updog and update_metadata: update tough to v0.6.0 --- sources/Cargo.lock | 9 +++++---- sources/updater/update_metadata/Cargo.toml | 2 +- sources/updater/updog/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/sources/Cargo.lock b/sources/Cargo.lock index a694671e66d..b2e7b407e46 100644 --- a/sources/Cargo.lock +++ b/sources/Cargo.lock @@ -2561,7 +2561,7 @@ dependencies = [ [[package]] name = "tough" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2576,6 +2576,7 @@ dependencies = [ "snafu 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2693,7 +2694,7 @@ dependencies = [ "serde_json 1.0.53 (registry+https://github.com/rust-lang/crates.io-index)", "serde_plain 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "snafu 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tough 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tough 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2719,7 +2720,7 @@ dependencies = [ "structopt 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tough 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tough 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "update_metadata 0.1.0", "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3164,7 +3165,7 @@ dependencies = [ "checksum tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "571da51182ec208780505a32528fc5512a8fe1443ab960b3f2f3ef093cd16930" "checksum tokio-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499" "checksum toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a" -"checksum tough 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1ee58e5a83d32e6ef9c7357da5d2b7a2e536a660044705f111eaab6f0a4dab78" +"checksum tough 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "399281f099d94187b40b97aa14f850258918ed56e3628621095984c69bfdd96b" "checksum tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860" "checksum trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2a7f3a2ab8a919f5eca52a468866a67ed7d3efa265d48a652a9a3452272b413f" "checksum trust-dns-resolver 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6f90b1502b226f8b2514c6d5b37bafa8c200d7ca4102d57dc36ee0f3b7a04a2f" diff --git a/sources/updater/update_metadata/Cargo.toml b/sources/updater/update_metadata/Cargo.toml index 56b8f5a8aff..ac056ce5a13 100644 --- a/sources/updater/update_metadata/Cargo.toml +++ b/sources/updater/update_metadata/Cargo.toml @@ -17,7 +17,7 @@ serde = { version = "1.0.100", features = ["derive"] } serde_json = "1.0.40" serde_plain = "0.3.0" snafu = "0.6.0" -tough = "0.5.0" +tough = "0.6.0" [lib] name = "update_metadata" diff --git a/sources/updater/updog/Cargo.toml b/sources/updater/updog/Cargo.toml index f861fa0d9f6..dd3d62687f7 100644 --- a/sources/updater/updog/Cargo.toml +++ b/sources/updater/updog/Cargo.toml @@ -22,7 +22,7 @@ signpost = { path = "../signpost" } simplelog = "0.7" snafu = "0.6.0" toml = "0.5.1" -tough = { version = "0.5.0", features = ["http"] } +tough = { version = "0.6.0", features = ["http"] } update_metadata = { path = "../update_metadata" } structopt = "0.3" migrator = { path = "../../api/migration/migrator" }