Skip to content

Commit 6863dcc

Browse files
committed
Bump version of libloading to 0.9
We're seeing spurious crashes on windows after successful benchmark runs when unloading the dll. Upgrade libloading to the latest as a first step in diagnosing potential problems. This updated version may just fix the issue; if not, it provides a way to do an explicit close() where we can handle errors potentially.
1 parent 8b83e79 commit 6863dcc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.lock

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

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
anyhow = "1.0"
9-
libloading = "0.7"
9+
libloading = "0.9"
1010
log = "0.4"
1111
pretty_env_logger = "0.4"
1212
serde = "1"

crates/recorder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
anyhow = "1.0"
10-
libloading = "0.7"
10+
libloading = "0.9"
1111
log = "0.4"
1212
precision = { git = "https://github.com/posborne/rust-precision.git", branch = "target-stable-asm" }
1313
serde = { version = "1.0.118", features = ["derive"] }

engines/native/libengine/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ crate-type = ["rlib", "cdylib"]
99

1010
[dependencies]
1111
anyhow = "1.0.22"
12-
libloading = "0.7"
12+
libloading = "0.9"
1313
nix = "0.26.2"
14-
libc="0.2"
14+
libc="0.2"

0 commit comments

Comments
 (0)