diff --git a/.github/workflows/llama-cpp-rs-check.yml b/.github/workflows/llama-cpp-rs-check.yml index e8e6a33f..852e102c 100644 --- a/.github/workflows/llama-cpp-rs-check.yml +++ b/.github/workflows/llama-cpp-rs-check.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: submodules: recursive - name: Install Compile Deps @@ -43,7 +43,7 @@ jobs: target: [ linux/arm64, linux/amd64 ] steps: - name: checkout - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Setup QEMU uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 with: @@ -61,7 +61,7 @@ jobs: runs-on: macos-latest steps: - name: checkout - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: submodules: recursive - name: Setup Rust @@ -73,7 +73,7 @@ jobs: runs-on: windows-latest steps: - name: checkout - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: submodules: recursive - name: Setup Rust diff --git a/.github/workflows/publish-upon-release.yml b/.github/workflows/publish-upon-release.yml index a8b590f5..1105d443 100644 --- a/.github/workflows/publish-upon-release.yml +++ b/.github/workflows/publish-upon-release.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: submodules: recursive - name: Publish crates for llama-cpp-sys-2 diff --git a/.github/workflows/update-llama-cpp.yml b/.github/workflows/update-llama-cpp.yml index 4ea7bb2c..e4784ca9 100644 --- a/.github/workflows/update-llama-cpp.yml +++ b/.github/workflows/update-llama-cpp.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Set date run: echo "DATE=$(date -I)" >> $GITHUB_ENV - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 name: Checkout latest with: submodules: recursive diff --git a/.github/workflows/update-toml-version.yaml b/.github/workflows/update-toml-version.yaml index 2bc348fc..2ef6b556 100644 --- a/.github/workflows/update-toml-version.yaml +++ b/.github/workflows/update-toml-version.yaml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: submodules: recursive diff --git a/Cargo.lock b/Cargo.lock index 6af8201e..d26ac347 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -267,7 +267,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "embeddings" -version = "0.1.54" +version = "0.1.55" dependencies = [ "anyhow", "clap", @@ -481,7 +481,7 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "llama-cpp-2" -version = "0.1.54" +version = "0.1.55" dependencies = [ "llama-cpp-sys-2", "thiserror", @@ -490,7 +490,7 @@ dependencies = [ [[package]] name = "llama-cpp-sys-2" -version = "0.1.54" +version = "0.1.55" dependencies = [ "bindgen", "cc", @@ -928,7 +928,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "simple" -version = "0.1.54" +version = "0.1.55" dependencies = [ "anyhow", "clap", diff --git a/embeddings/Cargo.toml b/embeddings/Cargo.toml index 0b624dbc..524fb90c 100644 --- a/embeddings/Cargo.toml +++ b/embeddings/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "embeddings" -version = "0.1.54" +version = "0.1.55" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.54" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.55" } hf-hub = { workspace = true } clap = { workspace = true , features = ["derive"] } anyhow = { workspace = true } diff --git a/llama-cpp-2/Cargo.toml b/llama-cpp-2/Cargo.toml index 24cd44fa..52b9a933 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.54" +version = "0.1.55" 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.54" } +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.55" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index 41d335db..09bb64e7 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.54" +version = "0.1.55" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" diff --git a/simple/Cargo.toml b/simple/Cargo.toml index dae758de..729ad939 100644 --- a/simple/Cargo.toml +++ b/simple/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "simple" -version = "0.1.54" +version = "0.1.55" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.54" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.55" } hf-hub = { workspace = true } clap = { workspace = true , features = ["derive"] } anyhow = { workspace = true }