From 6ae69b16e1f037c33deb692a9d624f57ccac2fb4 Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 2 Feb 2024 11:23:39 -0800 Subject: [PATCH] fixed versions (not sure why they fell behind) --- .github/workflows/llama-cpp-rs-check.yml | 2 ++ llama-cpp-2/Cargo.toml | 4 ++-- llama-cpp-sys-2/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/llama-cpp-rs-check.yml b/.github/workflows/llama-cpp-rs-check.yml index 3dc28072..b6d23056 100644 --- a/.github/workflows/llama-cpp-rs-check.yml +++ b/.github/workflows/llama-cpp-rs-check.yml @@ -62,6 +62,8 @@ jobs: steps: - name: checkout uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + with: + submodules: recursive - name: Setup Rust uses: dtolnay/rust-toolchain@stable - name: Build diff --git a/llama-cpp-2/Cargo.toml b/llama-cpp-2/Cargo.toml index c2704c80..c2605a43 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.22" +version = "0.1.25" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" @@ -9,7 +9,7 @@ repository = "https://github.com/utilityai/llama-cpp-rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.22" } +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.25" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index 792d2a3d..2acbe5ac 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.22" +version = "0.1.25" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs"