Skip to content

Commit 25cf052

Browse files
committed
Merge branch 'main' of ssh://github.com/estokes/llama-cpp-rs
2 parents 9a0bf8e + 78de7a1 commit 25cf052

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

.github/workflows/llama-cpp-rs-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
21+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2222
with:
2323
submodules: recursive
2424
- name: Install Compile Deps
@@ -43,7 +43,7 @@ jobs:
4343
target: [ linux/arm64, linux/amd64 ]
4444
steps:
4545
- name: checkout
46-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
46+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
4747
- name: Setup QEMU
4848
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3
4949
with:
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: macos-latest
6262
steps:
6363
- name: checkout
64-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
64+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
6565
with:
6666
submodules: recursive
6767
- name: Setup Rust
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: windows-latest
7474
steps:
7575
- name: checkout
76-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
76+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
7777
with:
7878
submodules: recursive
7979
- name: Setup Rust

.github/workflows/publish-upon-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
17+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1818
with:
1919
submodules: recursive
2020
- name: Publish crates for llama-cpp-sys-2

.github/workflows/update-llama-cpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Set date
1717
run: echo "DATE=$(date -I)" >> $GITHUB_ENV
18-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
18+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1919
name: Checkout latest
2020
with:
2121
submodules: recursive

.github/workflows/update-toml-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
18+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1919
with:
2020
submodules: recursive
2121

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

embeddings/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "embeddings"
3-
version = "0.1.57"
3+
version = "0.1.59"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.57" }
9+
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.59" }
1010
hf-hub = { workspace = true }
1111
clap = { workspace = true , features = ["derive"] }
1212
anyhow = { workspace = true }

llama-cpp-2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llama-cpp-2"
33
description = "llama.cpp bindings for Rust"
4-
version = "0.1.57"
4+
version = "0.1.59"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/utilityai/llama-cpp-rs"
@@ -10,7 +10,7 @@ repository = "https://github.com/utilityai/llama-cpp-rs"
1010

1111
[dependencies]
1212
enumflags2 = "0.7.10"
13-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.57" }
13+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.59" }
1414
thiserror = { workspace = true }
1515
tracing = { workspace = true }
1616

llama-cpp-sys-2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llama-cpp-sys-2"
33
description = "Low Level Bindings to llama.cpp"
4-
version = "0.1.57"
4+
version = "0.1.59"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/utilityai/llama-cpp-rs"

llama-cpp-sys-2/llama.cpp

simple/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "simple"
3-
version = "0.1.57"
3+
version = "0.1.59"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.57" }
9+
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.59" }
1010
hf-hub = { workspace = true }
1111
clap = { workspace = true , features = ["derive"] }
1212
anyhow = { workspace = true }

0 commit comments

Comments
 (0)