From 1f278646551b2fe2012ca3a2d881cf3102d885fe Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 17 Mar 2021 13:29:44 +0000 Subject: [PATCH] build(deps): bump displaydoc from 0.1.6 to 0.2.0 Bumps [displaydoc](https://github.com/yaahc/displaydoc) from 0.1.6 to 0.2.0. - [Release notes](https://github.com/yaahc/displaydoc/releases) - [Changelog](https://github.com/yaahc/displaydoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/yaahc/displaydoc/commits/v0.2.0) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 21 ++++++++++++++++----- client/Cargo.toml | 2 +- core/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9663c72..eab495a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -95,7 +95,7 @@ dependencies = [ "anomaly", "armistice_schema", "consts", - "displaydoc", + "displaydoc 0.2.0", "rusb", "veriform", ] @@ -108,7 +108,7 @@ dependencies = [ "aes-gcm-siv", "armistice_schema", "block-cipher", - "displaydoc", + "displaydoc 0.2.0", "ecdsa", "heapless", ] @@ -341,9 +341,20 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6269d127174b18c665e683e23c2c55d3735fadbec4181c7c70b0450b764bfa5" +checksum = "adc2ab4d5a16117f9029e9a6b5e4e79f4c67f6519bc134210d4d4a04ba31f41b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "displaydoc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f98e1bbbcbb1b2646d6e900da42974b641eb784851adcd4f0ae4c07c8bc7b42b" dependencies = [ "proc-macro2", "quote", @@ -905,7 +916,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c85788e7c9afe08a8691e1658749e0a92752f3ecbc631146643f073efcc5953f" dependencies = [ "digest", - "displaydoc", + "displaydoc 0.1.7", "heapless", "log", "sha2", diff --git a/client/Cargo.toml b/client/Cargo.toml index aa990ef..cb21362 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -18,7 +18,7 @@ keywords = ["bls", "ed25519", "ecdsa", "hsm"] anomaly = "0.2" armistice_schema = { version = "0", path = "../schema" } consts = { optional = true, git = "https://github.com/iqlusioninc/usbarmory.rs.git", branch = "develop" } -displaydoc = { version = "0.1", default-features = false } +displaydoc = { version = "0.2", default-features = false } rusb = { version = "0.6", optional = true } veriform = "0.2" diff --git a/core/Cargo.toml b/core/Cargo.toml index 7f2397f..d49a9fd 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -18,7 +18,7 @@ keywords = ["bls", "ed25519", "ecdsa", "hsm"] aes-gcm-siv = { version = "0.5", default-features = false, features = ["heapless"] } armistice_schema = { version = "0", path = "../schema" } block-cipher = "0.7" -displaydoc = { version = "0.1", default-features = false } +displaydoc = { version = "0.2", default-features = false } ecdsa = { version = "0.6", optional = true, default-features = false, features = ["p256"] } heapless = "0.5"