Skip to content

Commit fcaeb45

Browse files
committed
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
1 parent e927184 commit fcaeb45

File tree

4 files changed

+6
-16
lines changed

4 files changed

+6
-16
lines changed

Cargo.lock

+3-13
Original file line numberDiff line numberDiff line change
@@ -2177,16 +2177,6 @@ dependencies = [
21772177
"cc",
21782178
]
21792179

2180-
[[package]]
2181-
name = "libloading"
2182-
version = "0.7.4"
2183-
source = "registry+https://github.com/rust-lang/crates.io-index"
2184-
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
2185-
dependencies = [
2186-
"cfg-if",
2187-
"winapi",
2188-
]
2189-
21902180
[[package]]
21912181
name = "libloading"
21922182
version = "0.8.1"
@@ -2469,7 +2459,7 @@ dependencies = [
24692459
"lazy_static",
24702460
"libc",
24712461
"libffi",
2472-
"libloading 0.8.1",
2462+
"libloading",
24732463
"log",
24742464
"measureme",
24752465
"rand",
@@ -3993,7 +3983,7 @@ dependencies = [
39933983
name = "rustc_interface"
39943984
version = "0.0.0"
39953985
dependencies = [
3996-
"libloading 0.7.4",
3986+
"libloading",
39973987
"rustc-rayon",
39983988
"rustc-rayon-core",
39993989
"rustc_ast",
@@ -4123,7 +4113,7 @@ name = "rustc_metadata"
41234113
version = "0.0.0"
41244114
dependencies = [
41254115
"bitflags 2.4.1",
4126-
"libloading 0.7.4",
4116+
"libloading",
41274117
"odht",
41284118
"rustc_ast",
41294119
"rustc_attr",

compiler/rustc_codegen_cranelift/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ gimli = { version = "0.28", default-features = false, features = ["write"]}
1919
object = { version = "0.32", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
2020

2121
indexmap = "2.0.0"
22-
libloading = { version = "0.7.3", optional = true }
22+
libloading = { version = "0.8.0", optional = true }
2323
smallvec = "1.8.1"
2424

2525
[patch.crates-io]

compiler/rustc_interface/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
libloading = "0.7.1"
8+
libloading = "0.8.0"
99
rustc-rayon = { version = "0.5.0", optional = true }
1010
rustc-rayon-core = { version = "0.5.0", optional = true }
1111
rustc_ast = { path = "../rustc_ast" }

compiler/rustc_metadata/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
9-
libloading = "0.7.1"
9+
libloading = "0.8.0"
1010
odht = { version = "0.3.1", features = ["nightly"] }
1111
rustc_ast = { path = "../rustc_ast" }
1212
rustc_attr = { path = "../rustc_attr" }

0 commit comments

Comments
 (0)