build(deps): Update criterion and other deps (#412)

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
Anand Krishnamoorthi
2025-05-23 14:00:14 -05:00
committed by GitHub
parent 60ac4a7a7c
commit 39f10326cc
8 changed files with 650 additions and 934 deletions

View File

@@ -2027,7 +2027,7 @@ impl Interpreter {
let key = self.eval_expr(key)?;
collection[&key] == value
} else {
array.iter().any(|item| *item == value)
array.contains(&value)
}
}
Value::Object(object) => {