Skip to content

Commit 94e6b10

Browse files
authored
Merge branch 'main' into silas-redo-build-script
2 parents 09c7b61 + 0d60d79 commit 94e6b10

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
21+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
46+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
64+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
76+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
17+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
18+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
18+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
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.54"
3+
version = "0.1.55"
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.54" }
9+
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.55" }
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,15 +1,15 @@
11
[package]
22
name = "llama-cpp-2"
33
description = "llama.cpp bindings for Rust"
4-
version = "0.1.54"
4+
version = "0.1.55"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/utilityai/llama-cpp-rs"
88

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

1111
[dependencies]
12-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.54" }
12+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.55" }
1313
thiserror = { workspace = true }
1414
tracing = { workspace = true }
1515

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.54"
4+
version = "0.1.55"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/utilityai/llama-cpp-rs"

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.54"
3+
version = "0.1.55"
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.54" }
9+
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.55" }
1010
hf-hub = { workspace = true }
1111
clap = { workspace = true , features = ["derive"] }
1212
anyhow = { workspace = true }

0 commit comments

Comments
 (0)