Skip to content

Commit 083b260

Browse files
author
The Miri Conjob Bot
committed
Merge from rustc
2 parents f657750 + ba18a0c commit 083b260

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/ide-completion/src/completions/attribute/cfg.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,11 @@ pub(crate) fn complete_cfg(acc: &mut Completions, ctx: &CompletionContext<'_>) {
4242
};
4343
}
4444

45-
const KNOWN_ARCH: [&str; 19] = [
45+
const KNOWN_ARCH: [&str; 20] = [
4646
"aarch64",
4747
"arm",
4848
"avr",
49+
"csky",
4950
"hexagon",
5051
"mips",
5152
"mips64",

crates/proc-macro-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rust-version.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
object = { version = "0.31.0", default-features = false, features = [
15+
object = { version = "0.32.0", default-features = false, features = [
1616
"std",
1717
"read_core",
1818
"elf",

crates/proc-macro-srv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rust-version.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
object = { version = "0.31.0", default-features = false, features = [
15+
object = { version = "0.32.0", default-features = false, features = [
1616
"std",
1717
"read_core",
1818
"elf",

0 commit comments

Comments
 (0)