mirror of
https://github.com/babichjacob/ac-qu-ai-nt.git
synced 2025-10-02 04:47:53 -04:00
Compare commits
2 Commits
d0b9422919
...
53d619b8d6
Author | SHA1 | Date | |
---|---|---|---|
![]() |
53d619b8d6 | ||
![]() |
6ef54209a4 |
10
.github/workflows/check-and-build-and-test.yml
vendored
10
.github/workflows/check-and-build-and-test.yml
vendored
@@ -31,7 +31,7 @@ jobs:
|
||||
|
||||
- name: Formatting
|
||||
run: cargo fmt --check --verbose
|
||||
|
||||
|
||||
- name: cargo-deny
|
||||
uses: EmbarkStudios/cargo-deny-action@v2
|
||||
|
||||
@@ -203,10 +203,10 @@ jobs:
|
||||
supporteds:
|
||||
- runner: macos-latest
|
||||
target: aarch64-apple-darwin
|
||||
|
||||
|
||||
- runner: ubuntu-latest
|
||||
target: x86_64-unknown-linux-gnu
|
||||
|
||||
|
||||
- runner: windows-latest
|
||||
target: x86_64-pc-windows-msvc
|
||||
name: Verify MSRV of ${{ matrix.crate_directory }} for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }})
|
||||
@@ -228,7 +228,7 @@ jobs:
|
||||
with:
|
||||
shared-key: ${{ matrix.supporteds.target }}-latest-variable
|
||||
cache-on-failure: "true"
|
||||
|
||||
|
||||
- name: Verify MSRV (minimum supported Rust version)
|
||||
run: cargo msrv verify
|
||||
working-directory: ${{ matrix.crate_directory }}
|
||||
working-directory: ${{ strategy.crate_directory }}
|
||||
|
21
Cargo.lock
generated
21
Cargo.lock
generated
@@ -27,6 +27,7 @@ name = "ac-qu-ai-nt-core"
|
||||
version = "0.0.4"
|
||||
dependencies = [
|
||||
"llama-cpp-2",
|
||||
"llama-cpp-sys-2",
|
||||
"snafu",
|
||||
"tracing",
|
||||
]
|
||||
@@ -209,15 +210,6 @@ version = "0.7.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
|
||||
|
||||
[[package]]
|
||||
name = "cmake"
|
||||
version = "0.1.51"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fb1e43aa7fd152b1f968787f7dbcdeb306d1867ff373c69955211876c053f91a"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "colorchoice"
|
||||
version = "1.0.2"
|
||||
@@ -383,9 +375,9 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
||||
|
||||
[[package]]
|
||||
name = "llama-cpp-2"
|
||||
version = "0.1.81"
|
||||
version = "0.1.64"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e021ce2fa50d729822c6d254cc4bd691b91a5d3a104f1664af1bbc7f04a05906"
|
||||
checksum = "7d06b23f7c63e64ffceb0fab92746393dfbb76de41e02fd6751aeafff6a921e9"
|
||||
dependencies = [
|
||||
"enumflags2",
|
||||
"llama-cpp-sys-2",
|
||||
@@ -395,14 +387,13 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "llama-cpp-sys-2"
|
||||
version = "0.1.81"
|
||||
version = "0.1.64"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "322ec6503938947577e093c304736d8a86e2c743c1d9fe3ad79ccd8b345c23f4"
|
||||
checksum = "429e10ceb3c385e9094d0adb75ae976d433f53977281f598f6a7cbae8d265d50"
|
||||
dependencies = [
|
||||
"bindgen",
|
||||
"cc",
|
||||
"cmake",
|
||||
"glob",
|
||||
"once_cell",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@@ -7,11 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [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
|
||||
|
||||
- *(ac-qu-ai-nt-core)* update `llama-cpp-2`
|
||||
- *(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
|
||||
|
@@ -14,7 +14,8 @@ default = ["tracing"]
|
||||
tracing = ["dep:tracing"]
|
||||
|
||||
[dependencies]
|
||||
llama-cpp-2 = "0.1.81"
|
||||
llama-cpp-2 = "=0.1.64"
|
||||
llama-cpp-sys-2 = "=0.1.64"
|
||||
snafu = { workspace = true }
|
||||
|
||||
tracing = { workspace = true, optional = true }
|
||||
|
Reference in New Issue
Block a user