From 495968da22590373be15527eb6cff12519ecafbc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Aug 2022 05:05:39 +0000 Subject: [PATCH] Bump trybuild from 1.0.52 to 1.0.64 Bumps [trybuild](https://github.com/dtolnay/trybuild) from 1.0.52 to 1.0.64. - [Release notes](https://github.com/dtolnay/trybuild/releases) - [Commits](https://github.com/dtolnay/trybuild/compare/1.0.52...1.0.64) --- updated-dependencies: - dependency-name: trybuild dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++------ propfuzz/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 63a6391c..904ddb0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,6 +114,12 @@ dependencies = [ "autocfg", ] +[[package]] +name = "once_cell" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" + [[package]] name = "output_vt100" version = "0.1.2" @@ -307,9 +313,6 @@ name = "serde" version = "1.0.120" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "166b2349061381baf54a58e4b13c89369feb0ef2eaa57198899e2312aac30aab" -dependencies = [ - "serde_derive", -] [[package]] name = "serde_derive" @@ -378,13 +381,14 @@ dependencies = [ [[package]] name = "trybuild" -version = "1.0.52" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "150e726dc059e6fbd4fce3288f5bb3cf70128cf63b0dde23b938a3cad810fb23" +checksum = "e7f408301c7480f9e6294eb779cfc907f54bd901a9660ef24d7f233ed5376485" dependencies = [ "glob", - "lazy_static", + "once_cell", "serde", + "serde_derive", "serde_json", "termcolor", "toml", diff --git a/propfuzz/Cargo.toml b/propfuzz/Cargo.toml index 907dd1bf..702de6a4 100644 --- a/propfuzz/Cargo.toml +++ b/propfuzz/Cargo.toml @@ -24,7 +24,7 @@ propfuzz-macro = { path = "../propfuzz-macro", version = "0.0.1", optional = tru [dev-dependencies] pretty_assertions = "1.0.0" -trybuild = "1.0.52" +trybuild = "1.0.64" [features] default = ["macro"]