Compare commits

...

5 Commits

Author SHA1 Message Date
release-plz-for-ac-qu-ai-nt[bot]
7b661f4554 chore(ac-qu-ai-nt-core): release v0.0.7 2024-10-18 19:31:31 +00:00
J / Jacob Babich
14321c8b92 chore: accept Zlib as the license of a dependency 2024-10-18 15:27:42 -04:00
J / Jacob Babich
973961f103 chore: accept BSD-2-Clause as the license of a dependency 2024-10-18 15:27:38 -04:00
J / Jacob Babich
08fb098459 chore(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 2024-10-18 15:27:34 -04:00
J
a8812ac17b Merge pull request #27 from babichjacob/release-plz-2024-10-18T07-30-32Z
chore: release
2024-10-18 13:40:54 -04:00
4 changed files with 1242 additions and 20 deletions

1248
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [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 ## [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 ### Fixed

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "ac-qu-ai-nt-core" 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" 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" edition = "2021"
rust-version = "1.76" rust-version = "1.76"
@@ -14,6 +14,10 @@ default = []
tracing = ["dep:tracing"] tracing = ["dep:tracing"]
[dependencies] [dependencies]
cozo = { version = "0.7", default-features = false, features = [
"graph-algo",
"storage-sqlite",
] }
llama-cpp-2 = "0.1.82" llama-cpp-2 = "0.1.82"
ocrs = "0.9" ocrs = "0.9"
reqwest = { version = "0.12.4", default-features = false, features = [ reqwest = { version = "0.12.4", default-features = false, features = [

View File

@@ -90,6 +90,7 @@ ignore = [
# [possible values: any SPDX 3.11 short identifier (+ optional exception)]. # [possible values: any SPDX 3.11 short identifier (+ optional exception)].
allow = [ allow = [
"Apache-2.0", "Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause", "BSD-3-Clause",
"ISC", "ISC",
"MIT", "MIT",
@@ -97,6 +98,7 @@ allow = [
"OpenSSL", "OpenSSL",
"Unicode-DFS-2016", "Unicode-DFS-2016",
"Unlicense", "Unlicense",
"Zlib",
] ]
# The confidence threshold for detecting a license from license text. # The confidence threshold for detecting a license from license text.
# The higher the value, the more closely the license text must be to the # The higher the value, the more closely the license text must be to the