From fa16a02d3d7469789626b2da55bb5b2ff42dfb84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 14:01:01 +0000 Subject: [PATCH] build(deps): bump rhai-dylib in /native/test_dylib_module Bumps [rhai-dylib](https://github.com/rhaiscript/rhai-dylib) from 0.1.12 to 0.2.0. - [Release notes](https://github.com/rhaiscript/rhai-dylib/releases) - [Commits](https://github.com/rhaiscript/rhai-dylib/compare/v0.1.12...v0.2.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 | 19 +++++++++++++------ native/test_dylib_module/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/native/test_dylib_module/Cargo.lock b/native/test_dylib_module/Cargo.lock index d84fc25..8c55f47 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.16.3" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3625f343d89990133d013e39c46e350915178cf94f1bec9f49b0cbef98a3e3c" +checksum = "7a0de8df6dd1f4886ad635d7e0fc7afc086e4f6daeff129d157287b78738516b" dependencies = [ "ahash", "bitflags", @@ -199,13 +199,14 @@ dependencies = [ "rhai_codegen", "smallvec", "smartstring", + "thin-vec", ] [[package]] name = "rhai-dylib" -version = "0.1.12" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4895b6a04aee4cacf9418af7b3c1850146f45f3b6e883064b0483d82d2bf13c5" +checksum = "b2493ff073ab9db748e59c3d61cd31b6fa42c0ad283baef3f756095b246712f6" dependencies = [ "libloading", "rhai", @@ -213,9 +214,9 @@ dependencies = [ [[package]] name = "rhai_codegen" -version = "1.6.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "853977598f084a492323fe2f7896b4100a86284ee8473612de60021ea341310f" +checksum = "89789ba6e8fd0889ae70b39c09000148431c9a1d618eb9d388373f391a55c988" dependencies = [ "proc-macro2", "quote", @@ -297,6 +298,12 @@ dependencies = [ "rustler", ] +[[package]] +name = "thin-vec" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a38c90d48152c236a3ab59271da4f4ae63d678c5d7ad6b7714d7cb9760be5e4b" + [[package]] name = "tiny-keccak" version = "2.0.2" diff --git a/native/test_dylib_module/Cargo.toml b/native/test_dylib_module/Cargo.toml index 85db1b7..4552e57 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.1.12", features = ["sync"] } +rhai-dylib = { version = "=0.2.0", features = ["sync"] } rustler = "0.30.0"