mirror of
https://github.com/babichjacob/ac-qu-ai-nt.git
synced 2025-10-01 16:37:53 -04:00
Compare commits
11 Commits
release-pl
...
main
Author | SHA1 | Date | |
---|---|---|---|
![]() |
59cc6b4063 | ||
![]() |
88a6aad136 | ||
![]() |
569d808b5b | ||
![]() |
f3d18ca86c | ||
![]() |
6e1fb6414b | ||
![]() |
f4e2f696ef | ||
![]() |
7b661f4554 | ||
![]() |
14321c8b92 | ||
![]() |
973961f103 | ||
![]() |
08fb098459 | ||
![]() |
a8812ac17b |
1886
Cargo.lock
generated
1886
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -119,3 +119,5 @@ All contents of this repository are licensed under either the
|
||||
- [Unlicense](LICENSE-UNLICENSE)
|
||||
|
||||
at your option.
|
||||
|
||||
All direct and indirect dependencies of this project are free software as defined by the [Free Software Foundation](https://www.gnu.org/licenses/license-list.html) and are licensed under [OSI Approved Licenses](https://opensource.org/licenses). [This is checked](deny.toml) in this project's [continuous integration (CI)](.github/workflows/check-and-build-and-test.yml) with [`cargo-deny`](https://crates.io/crates/cargo-deny).
|
||||
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.0.7](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.6...ac-qu-ai-nt-core-v0.0.7) - 2024-10-18
|
||||
|
||||
### Other
|
||||
|
||||
- *(ac-qu-ai-nt-core)* add `cozo` as a dependency because I expect to use it and I'd like to make sure everything works out
|
||||
|
||||
## [0.0.6](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.5...ac-qu-ai-nt-core-v0.0.6) - 2024-10-18
|
||||
|
||||
### Fixed
|
||||
|
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "ac-qu-ai-nt-core"
|
||||
description = "The core library of ac-qu-ai-nt. If you're looking for the application, see cli-clap or gui-eframe or tui-ratatui or the multibinary"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
edition = "2021"
|
||||
rust-version = "1.76"
|
||||
|
||||
@@ -14,7 +14,11 @@ default = []
|
||||
tracing = ["dep:tracing"]
|
||||
|
||||
[dependencies]
|
||||
llama-cpp-2 = "0.1.82"
|
||||
cozo = { version = "0.7", default-features = false, features = [
|
||||
"graph-algo",
|
||||
"storage-sqlite",
|
||||
] }
|
||||
llama-cpp-2 = "0.1.85"
|
||||
ocrs = "0.9"
|
||||
reqwest = { version = "0.12.4", default-features = false, features = [
|
||||
"http2",
|
||||
@@ -30,7 +34,6 @@ reqwest = { version = "0.12.4", default-features = false, features = [
|
||||
"gzip",
|
||||
"zstd",
|
||||
] }
|
||||
rten = "0.13.1"
|
||||
snafu = { workspace = true }
|
||||
|
||||
tracing = { workspace = true, optional = true }
|
||||
|
@@ -90,6 +90,7 @@ ignore = [
|
||||
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
|
||||
allow = [
|
||||
"Apache-2.0",
|
||||
"BSD-2-Clause",
|
||||
"BSD-3-Clause",
|
||||
"ISC",
|
||||
"MIT",
|
||||
@@ -97,6 +98,7 @@ allow = [
|
||||
"OpenSSL",
|
||||
"Unicode-DFS-2016",
|
||||
"Unlicense",
|
||||
"Zlib",
|
||||
]
|
||||
# The confidence threshold for detecting a license from license text.
|
||||
# The higher the value, the more closely the license text must be to the
|
||||
|
Reference in New Issue
Block a user