chore: Bump dependencies

This commit is contained in:
Lukas Wirth 2025-03-23 08:13:14 +01:00
parent c85fcd29a3
commit 500ea05aef
37 changed files with 261 additions and 197 deletions

View file

@ -12,7 +12,7 @@ rust-version.workspace = true
[lib]
[dependencies]
cov-mark = "2.0.0-pre.1"
cov-mark = "2.0.0"
itertools.workspace = true
tracing.workspace = true
@ -29,7 +29,7 @@ syntax.workspace = true
hir.workspace = true
[dev-dependencies]
expect-test = "1.4.0"
expect-test = "1.5.1"
# local deps
test-utils.workspace = true

View file

@ -380,7 +380,7 @@ fn parse_comma_sep_expr(input: ast::TokenTree) -> Option<Vec<ast::Expr>> {
.children_with_tokens()
.skip(1)
.take_while(|it| it.as_token() != Some(&r_paren));
let input_expressions = tokens.group_by(|tok| tok.kind() == T![,]);
let input_expressions = tokens.chunk_by(|tok| tok.kind() == T![,]);
Some(
input_expressions
.into_iter()