mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-01 12:24:29 +00:00
chore: Bump dependencies
This commit is contained in:
parent
c85fcd29a3
commit
500ea05aef
37 changed files with 261 additions and 197 deletions
|
|
@ -12,7 +12,7 @@ rust-version.workspace = true
|
|||
[lib]
|
||||
|
||||
[dependencies]
|
||||
cov-mark = "2.0.0-pre.1"
|
||||
cov-mark = "2.0.0"
|
||||
crossbeam-channel.workspace = true
|
||||
tracing.workspace = true
|
||||
rayon.workspace = true
|
||||
|
|
@ -22,7 +22,7 @@ either.workspace = true
|
|||
itertools.workspace = true
|
||||
arrayvec.workspace = true
|
||||
indexmap.workspace = true
|
||||
memchr = "2.6.4"
|
||||
memchr = "2.7.4"
|
||||
salsa.workspace = true
|
||||
query-group.workspace = true
|
||||
triomphe.workspace = true
|
||||
|
|
@ -44,7 +44,7 @@ hir.workspace = true
|
|||
line-index.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
expect-test = "1.4.0"
|
||||
expect-test = "1.5.1"
|
||||
|
||||
# local deps
|
||||
test-utils.workspace = true
|
||||
|
|
|
|||
|
|
@ -484,7 +484,7 @@ pub fn parse_tt_as_comma_sep_paths(
|
|||
None => None,
|
||||
Some(tok) => Some(tok),
|
||||
});
|
||||
let input_expressions = tokens.group_by(|tok| tok.kind() == T![,]);
|
||||
let input_expressions = tokens.chunk_by(|tok| tok.kind() == T![,]);
|
||||
let paths = input_expressions
|
||||
.into_iter()
|
||||
.filter_map(|(is_sep, group)| (!is_sep).then_some(group))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue