deps: deduplicate the version of libloading used

The changelog can be found here:
https://docs.rs/libloading/latest/libloading/changelog/r0_8_0/index.html
This commit is contained in:
Simonas Kazlauskas 2024-01-10 17:12:01 +02:00
parent e927184629
commit fcaeb45421
4 changed files with 6 additions and 16 deletions

View file

@ -2177,16 +2177,6 @@ dependencies = [
"cc", "cc",
] ]
[[package]]
name = "libloading"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
dependencies = [
"cfg-if",
"winapi",
]
[[package]] [[package]]
name = "libloading" name = "libloading"
version = "0.8.1" version = "0.8.1"
@ -2469,7 +2459,7 @@ dependencies = [
"lazy_static", "lazy_static",
"libc", "libc",
"libffi", "libffi",
"libloading 0.8.1", "libloading",
"log", "log",
"measureme", "measureme",
"rand", "rand",
@ -3993,7 +3983,7 @@ dependencies = [
name = "rustc_interface" name = "rustc_interface"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"libloading 0.7.4", "libloading",
"rustc-rayon", "rustc-rayon",
"rustc-rayon-core", "rustc-rayon-core",
"rustc_ast", "rustc_ast",
@ -4123,7 +4113,7 @@ name = "rustc_metadata"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"bitflags 2.4.1", "bitflags 2.4.1",
"libloading 0.7.4", "libloading",
"odht", "odht",
"rustc_ast", "rustc_ast",
"rustc_attr", "rustc_attr",

View file

@ -19,7 +19,7 @@ gimli = { version = "0.28", default-features = false, features = ["write"]}
object = { version = "0.32", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] } object = { version = "0.32", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
indexmap = "2.0.0" indexmap = "2.0.0"
libloading = { version = "0.7.3", optional = true } libloading = { version = "0.8.0", optional = true }
smallvec = "1.8.1" smallvec = "1.8.1"
[patch.crates-io] [patch.crates-io]

View file

@ -5,7 +5,7 @@ edition = "2021"
[dependencies] [dependencies]
# tidy-alphabetical-start # tidy-alphabetical-start
libloading = "0.7.1" libloading = "0.8.0"
rustc-rayon = { version = "0.5.0", optional = true } rustc-rayon = { version = "0.5.0", optional = true }
rustc-rayon-core = { version = "0.5.0", optional = true } rustc-rayon-core = { version = "0.5.0", optional = true }
rustc_ast = { path = "../rustc_ast" } rustc_ast = { path = "../rustc_ast" }

View file

@ -6,7 +6,7 @@ edition = "2021"
[dependencies] [dependencies]
# tidy-alphabetical-start # tidy-alphabetical-start
bitflags = "2.4.1" bitflags = "2.4.1"
libloading = "0.7.1" libloading = "0.8.0"
odht = { version = "0.3.1", features = ["nightly"] } odht = { version = "0.3.1", features = ["nightly"] }
rustc_ast = { path = "../rustc_ast" } rustc_ast = { path = "../rustc_ast" }
rustc_attr = { path = "../rustc_attr" } rustc_attr = { path = "../rustc_attr" }