mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-10 20:28:51 +00:00
Auto merge of #3029 - rust-lang:rustup-2023-08-16, r=RalfJung
Automatic sync from rustc
This commit is contained in:
commit
1523d8d8be
4 changed files with 8 additions and 7 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -1196,9 +1196,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "object"
|
||||
version = "0.31.1"
|
||||
version = "0.32.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
|
||||
checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
@ -1337,7 +1337,7 @@ name = "proc-macro-api"
|
|||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"memmap2",
|
||||
"object 0.31.1",
|
||||
"object 0.32.0",
|
||||
"paths",
|
||||
"profile",
|
||||
"serde",
|
||||
|
@ -1357,7 +1357,7 @@ dependencies = [
|
|||
"libloading",
|
||||
"mbe",
|
||||
"memmap2",
|
||||
"object 0.31.1",
|
||||
"object 0.32.0",
|
||||
"paths",
|
||||
"proc-macro-api",
|
||||
"proc-macro-test",
|
||||
|
|
|
@ -42,10 +42,11 @@ pub(crate) fn complete_cfg(acc: &mut Completions, ctx: &CompletionContext<'_>) {
|
|||
};
|
||||
}
|
||||
|
||||
const KNOWN_ARCH: [&str; 19] = [
|
||||
const KNOWN_ARCH: [&str; 20] = [
|
||||
"aarch64",
|
||||
"arm",
|
||||
"avr",
|
||||
"csky",
|
||||
"hexagon",
|
||||
"mips",
|
||||
"mips64",
|
||||
|
|
|
@ -12,7 +12,7 @@ rust-version.workspace = true
|
|||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
object = { version = "0.31.0", default-features = false, features = [
|
||||
object = { version = "0.32.0", default-features = false, features = [
|
||||
"std",
|
||||
"read_core",
|
||||
"elf",
|
||||
|
|
|
@ -12,7 +12,7 @@ rust-version.workspace = true
|
|||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
object = { version = "0.31.0", default-features = false, features = [
|
||||
object = { version = "0.32.0", default-features = false, features = [
|
||||
"std",
|
||||
"read_core",
|
||||
"elf",
|
||||
|
|
Loading…
Reference in a new issue