From eef42a443cf43bc70a38b5b29ddf89f5dd830fb6 Mon Sep 17 00:00:00 2001 From: Trevor Hilton Date: Sun, 3 Nov 2024 07:33:32 -0800 Subject: [PATCH] chore: update CST and fix new clippy lints (#104) * chore: update cst submodule * chore: clippy --- jsonpath-compliance-test-suite | 2 +- serde_json_path/src/lib.rs | 2 +- serde_json_path_core/src/lib.rs | 2 +- serde_json_path_macros/src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jsonpath-compliance-test-suite b/jsonpath-compliance-test-suite index 31dec17..9277705 160000 --- a/jsonpath-compliance-test-suite +++ b/jsonpath-compliance-test-suite @@ -1 +1 @@ -Subproject commit 31dec1720dc9b9d3e8af3c61f025da93ceb6c9d1 +Subproject commit 9277705cda4489c3d0d984831e7656e48145399b diff --git a/serde_json_path/src/lib.rs b/serde_json_path/src/lib.rs index 2f9e05c..2f4b4a6 100644 --- a/serde_json_path/src/lib.rs +++ b/serde_json_path/src/lib.rs @@ -333,7 +333,7 @@ clippy::needless_borrow, clippy::match_wildcard_for_single_variants, clippy::if_let_mutex, - clippy::mismatched_target_os, + unexpected_cfgs, clippy::await_holding_lock, clippy::match_on_vec_items, clippy::imprecise_flops, diff --git a/serde_json_path_core/src/lib.rs b/serde_json_path_core/src/lib.rs index 52cc683..7da8062 100644 --- a/serde_json_path_core/src/lib.rs +++ b/serde_json_path_core/src/lib.rs @@ -14,7 +14,7 @@ clippy::needless_borrow, clippy::match_wildcard_for_single_variants, clippy::if_let_mutex, - clippy::mismatched_target_os, + unexpected_cfgs, clippy::await_holding_lock, clippy::match_on_vec_items, clippy::imprecise_flops, diff --git a/serde_json_path_macros/src/lib.rs b/serde_json_path_macros/src/lib.rs index 1b6b5f6..1426838 100644 --- a/serde_json_path_macros/src/lib.rs +++ b/serde_json_path_macros/src/lib.rs @@ -15,7 +15,7 @@ clippy::needless_borrow, clippy::match_wildcard_for_single_variants, clippy::if_let_mutex, - clippy::mismatched_target_os, + unexpected_cfgs, clippy::await_holding_lock, clippy::match_on_vec_items, clippy::imprecise_flops,