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 }