From 32fc1f9254956e56c047246230c02d47505aeb68 Mon Sep 17 00:00:00 2001 From: Adrian Enache Date: Thu, 31 Oct 2024 16:04:02 -0700 Subject: [PATCH] update serde 1.0.203->1.0.214, serde_json 1.0.125->1.0.132 Summary: - fix some cfg for serde_json which changed in the meantime Reviewed By: dtolnay Differential Revision: D65182502 fbshipit-source-id: 9234db3ca89334552a0e12ac7e90b59b0bdf2897 --- watchman/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watchman/cli/Cargo.toml b/watchman/cli/Cargo.toml index c155278a9bb2..3f73560f3c7c 100644 --- a/watchman/cli/Cargo.toml +++ b/watchman/cli/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0.86" duct = "0.13.6" jwalk = "0.6" serde = { version = "1.0.185", features = ["derive", "rc"] } -serde_json = { version = "1.0.125", features = ["float_roundtrip", "unbounded_depth"] } +serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] } structopt = "0.3.26" sysinfo = "0.30.11" tabular = "0.2.0"