mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-16 01:38:13 +00:00
Merge #10663
10663: minor: Bump `object` avoid a duplicate dependency r=lnicola a=lnicola bors r+ Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
This commit is contained in:
commit
3ad83cc08d
3 changed files with 5 additions and 14 deletions
15
Cargo.lock
generated
15
Cargo.lock
generated
|
@ -87,7 +87,7 @@ dependencies = [
|
|||
"cfg-if",
|
||||
"libc",
|
||||
"miniz_oxide",
|
||||
"object 0.27.1",
|
||||
"object",
|
||||
"rustc-demangle",
|
||||
]
|
||||
|
||||
|
@ -1010,15 +1010,6 @@ dependencies = [
|
|||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "object"
|
||||
version = "0.26.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "39f37e50073ccad23b6d09bcb5b263f4e76d3bb6038e4a3c08e52162ffa8abc2"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "object"
|
||||
version = "0.27.1"
|
||||
|
@ -1137,7 +1128,7 @@ name = "proc_macro_api"
|
|||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"memmap2",
|
||||
"object 0.26.2",
|
||||
"object",
|
||||
"paths",
|
||||
"profile",
|
||||
"serde",
|
||||
|
@ -1156,7 +1147,7 @@ dependencies = [
|
|||
"libloading",
|
||||
"mbe",
|
||||
"memmap2",
|
||||
"object 0.26.2",
|
||||
"object",
|
||||
"paths",
|
||||
"proc_macro_api",
|
||||
"proc_macro_test",
|
||||
|
|
|
@ -24,6 +24,6 @@ profile = { path = "../profile", version = "0.0.0" }
|
|||
# base_db = { path = "../base_db", version = "0.0.0" }
|
||||
|
||||
[dependencies.object]
|
||||
version = "0.26"
|
||||
version = "0.27"
|
||||
default-features = false
|
||||
features = ["std", "read_core", "elf", "macho", "pe"]
|
||||
|
|
|
@ -10,7 +10,7 @@ rust-version = "1.56"
|
|||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
object = { version = "0.26", default-features = false, features = [
|
||||
object = { version = "0.27", default-features = false, features = [
|
||||
"std",
|
||||
"read_core",
|
||||
"elf",
|
||||
|
|
Loading…
Reference in a new issue