mirror of
https://github.com/babichjacob/ac-qu-ai-nt.git
synced 2025-10-02 16:57:53 -04:00
Compare commits
17 Commits
release-pl
...
4d7e9f5118
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4d7e9f5118 | ||
![]() |
7997593970 | ||
![]() |
a48e78323a | ||
![]() |
5fb65e5a62 | ||
![]() |
09f0c52520 | ||
![]() |
3643d97384 | ||
![]() |
575170bb92 | ||
![]() |
f4cbe18b73 | ||
![]() |
6c50f6bd20 | ||
![]() |
b5c7dfe667 | ||
![]() |
72a33524a5 | ||
![]() |
1d7d24aa07 | ||
![]() |
24f60fbca2 | ||
![]() |
0c1af2ba42 | ||
![]() |
7455d2a908 | ||
![]() |
7f38eb81c6 | ||
![]() |
1d94489a89 |
@@ -199,6 +199,8 @@ jobs:
|
|||||||
shared-key: ${{ matrix.supporteds.target }}-latest
|
shared-key: ${{ matrix.supporteds.target }}-latest
|
||||||
cache-on-failure: "true"
|
cache-on-failure: "true"
|
||||||
|
|
||||||
|
- name: Build tests
|
||||||
|
run: cargo build --tests --target ${{ matrix.supporteds.target }}
|
||||||
- name: Test
|
- name: Test
|
||||||
run: cargo nextest run --target ${{ matrix.supporteds.target }}
|
run: cargo nextest run --target ${{ matrix.supporteds.target }}
|
||||||
|
|
||||||
|
@@ -65,6 +65,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Install stable Rust toolchain
|
- name: Install stable Rust toolchain
|
||||||
uses: dtolnay/rust-toolchain@stable
|
uses: dtolnay/rust-toolchain@stable
|
||||||
|
with:
|
||||||
|
targets: ${{ matrix.supporteds.target }}
|
||||||
|
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
with:
|
with:
|
||||||
|
1253
Cargo.lock
generated
1253
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [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
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- *(ac-qu-ai-nt-core)* add `reqwest` as a dependency because I expect to use it and I'd like to make sure everything works out
|
||||||
|
|
||||||
|
## [0.0.5](https://github.com/babichjacob/ac-qu-ai-nt/compare/ac-qu-ai-nt-core-v0.0.4...ac-qu-ai-nt-core-v0.0.5) - 2024-10-17
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- *(ac-qu-ai-nt-core)* raise the minimum acceptable version of `rten` to `0.13.1`
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- *(ac-qu-ai-nt-core)* remove `surrealdb` as a dependency because the BUSL doesn't fit what I want this project to be. sorry. we'll see if I feel inclined to give it another chance
|
||||||
|
- *(ac-qu-ai-nt-core)* upgrade `surrealdb` to `2` and I'm not sure why it defaulted to an old version
|
||||||
|
- *(ac-qu-ai-nt-core)* add `ocrs`, `rten`, and `surrealdb` as dependencies because I expect to use them in the future and this will allow GitHub Actions to build cache for them or to report back to me that they're incompatible with the currently `supporteds`
|
||||||
|
- *(ac-qu-ai-nt-core)* [**breaking**] make `tracing` no longer a default feature
|
||||||
|
|
||||||
## [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-15
|
## [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-15
|
||||||
|
|
||||||
### Other
|
### Other
|
||||||
|
@@ -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.4"
|
version = "0.0.6"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.76"
|
rust-version = "1.76"
|
||||||
|
|
||||||
@@ -10,11 +10,27 @@ license = { workspace = true }
|
|||||||
repository = { workspace = true }
|
repository = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["tracing"]
|
default = []
|
||||||
tracing = ["dep:tracing"]
|
tracing = ["dep:tracing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
llama-cpp-2 = "0.1.82"
|
llama-cpp-2 = "0.1.82"
|
||||||
|
ocrs = "0.9"
|
||||||
|
reqwest = { version = "0.12", default-features = false, features = [
|
||||||
|
"http2",
|
||||||
|
|
||||||
|
"macos-system-configuration",
|
||||||
|
"rustls-tls-webpki-roots",
|
||||||
|
|
||||||
|
"json",
|
||||||
|
"multipart",
|
||||||
|
|
||||||
|
"brotli",
|
||||||
|
"deflate",
|
||||||
|
"gzip",
|
||||||
|
"zstd",
|
||||||
|
] }
|
||||||
|
rten = "0.13.1"
|
||||||
snafu = { workspace = true }
|
snafu = { workspace = true }
|
||||||
|
|
||||||
tracing = { workspace = true, optional = true }
|
tracing = { workspace = true, optional = true }
|
||||||
|
19
deny.toml
19
deny.toml
@@ -93,7 +93,10 @@ allow = [
|
|||||||
"BSD-3-Clause",
|
"BSD-3-Clause",
|
||||||
"ISC",
|
"ISC",
|
||||||
"MIT",
|
"MIT",
|
||||||
"Unicode-DFS-2016"
|
"MPL-2.0",
|
||||||
|
"OpenSSL",
|
||||||
|
"Unicode-DFS-2016",
|
||||||
|
"Unlicense",
|
||||||
]
|
]
|
||||||
# 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
|
||||||
@@ -111,20 +114,20 @@ exceptions = [
|
|||||||
# Some crates don't have (easily) machine readable licensing information,
|
# Some crates don't have (easily) machine readable licensing information,
|
||||||
# adding a clarification entry for it allows you to manually specify the
|
# adding a clarification entry for it allows you to manually specify the
|
||||||
# licensing information
|
# licensing information
|
||||||
#[[licenses.clarify]]
|
[[licenses.clarify]]
|
||||||
# The package spec the clarification applies to
|
# The package spec the clarification applies to
|
||||||
#crate = "ring"
|
crate = "ring"
|
||||||
# The SPDX expression for the license requirements of the crate
|
# The SPDX expression for the license requirements of the crate
|
||||||
#expression = "MIT AND ISC AND OpenSSL"
|
expression = "MIT AND ISC AND OpenSSL"
|
||||||
# One or more files in the crate's source used as the "source of truth" for
|
# One or more files in the crate's source used as the "source of truth" for
|
||||||
# the license expression. If the contents match, the clarification will be used
|
# the license expression. If the contents match, the clarification will be used
|
||||||
# when running the license check, otherwise the clarification will be ignored
|
# when running the license check, otherwise the clarification will be ignored
|
||||||
# and the crate will be checked normally, which may produce warnings or errors
|
# and the crate will be checked normally, which may produce warnings or errors
|
||||||
# depending on the rest of your configuration
|
# depending on the rest of your configuration
|
||||||
#license-files = [
|
license-files = [
|
||||||
# Each entry is a crate relative path, and the (opaque) hash of its contents
|
# Each entry is a crate relative path, and the (opaque) hash of its contents
|
||||||
#{ path = "LICENSE", hash = 0xbd0eed23 }
|
{ path = "LICENSE", hash = 0xbd0eed23 },
|
||||||
#]
|
]
|
||||||
|
|
||||||
[licenses.private]
|
[licenses.private]
|
||||||
# If true, ignores workspace crates that aren't published, or are only
|
# If true, ignores workspace crates that aren't published, or are only
|
||||||
|
Reference in New Issue
Block a user