Skip to content

Commit 8edd81f

Browse files
committed
Auto merge of #15568 - Veykril:upstream-rustc-ap, r=Veykril
Replace format-args parser with upstream fork Turns out we can't bump rustc_abi right now because it got its generics removed accidentally rust-lang/rust#107163
2 parents d04cff6 + 10b0cd7 commit 8edd81f

File tree

6 files changed

+43
-1075
lines changed

6 files changed

+43
-1075
lines changed

Cargo.lock

+30-45
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,9 @@ triomphe = { version = "0.1.8", default-features = false, features = ["std"] }
103103
# can't upgrade due to dashmap depending on 0.12.3 currently
104104
hashbrown = { version = "0.12.3", features = ["inline-more"], default-features = false }
105105

106-
rustc_lexer = { version = "0.1.0", package = "ra-ap-rustc_lexer" }
106+
rustc_lexer = { version = "0.10.0", package = "ra-ap-rustc_lexer" }
107+
rustc_parse_format = { version = "0.10.0", package = "ra-ap-rustc_parse_format", default-features = false }
108+
109+
# Upstream broke this for us so we can't update it
110+
rustc_abi = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_abi", default-features = false }
111+
rustc_index = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_index", default-features = false }

crates/hir-def/Cargo.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ smallvec.workspace = true
3131
hashbrown.workspace = true
3232
triomphe.workspace = true
3333

34-
rustc_abi = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_abi", default-features = false }
35-
rustc_index = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_index", default-features = false }
36-
rustc_lexer = { version = "0.1.0", package = "ra-ap-rustc_lexer" }
34+
rustc_abi.workspace = true
35+
rustc_index.workspace = true
36+
rustc_parse_format.workspace = true
37+
3738

3839
# local deps
3940
stdx.workspace = true

crates/hir-def/src/hir/format_args.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
use std::mem;
33

44
use hir_expand::name::Name;
5+
use rustc_parse_format as parse;
56
use syntax::{
67
ast::{self, IsString},
78
AstToken, SmolStr, TextRange,
89
};
910

1011
use crate::hir::ExprId;
1112

12-
mod parse;
13-
1413
#[derive(Debug, Clone, PartialEq, Eq)]
1514
pub struct FormatArgs {
1615
pub template: Box<[FormatArgsPiece]>,

0 commit comments

Comments
 (0)