aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-01-18 12:05:39 +0000
committerGitHub <[email protected]>2021-01-18 12:05:39 +0000
commit1f53026997536d5f08cc0d7165aae6222b74b8c0 (patch)
treec7dc9286976922e773006cf2311dc15f24878ca5 /crates
parent0e760a6ad20f023590147115fc8ca5d8d2559521 (diff)
parentd6b3dc1a6f79c2a3fd4b0633f55b4e0fd1fafa77 (diff)
Merge #7320
7320: Enable serde_json unbounded_depth feature r=lnicola a=lnicola bors r+ Co-authored-by: LaurenČ›iu Nicola <[email protected]>
Diffstat (limited to 'crates')
-rw-r--r--crates/proc_macro_api/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/proc_macro_api/Cargo.toml b/crates/proc_macro_api/Cargo.toml
index 1af2bbca7..078568cb2 100644
--- a/crates/proc_macro_api/Cargo.toml
+++ b/crates/proc_macro_api/Cargo.toml
@@ -11,7 +11,7 @@ doctest = false
11 11
12[dependencies] 12[dependencies]
13serde = { version = "1.0", features = ["derive"] } 13serde = { version = "1.0", features = ["derive"] }
14serde_json = "1.0" 14serde_json = { version = "1.0", features = ["unbounded_depth"] }
15log = "0.4.8" 15log = "0.4.8"
16crossbeam-channel = "0.5.0" 16crossbeam-channel = "0.5.0"
17jod-thread = "0.1.1" 17jod-thread = "0.1.1"