From 98733b89e20f249c333aefe8349576475025a609 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 5 Dec 2024 00:32:03 +0000 Subject: [PATCH 1/2] Bump version to 0.1.86 [skip ci] --- Cargo.lock | 10 +++++----- examples/embeddings/Cargo.toml | 2 +- examples/simple/Cargo.toml | 2 +- llama-cpp-2/Cargo.toml | 2 +- llama-cpp-sys-2/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0265ee1..b2fdcdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "adler" @@ -277,7 +277,7 @@ checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" [[package]] name = "embeddings" -version = "0.1.85" +version = "0.1.86" dependencies = [ "anyhow", "clap", @@ -653,7 +653,7 @@ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" [[package]] name = "llama-cpp-2" -version = "0.1.85" +version = "0.1.86" dependencies = [ "encoding_rs", "enumflags2", @@ -664,7 +664,7 @@ dependencies = [ [[package]] name = "llama-cpp-sys-2" -version = "0.1.85" +version = "0.1.86" dependencies = [ "bindgen", "cc", @@ -1058,7 +1058,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "simple" -version = "0.1.85" +version = "0.1.86" dependencies = [ "anyhow", "clap", diff --git a/examples/embeddings/Cargo.toml b/examples/embeddings/Cargo.toml index 5ce1f06..64cd781 100644 --- a/examples/embeddings/Cargo.toml +++ b/examples/embeddings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embeddings" -version = "0.1.85" +version = "0.1.86" edition = "2021" [dependencies] diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index a1f8ac5..4ec54ba 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple" -version = "0.1.85" +version = "0.1.86" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/llama-cpp-2/Cargo.toml b/llama-cpp-2/Cargo.toml index 28f3687..1a58391 100644 --- a/llama-cpp-2/Cargo.toml +++ b/llama-cpp-2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llama-cpp-2" description = "llama.cpp bindings for Rust" -version = "0.1.85" +version = "0.1.86" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index def35e5..ed3f131 100644 --- a/llama-cpp-sys-2/Cargo.toml +++ b/llama-cpp-sys-2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llama-cpp-sys-2" description = "Low Level Bindings to llama.cpp" -version = "0.1.85" +version = "0.1.86" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" From f373cf4de3433bd302b92ced01ef64ac59280603 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Wed, 4 Dec 2024 20:46:19 -0500 Subject: [PATCH 2/2] Include `llama.cpp/ggml/src/ggml-metal` when publishing `llama-cpp-sys-2` --- llama-cpp-sys-2/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index def35e5..2aef423 100644 --- a/llama-cpp-sys-2/Cargo.toml +++ b/llama-cpp-sys-2/Cargo.toml @@ -35,6 +35,7 @@ include = [ "/llama.cpp/ggml/src/ggml-cpu/**/*", "/llama.cpp/ggml/src/ggml-cuda/**/*", + "/llama.cpp/ggml/src/ggml-metal/**/*", "/llama.cpp/ggml/src/ggml-vulkan/**/*", "/llama.cpp/ggml/src/llamafile/sgemm.h",