From e2d108f31557745f0229c18470a44ad1903da2fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:28:53 +0000 Subject: [PATCH] chore(deps): bump jaq-std from 1.6.0 to 2.0.0 Bumps [jaq-std](https://github.com/01mf02/jaq) from 1.6.0 to 2.0.0. - [Release notes](https://github.com/01mf02/jaq/releases) - [Commits](https://github.com/01mf02/jaq/compare/v1.6.0...v2.0.0) --- updated-dependencies: - dependency-name: jaq-std dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 38 ++++++++++++++++++++++++++++++---- crates/weaver_forge/Cargo.toml | 2 +- 2 files changed, 35 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e2fece70..4772b0a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2359,6 +2359,17 @@ dependencies = [ "urlencoding", ] +[[package]] +name = "jaq-core" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d03ee1b714d63f0a5820131180056b592ecd400b32879c848e53e58707f19df0" +dependencies = [ + "dyn-clone", + "once_cell", + "typed-arena", +] + [[package]] name = "jaq-interpret" version = "1.5.0" @@ -2386,11 +2397,18 @@ dependencies = [ [[package]] name = "jaq-std" -version = "1.6.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfbaa55578fd3b70433b594a370741e0c364e4afff92cc0099623fce87311bc1" +checksum = "80e2c65cceafd4c0019f15a0dac7c0dd659b0fcf5182fc3a10d15b89d89ac6e8" dependencies = [ - "jaq-syn", + "aho-corasick", + "base64 0.22.1", + "chrono", + "jaq-core 2.0.0", + "libm", + "log", + "regex-lite", + "urlencoding", ] [[package]] @@ -3415,6 +3433,12 @@ dependencies = [ "regex-syntax", ] +[[package]] +name = "regex-lite" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" + [[package]] name = "regex-syntax" version = "0.8.5" @@ -4345,6 +4369,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "typed-arena" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" + [[package]] name = "typenum" version = "1.17.0" @@ -4760,7 +4790,7 @@ dependencies = [ "include_dir", "indexmap", "itertools 0.13.0", - "jaq-core", + "jaq-core 1.5.1", "jaq-interpret", "jaq-parse", "jaq-std", diff --git a/crates/weaver_forge/Cargo.toml b/crates/weaver_forge/Cargo.toml index 479e3707..c2a38b61 100644 --- a/crates/weaver_forge/Cargo.toml +++ b/crates/weaver_forge/Cargo.toml @@ -22,7 +22,7 @@ minijinja = { version = "2.5.0", features = ["loader", "custom_syntax", "debug", minijinja-contrib = { version="2.5.0", features = ["pycompat"] } convert_case = "0.6.0" jaq-core = "1.5.1" -jaq-std = "1.5.1" +jaq-std = "2.0.0" jaq-interpret = "1.5.0" jaq-parse = "1.0.3" jaq-syn = "1.1.0"