From 7195641acaee13b6492aab0f56aeef1e07cb1609 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jul 2026 15:13:58 +0000 Subject: [PATCH] chore(deps): bump candle-core from 0.10.2 to 0.11.0 Bumps [candle-core](https://github.com/huggingface/candle) from 0.10.2 to 0.11.0. - [Changelog](https://github.com/huggingface/candle/blob/main/CHANGELOG.md) - [Commits](https://github.com/huggingface/candle/compare/0.10.2...0.11.0) --- updated-dependencies: - dependency-name: candle-core dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 46 ++++++++++++++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 43 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc16d28..7313a11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -495,7 +495,33 @@ dependencies = [ "thiserror 2.0.18", "tokenizers", "yoke", - "zip", + "zip 7.2.0", +] + +[[package]] +name = "candle-core" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ecb245093b0f791b89d3420c3df9c6d49c60ab63ba54db896bf8a3baf486706" +dependencies = [ + "byteorder", + "float8", + "gemm 0.19.0", + "half", + "libc", + "libm", + "memmap2", + "num-traits", + "num_cpus", + "rand 0.9.4", + "rand_distr 0.5.1", + "rayon", + "safetensors 0.8.0", + "thiserror 2.0.18", + "tokenizers", + "yoke", + "zerocopy", + "zip 8.6.0", ] [[package]] @@ -504,7 +530,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a9317a09d6530b758990ed7f625ac69ff43653bc9ee28b0464644ad1169ada87" dependencies = [ - "candle-core", + "candle-core 0.10.2", "half", "libc", "num-traits", @@ -1233,7 +1259,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "545e4fb17fc48768ff36c2a3854aa5b0b809d0ed595ab5530fa8ac94f31bd0ea" dependencies = [ "anyhow", - "candle-core", + "candle-core 0.10.2", "candle-nn", "hf-hub", "image", @@ -2355,7 +2381,7 @@ dependencies = [ "anyhow", "async-trait", "axum 0.8.9", - "candle-core", + "candle-core 0.11.0", "clap", "criterion", "fastembed", @@ -5556,6 +5582,18 @@ dependencies = [ "typed-path", ] +[[package]] +name = "zip" +version = "8.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b" +dependencies = [ + "crc32fast", + "indexmap 2.14.0", + "memchr", + "typed-path", +] + [[package]] name = "zmij" version = "1.0.21" diff --git a/Cargo.toml b/Cargo.toml index 57de660..289d40d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -204,7 +204,7 @@ fastembed = { version = "5", default-features = false, optional = true } # fastembed release built against stable. Switch to a caret range (`2`) once # both conditions hold. ort = { version = "=2.0.0-rc.12", default-features = false, optional = true } -candle-core = { version = "0.10", optional = true } +candle-core = { version = "0.11", optional = true } indexmap = { version = "2", optional = true } clap = { version = "4", features = ["derive"], optional = true } turbovec = { version = "0.9", optional = true }