diff --git a/Cargo.lock b/Cargo.lock index 4665b05..8f8f945 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -385,9 +385,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" [[package]] name = "cc" -version = "1.2.47" +version = "1.2.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07" +checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203" dependencies = [ "find-msvc-tools", "jobserver", @@ -820,9 +820,9 @@ dependencies = [ [[package]] name = "find-msvc-tools" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" +checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff" [[package]] name = "find_cuda_helper" @@ -1523,9 +1523,9 @@ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" [[package]] name = "llama-cpp-2" -version = "0.1.130" +version = "0.1.131" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fede5a3e9f0b006b8158e912ad4401471fe8cb56df104487f6d5639d2a0d6a1" +checksum = "4a256ab71761e7c46a24e21fe7d923e1e6b78d465f41c897277f79477da96b84" dependencies = [ "enumflags2", "llama-cpp-sys-2", @@ -1536,9 +1536,9 @@ dependencies = [ [[package]] name = "llama-cpp-sys-2" -version = "0.1.130" +version = "0.1.131" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "041940ef51a1ec7ca1267958ff90efaa18ddd31cf07e937e0fd7521ad56acfea" +checksum = "ff5b2268a06180a67d8a1d3dd9d1f1c70d52de7b6f40f967ec4eabd90d0417ae" dependencies = [ "bindgen", "cc", diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 93fa04d..1771a62 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -36,7 +36,7 @@ tracing-subscriber.workspace = true notify.workspace = true minijinja = { version = "2.14.0", features = ["builtins", "json"] } minijinja-contrib = { version = "2.14.0", features = ["pycompat"] } -llama-cpp-2 = "=0.1.130" +llama-cpp-2 = "=0.1.131" [dev-dependencies] tempfile = { workspace = true, features = [] }