From 9111859a6b83b3c1a6276090c0185edf7cd258e9 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2019 12:13:03 +0000 Subject: [PATCH] Update miscreant requirement from 0.4 to 0.5 Updates the requirements on [miscreant](https://github.com/miscreant/miscreant.rs) to permit the latest version. - [Release notes](https://github.com/miscreant/miscreant.rs/releases) - [Changelog](https://github.com/miscreant/miscreant.rs/blob/develop/CHANGES.md) - [Commits](https://github.com/miscreant/miscreant.rs/compare/v0.4.0...v0.5.2) Signed-off-by: dependabot-preview[bot] --- crates/crypto/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/crypto/Cargo.toml b/crates/crypto/Cargo.toml index 4f64700..10ef71c 100644 --- a/crates/crypto/Cargo.toml +++ b/crates/crypto/Cargo.toml @@ -11,7 +11,7 @@ ed25519-dalek = "1.0.0-pre.1" chacha20-poly1305-aead = "0.1" [target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies] -miscreant = { version = "0.4", features = ["default"] } +miscreant = { version = "0.5", features = ["default"] } [target.'cfg(not(any(target_arch = "x86_64", target_arch = "x86")))'.dependencies] miscreant = { version = "0.4", features = ["default", "soft-aes"] }