Skip to content

Commit 9731d70

Browse files
committed
chore: bump dependencies
1 parent fc7c4ad commit 9731d70

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ keywords = [
2121
categories = ["embedded"]
2222

2323
[dependencies]
24-
libloading = { version = "0.8.5", optional = true }
24+
libloading = { version = "0.8.6", optional = true }
2525

26-
rhai = { version = "1.20.1", features = [
26+
rhai = { version = "1.21.0", features = [
2727
"internals", # Used to implement the ModuleResolver trait.
2828
] }
2929

src/module_resolvers/libloading.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
//!
2-
31
use super::{locked_read, locked_write};
42
use crate::loader::libloading::Libloading;
53
use crate::loader::Loader;
@@ -182,7 +180,6 @@ impl rhai::ModuleResolver for DylibModuleResolver {
182180
}
183181

184182
#[cfg(test)]
185-
186183
mod tests {
187184
use super::*;
188185

src/module_resolvers/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/// Libloading module resolver
12
#[cfg(feature = "libloading")]
23
pub mod libloading;
34

0 commit comments

Comments
 (0)