From 876e9f2d5ec1b10963f87c17fda28ea192c3aacb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 07:58:24 +0200 Subject: [PATCH] build(deps): bump rhai-dylib in /native/test_dylib_module (#204) Bumps [rhai-dylib](https://github.com/rhaiscript/rhai-dylib) from 0.3.0 to 0.4.0. - [Release notes](https://github.com/rhaiscript/rhai-dylib/releases) - [Commits](https://github.com/rhaiscript/rhai-dylib/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: rhai-dylib dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- native/test_dylib_module/Cargo.lock | 8 ++++---- native/test_dylib_module/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/native/test_dylib_module/Cargo.lock b/native/test_dylib_module/Cargo.lock index 67c5809..d98e87a 100644 --- a/native/test_dylib_module/Cargo.lock +++ b/native/test_dylib_module/Cargo.lock @@ -187,9 +187,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "rhai" -version = "1.18.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a7d88770120601ba1e548bb6bc2a05019e54ff01b51479e38e64ec3b59d4759" +checksum = "61797318be89b1a268a018a92a7657096d83f3ecb31418b9e9c16dcbb043b702" dependencies = [ "ahash", "bitflags", @@ -204,9 +204,9 @@ dependencies = [ [[package]] name = "rhai-dylib" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abcc35e72236eb67aaaab95006395ad6763451975f4273b0bc2e6606038aabcb" +checksum = "004bdaefe294e2cbc8129d85140afa3e176a21f679fa4afe15c69d0c1d70c500" dependencies = [ "libloading", "rhai", diff --git a/native/test_dylib_module/Cargo.toml b/native/test_dylib_module/Cargo.toml index bc4ec67..28340ac 100644 --- a/native/test_dylib_module/Cargo.toml +++ b/native/test_dylib_module/Cargo.toml @@ -10,5 +10,5 @@ path = "src/lib.rs" crate-type = ["cdylib"] [dependencies] -rhai-dylib = { version = "=0.3.0", features = ["sync"] } +rhai-dylib = { version = "=0.4.0", features = ["sync"] } rustler = "0.34.0"