Compare commits

..

2 Commits

Author SHA1 Message Date
release-plz-for-ac-qu-ai-nt[bot]
53d619b8d6 Merge 6ef54209a4 into 2446ea761a 2024-10-07 20:35:47 +00:00
release-plz-for-ac-qu-ai-nt[bot]
6ef54209a4 chore: release 2024-10-07 20:35:43 +00:00
4 changed files with 14 additions and 23 deletions

View File

@@ -31,7 +31,7 @@ jobs:
- name: Formatting - name: Formatting
run: cargo fmt --check --verbose run: cargo fmt --check --verbose
- name: cargo-deny - name: cargo-deny
uses: EmbarkStudios/cargo-deny-action@v2 uses: EmbarkStudios/cargo-deny-action@v2
@@ -203,10 +203,10 @@ jobs:
supporteds: supporteds:
- runner: macos-latest - runner: macos-latest
target: aarch64-apple-darwin target: aarch64-apple-darwin
- runner: ubuntu-latest - runner: ubuntu-latest
target: x86_64-unknown-linux-gnu target: x86_64-unknown-linux-gnu
- runner: windows-latest - runner: windows-latest
target: x86_64-pc-windows-msvc target: x86_64-pc-windows-msvc
name: Verify MSRV of ${{ matrix.crate_directory }} for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) name: Verify MSRV of ${{ matrix.crate_directory }} for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }})
@@ -228,7 +228,7 @@ jobs:
with: with:
shared-key: ${{ matrix.supporteds.target }}-latest-variable shared-key: ${{ matrix.supporteds.target }}-latest-variable
cache-on-failure: "true" cache-on-failure: "true"
- name: Verify MSRV (minimum supported Rust version) - name: Verify MSRV (minimum supported Rust version)
run: cargo msrv verify run: cargo msrv verify
working-directory: ${{ matrix.crate_directory }} working-directory: ${{ strategy.crate_directory }}

21
Cargo.lock generated
View File

@@ -27,6 +27,7 @@ name = "ac-qu-ai-nt-core"
version = "0.0.4" version = "0.0.4"
dependencies = [ dependencies = [
"llama-cpp-2", "llama-cpp-2",
"llama-cpp-sys-2",
"snafu", "snafu",
"tracing", "tracing",
] ]
@@ -209,15 +210,6 @@ version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
[[package]]
name = "cmake"
version = "0.1.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb1e43aa7fd152b1f968787f7dbcdeb306d1867ff373c69955211876c053f91a"
dependencies = [
"cc",
]
[[package]] [[package]]
name = "colorchoice" name = "colorchoice"
version = "1.0.2" version = "1.0.2"
@@ -383,9 +375,9 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
[[package]] [[package]]
name = "llama-cpp-2" name = "llama-cpp-2"
version = "0.1.81" version = "0.1.64"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e021ce2fa50d729822c6d254cc4bd691b91a5d3a104f1664af1bbc7f04a05906" checksum = "7d06b23f7c63e64ffceb0fab92746393dfbb76de41e02fd6751aeafff6a921e9"
dependencies = [ dependencies = [
"enumflags2", "enumflags2",
"llama-cpp-sys-2", "llama-cpp-sys-2",
@@ -395,14 +387,13 @@ dependencies = [
[[package]] [[package]]
name = "llama-cpp-sys-2" name = "llama-cpp-sys-2"
version = "0.1.81" version = "0.1.64"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322ec6503938947577e093c304736d8a86e2c743c1d9fe3ad79ccd8b345c23f4" checksum = "429e10ceb3c385e9094d0adb75ae976d433f53977281f598f6a7cbae8d265d50"
dependencies = [ dependencies = [
"bindgen", "bindgen",
"cc", "cc",
"cmake", "once_cell",
"glob",
] ]
[[package]] [[package]]

View File

@@ -7,11 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.0.4](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.3...ac-qu-ai-nt-core-v0.0.4) - 2024-10-08 ## [0.0.4](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.3...ac-qu-ai-nt-core-v0.0.4) - 2024-10-07
### Other ### Other
- *(ac-qu-ai-nt-core)* update `llama-cpp-2`
- *(core)* add `snafu` as a dependency - *(core)* add `snafu` as a dependency
## [0.0.3](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.2...ac-qu-ai-nt-core-v0.0.3) - 2024-10-07 ## [0.0.3](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.2...ac-qu-ai-nt-core-v0.0.3) - 2024-10-07

View File

@@ -14,7 +14,8 @@ default = ["tracing"]
tracing = ["dep:tracing"] tracing = ["dep:tracing"]
[dependencies] [dependencies]
llama-cpp-2 = "0.1.81" llama-cpp-2 = "=0.1.64"
llama-cpp-sys-2 = "=0.1.64"
snafu = { workspace = true } snafu = { workspace = true }
tracing = { workspace = true, optional = true } tracing = { workspace = true, optional = true }