From d7dc86de8c610a7e96683b6d3ca804bda9543848 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 May 2024 04:40:08 +0000 Subject: [PATCH] chore(deps): Bump mlua from 0.9.1 to 0.9.8 Bumps [mlua](https://github.com/khvzak/mlua) from 0.9.1 to 0.9.8. - [Release notes](https://github.com/khvzak/mlua/releases) - [Changelog](https://github.com/mlua-rs/mlua/blob/master/CHANGELOG.md) - [Commits](https://github.com/khvzak/mlua/compare/v0.9.1...v0.9.8) --- updated-dependencies: - dependency-name: mlua dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 50 +++++++++++++++++++++++++++----------- Cargo.toml | 2 +- lib/vector-core/Cargo.toml | 2 +- 3 files changed, 38 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 879b7663d3b1b..b662aedcecdf8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4519,6 +4519,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.9" @@ -4979,21 +4988,21 @@ dependencies = [ [[package]] name = "lua-src" -version = "546.0.1" +version = "546.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c26d4af78361e025a3d03a2b964cd1592aff7495f4d4f7947218c084c6fdca8" +checksum = "2da0daa7eee611a4c30c8f5ee31af55266e26e573971ba9336d2993e2da129b2" dependencies = [ "cc", ] [[package]] name = "luajit-src" -version = "210.4.8+resty107baaf" +version = "210.5.5+f2336c4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e05167e8b2a2185758d83ed23541e5bd8bce37072e4204e0ef2c9b322bc87c4e" +checksum = "d8bcba9790f4e3b1c1467d75cdd011a63bbe6bc75da95af5d2cb4e3631f939c4" dependencies = [ "cc", - "which", + "which 5.0.0", ] [[package]] @@ -5252,9 +5261,9 @@ dependencies = [ [[package]] name = "mlua" -version = "0.9.1" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c3a7a7ff4481ec91b951a733390211a8ace1caba57266ccb5f4d4966704e560" +checksum = "e340c022072f3208a4105458286f4985ba5355bfe243c3073afe45cbe9ecf491" dependencies = [ "bstr 1.7.0", "mlua-sys", @@ -5266,9 +5275,9 @@ dependencies = [ [[package]] name = "mlua-sys" -version = "0.3.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ec8b54eddb76093069cce9eeffb4c7b3a1a0fe66962d7bd44c4867928149ca3" +checksum = "5552e7e4e22ada0463dfdeee6caf6dc057a189fdc83136408a8f950a5e5c5540" dependencies = [ "cc", "cfg-if", @@ -5279,11 +5288,11 @@ dependencies = [ [[package]] name = "mlua_derive" -version = "0.9.0" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f359220f24e6452dd82a3f50d7242d4aab822b5594798048e953d7a9e0314c6" +checksum = "09697a6cec88e7f58a02c7ab5c18c611c6907c8654613df9cc0192658a4fb859" dependencies = [ - "itertools 0.11.0", + "itertools 0.12.1", "once_cell", "proc-macro-error", "proc-macro2 1.0.69", @@ -6755,7 +6764,7 @@ dependencies = [ "regex", "syn 1.0.109", "tempfile", - "which", + "which 4.4.2", ] [[package]] @@ -6777,7 +6786,7 @@ dependencies = [ "regex", "syn 2.0.38", "tempfile", - "which", + "which 4.4.2", ] [[package]] @@ -10683,6 +10692,19 @@ dependencies = [ "rustix 0.38.21", ] +[[package]] +name = "which" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14" +dependencies = [ + "either", + "home", + "once_cell", + "rustix 0.38.21", + "windows-sys 0.48.0", +] + [[package]] name = "whoami" version = "1.4.1" diff --git a/Cargo.toml b/Cargo.toml index 287624f94bf50..75f3d034fac2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -326,7 +326,7 @@ arr_macro = { version = "0.2.1" } heim = { git = "https://github.com/vectordotdev/heim.git", branch = "update-nix", default-features = false, features = ["disk"] } # make sure to update the external docs when the Lua version changes -mlua = { version = "0.9.1", default-features = false, features = ["lua54", "send", "vendored", "macros"], optional = true } +mlua = { version = "0.9.8", default-features = false, features = ["lua54", "send", "vendored", "macros"], optional = true } [target.'cfg(windows)'.dependencies] windows-service = "0.6.0" diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index d870bf075ed31..b0a7388bdea1e 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -27,7 +27,7 @@ lookup = { package = "vector-lookup", path = "../vector-lookup" } metrics = "0.21.1" metrics-tracing-context = { version = "0.14.0", default-features = false } metrics-util = { version = "0.15.1", default-features = false, features = ["registry"] } -mlua = { version = "0.9.1", default-features = false, features = ["lua54", "send", "vendored"], optional = true } +mlua = { version = "0.9.8", default-features = false, features = ["lua54", "send", "vendored"], optional = true } no-proxy = { version = "0.3.4", default-features = false, features = ["serialize"] } once_cell = { version = "1.18", default-features = false } ordered-float = { version = "4.1.1", default-features = false }