From 1de33e4fc9ba841cb02104a1477fab492d03da38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 13:09:09 +0000 Subject: [PATCH] build(deps): bump rhai-dylib in /native/test_dylib_module Bumps [rhai-dylib](https://github.com/rhaiscript/rhai-dylib) from 0.4.0 to 0.5.0. - [Release notes](https://github.com/rhaiscript/rhai-dylib/releases) - [Commits](https://github.com/rhaiscript/rhai-dylib/compare/v0.4.0...v0.5.0) --- updated-dependencies: - dependency-name: rhai-dylib dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- native/test_dylib_module/Cargo.lock | 33 +++++++++++++++++++++++++---- native/test_dylib_module/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/native/test_dylib_module/Cargo.lock b/native/test_dylib_module/Cargo.lock index 6aed5f3..6c59e9b 100644 --- a/native/test_dylib_module/Cargo.lock +++ b/native/test_dylib_module/Cargo.lock @@ -108,6 +108,15 @@ dependencies = [ "windows-targets", ] +[[package]] +name = "no-std-compat" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" +dependencies = [ + "spin", +] + [[package]] name = "num-traits" version = "0.2.19" @@ -122,6 +131,15 @@ name = "once_cell" version = "1.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" +dependencies = [ + "portable-atomic", +] + +[[package]] +name = "portable-atomic" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" [[package]] name = "proc-macro2" @@ -149,13 +167,14 @@ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" [[package]] name = "rhai" -version = "1.19.0" +version = "1.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61797318be89b1a268a018a92a7657096d83f3ecb31418b9e9c16dcbb043b702" +checksum = "d0277a46f29fe3b3eb10821ca2c65a4751b686b6c84422aae31695ba167b0fbc" dependencies = [ "ahash", "bitflags", "instant", + "no-std-compat", "num-traits", "once_cell", "rhai_codegen", @@ -166,9 +185,9 @@ dependencies = [ [[package]] name = "rhai-dylib" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "004bdaefe294e2cbc8129d85140afa3e176a21f679fa4afe15c69d0c1d70c500" +checksum = "5996402b1af9424e355dbf1761d0605f0f08eca909609b445383369a2bc83f0a" dependencies = [ "libloading", "rhai", @@ -227,6 +246,12 @@ dependencies = [ "version_check", ] +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + [[package]] name = "static_assertions" version = "1.1.0" diff --git a/native/test_dylib_module/Cargo.toml b/native/test_dylib_module/Cargo.toml index 3d4dc65..6504b99 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.4.0", features = ["sync"] } +rhai-dylib = { version = "=0.5.0", features = ["sync"] } rustler = "0.35.0"