From a5d0fd6ea9f6e2ee7718aea83f086d5bc60f1324 Mon Sep 17 00:00:00 2001 From: Dimitris Iliopoulos Date: Thu, 26 Oct 2023 11:54:38 -0700 Subject: [PATCH] [rust] upgrade toml (0.7.3 -> 0.8.4) Summary: Upgrading `toml` from `0.7.3` to `0.8.4` Test Plan: ``` $ fbcode/common/rust/tools/scripts/third-party-check.sh $ buck2 run fbcode//common/rust/cargo_from_buck/autocargo:autocargo ``` Reviewed By: zertosh Differential Revision: D50704691 fbshipit-source-id: 2958ea5a5495430f89cc3255ae19097eb0fed917 --- antlir/util/cli/json_arg/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/antlir/util/cli/json_arg/Cargo.toml b/antlir/util/cli/json_arg/Cargo.toml index 3f1b6f3f4c3..fd13059cd77 100644 --- a/antlir/util/cli/json_arg/Cargo.toml +++ b/antlir/util/cli/json_arg/Cargo.toml @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] serde = { version = "1.0.185", features = ["derive", "rc"] } serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] } -toml = "0.7.3" +toml = "0.8.4" [dev-dependencies] clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }