Compare commits

...

3 Commits

Author SHA1 Message Date
J / Jacob Babich
24f60fbca2 chore(ac-qu-ai-nt-core): upgrade surrealdb to 2 and I'm not sure why it defaulted to an old version
Some checks are pending
Check, build, and test / Verify MSRV for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[prerequisite_step:rm ~/.cargo/bin/cargo.exe; rm ~/.cargo/bin/rust-analyzer.exe; rm ~/.cargo/bin/rustfmt.exe; rustup update runner:windows-latest target:x86_64-pc-… (push) Waiting to run
Check, build, and test / Verify MSRV for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[runner:macos-latest target:aarch64-apple-darwin]) (push) Waiting to run
Check, build, and test / Verify MSRV for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[runner:macos-latest target:x86_64-apple-darwin]) (push) Waiting to run
Check, build, and test / Verify MSRV for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[runner:ubuntu-latest target:x86_64-unknown-linux-gnu]) (push) Waiting to run
Check, build, and test / Check cargo-audit, cargo-deny, clippy, and formatting (push) Waiting to run
Check, build, and test / Check and build ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) ${{ matrix.minimal_or_latest.job_name_suffix }} (map[build_command:cargo build --verbose cache_key:latest check_command:cargo check --verbose job_name_suffix:(with lat… (push) Waiting to run
Check, build, and test / Check and build ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) ${{ matrix.minimal_or_latest.job_name_suffix }} (map[build_command:cargo minimal-versions build --direct --verbose cache_key:minimal check_command:cargo minimal-versio… (push) Waiting to run
Check, build, and test / Test ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[install_prerequisite:sudo apt-get update && sudo apt-get install musl-dev musl-tools && sudo ln -s /bin/g++ /bin/musl-g++ runner:ubuntu-latest target:x86_64-unknown-linux-mu… (push) Waiting to run
Check, build, and test / Test ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[runner:macos-latest target:aarch64-apple-darwin]) (push) Waiting to run
Check, build, and test / Test ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[runner:macos-latest target:x86_64-apple-darwin]) (push) Waiting to run
Check, build, and test / Test ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[runner:ubuntu-latest target:x86_64-unknown-linux-gnu]) (push) Waiting to run
Check, build, and test / Test ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[runner:windows-latest target:x86_64-pc-windows-msvc]) (push) Waiting to run
Check, build, and test / Verify MSRV for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) (map[install_prerequisite:sudo apt-get update && sudo apt-get install musl-dev musl-tools && sudo ln -s /bin/g++ /bin/musl-g++ runner:ubuntu-latest target:x86_64-unkno… (push) Waiting to run
Release-plz / Release-plz (push) Waiting to run
2024-10-16 15:35:06 -04:00
J / Jacob Babich
0c1af2ba42 chore(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 2024-10-16 15:28:51 -04:00
J / Jacob Babich
7455d2a908 chore(ac-qu-ai-nt-core)!: make tracing no longer a default feature 2024-10-16 15:26:09 -04:00
2 changed files with 3307 additions and 18 deletions

3320
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -10,11 +10,14 @@ license = { workspace = true }
repository = { workspace = true }
[features]
default = ["tracing"]
default = []
tracing = ["dep:tracing"]
[dependencies]
llama-cpp-2 = "0.1.82"
ocrs = "0.9"
rten = "0.13"
snafu = { workspace = true }
surrealdb = { version = "2", default-features = false }
tracing = { workspace = true, optional = true }