From a5139196029c8e9bc6e431e11c5e8780c6ee7f62 Mon Sep 17 00:00:00 2001 From: Eduardo Broto Date: Sat, 24 Oct 2020 22:59:44 +0200 Subject: [PATCH] Add unbounded_depth to serde_json (clippy-driver) --- src/tools/rustc-workspace-hack/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index 11d61606ff5..213cb07fddf 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -66,7 +66,7 @@ crossbeam-utils = { version = "0.7.2", features = ["nightly"] } proc-macro2 = { version = "1", features = ["default"] } quote = { version = "1", features = ["default"] } serde = { version = "1.0.82", features = ['derive'] } -serde_json = { version = "1.0.31", features = ["raw_value"] } +serde_json = { version = "1.0.31", features = ["raw_value", "unbounded_depth"] } smallvec-0_6 = { package = "smallvec", version = "0.6", features = ['union', 'may_dangle'] } smallvec = { version = "1.0", features = ['union', 'may_dangle'] } syn = { version = "1", features = ['fold', 'full', 'extra-traits', 'visit', 'visit-mut'] }