2026-01-04 05:19:47 +05:00
|
|
|
[workspace]
|
|
|
|
|
members = [
|
|
|
|
|
"crates/jarvis-core",
|
|
|
|
|
"crates/jarvis-app",
|
|
|
|
|
"crates/jarvis-gui",
|
2026-01-05 02:23:32 +05:00
|
|
|
"crates/jarvis-cli"
|
2026-01-04 05:19:47 +05:00
|
|
|
]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
|
version = "0.1.0"
|
chore(gui): rebrand — strip TG/Boosty/Patreon/feedback-bot, keep CC BY-NC-SA attribution
The previous feature/gui-rebrand-polish work only updated the appInfo store
keys; Footer.svelte, settings, and the commands page were still rendering
upstream's Telegram channel, Boosty/Patreon support links, feedback bot,
and the original author byline. This finishes the job.
Rust side (applies after `cargo build` — currently a no-op until MSVC Build
Tools are reinstalled):
- Cargo.toml: authors = ["Bossiara13"], repository = J.A.R.V.I.S-rust fork.
Original attribution stays in LICENSE.txt per CC BY-NC-SA 4.0; the UI
no longer renders an author byline.
- config.rs: dropped TG_OFFICIAL_LINK / FEEDBACK_LINK / SUPPORT_BOOSTY_LINK
/ SUPPORT_PATREON_LINK. Added UPSTREAM_REPOSITORY_LINK (Priler/jarvis for
the licence attribution), ISSUES_LINK (this fork's GH issues), and
PYTHON_FORK_LINK.
- tauri_commands/etc.rs: dropped get_tg_official_link/get_boosty_link/
get_patreon_link/get_feedback_link. Added get_upstream_link, get_issues_link,
get_python_fork_link. Tidied up the Option<&str> -> String boilerplate
with unwrap_or.
- main.rs: invoke_handler updated to match.
Frontend side (visible only after Rust rebuild — Tauri bundles the dist into
the exe):
- stores.ts: appInfo shape reduced to repositoryLink / upstreamLink /
issuesLink / pythonForkLink / logFilePath. loadAppInfo() uses fetchOr()
with hardcoded fallbacks so the UI still populates correctly when run
against an un-rebuilt binary; fetchRepoOr() additionally overrides
CARGO_PKG_REPOSITORY if it still resolves to upstream's Priler/jarvis.
- Footer.svelte: rewritten — © year + "J.A.R.V.I.S." + repo link + issues
link + small "fork of Priler/jarvis · CC BY-NC-SA 4.0" attribution line.
No author byline (it's in LICENSE.txt).
- routes/settings/index.svelte: feedback link now points to GitHub Issues.
- routes/commands/index.svelte: TG-channel reference replaced with a link
to the Python fork (where the command builder lives) plus a pointer to
resources/commands/ in this repo. Bruh GIF removed.
- locales/{ru,en,ua}.ftl: removed footer-author / footer-telegram /
footer-support, added footer-issues / footer-fork-of, rewrote
commands-wip-* strings, retargeted settings-beta-bot to "GitHub Issues".
Bundle identifier (com.priler.jarvis) kept intact to avoid moving the app
data directory.
2026-05-15 01:09:14 +03:00
|
|
|
authors = ["Bossiara13"]
|
2026-01-04 05:19:47 +05:00
|
|
|
license = "GPL-3.0-only"
|
chore(gui): rebrand — strip TG/Boosty/Patreon/feedback-bot, keep CC BY-NC-SA attribution
The previous feature/gui-rebrand-polish work only updated the appInfo store
keys; Footer.svelte, settings, and the commands page were still rendering
upstream's Telegram channel, Boosty/Patreon support links, feedback bot,
and the original author byline. This finishes the job.
Rust side (applies after `cargo build` — currently a no-op until MSVC Build
Tools are reinstalled):
- Cargo.toml: authors = ["Bossiara13"], repository = J.A.R.V.I.S-rust fork.
Original attribution stays in LICENSE.txt per CC BY-NC-SA 4.0; the UI
no longer renders an author byline.
- config.rs: dropped TG_OFFICIAL_LINK / FEEDBACK_LINK / SUPPORT_BOOSTY_LINK
/ SUPPORT_PATREON_LINK. Added UPSTREAM_REPOSITORY_LINK (Priler/jarvis for
the licence attribution), ISSUES_LINK (this fork's GH issues), and
PYTHON_FORK_LINK.
- tauri_commands/etc.rs: dropped get_tg_official_link/get_boosty_link/
get_patreon_link/get_feedback_link. Added get_upstream_link, get_issues_link,
get_python_fork_link. Tidied up the Option<&str> -> String boilerplate
with unwrap_or.
- main.rs: invoke_handler updated to match.
Frontend side (visible only after Rust rebuild — Tauri bundles the dist into
the exe):
- stores.ts: appInfo shape reduced to repositoryLink / upstreamLink /
issuesLink / pythonForkLink / logFilePath. loadAppInfo() uses fetchOr()
with hardcoded fallbacks so the UI still populates correctly when run
against an un-rebuilt binary; fetchRepoOr() additionally overrides
CARGO_PKG_REPOSITORY if it still resolves to upstream's Priler/jarvis.
- Footer.svelte: rewritten — © year + "J.A.R.V.I.S." + repo link + issues
link + small "fork of Priler/jarvis · CC BY-NC-SA 4.0" attribution line.
No author byline (it's in LICENSE.txt).
- routes/settings/index.svelte: feedback link now points to GitHub Issues.
- routes/commands/index.svelte: TG-channel reference replaced with a link
to the Python fork (where the command builder lives) plus a pointer to
resources/commands/ in this repo. Bruh GIF removed.
- locales/{ru,en,ua}.ftl: removed footer-author / footer-telegram /
footer-support, added footer-issues / footer-fork-of, rewrote
commands-wip-* strings, retargeted settings-beta-bot to "GitHub Issues".
Bundle identifier (com.priler.jarvis) kept intact to avoid moving the app
data directory.
2026-05-15 01:09:14 +03:00
|
|
|
repository = "https://github.com/DmitryBykov-ISPO/J.A.R.V.I.S-rust"
|
2026-01-04 05:19:47 +05:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
serde_yaml = "0.9"
|
|
|
|
|
once_cell = "1.19"
|
|
|
|
|
log = "0.4"
|
|
|
|
|
rand = "0.8"
|
|
|
|
|
seqdiff = "0.3"
|
|
|
|
|
hound = "3.5"
|
|
|
|
|
platform-dirs = "0.3"
|
|
|
|
|
rodio = "0.21"
|
|
|
|
|
kira = "0.11"
|
|
|
|
|
pv_recorder = { git = "https://github.com/Priler/pvrecorder" }
|
|
|
|
|
vosk = "0.3"
|
|
|
|
|
rustpotter = { git = "https://github.com/Priler/rustpotter" }
|
2026-01-04 09:00:51 +05:00
|
|
|
image = "0.25"
|
2026-01-05 01:22:45 +05:00
|
|
|
parking_lot = "0.12.5"
|
|
|
|
|
toml = "0.9.8"
|
2026-01-06 23:32:58 +05:00
|
|
|
sha2 = "0.10"
|
|
|
|
|
nnnoiseless = "0.5"
|
|
|
|
|
sysinfo = "0.37.2"
|
|
|
|
|
tokio-tungstenite = "0.28.0"
|
2026-01-07 05:04:04 +05:00
|
|
|
futures-util = "0.3"
|
|
|
|
|
fluent = "0.17.0"
|
|
|
|
|
fluent-bundle = "0.16.0"
|
2026-01-07 23:29:46 +05:00
|
|
|
unic-langid = "0.9"
|
2026-01-17 05:46:38 +05:00
|
|
|
chrono = "0.4"
|
2026-02-08 06:42:58 +05:00
|
|
|
mlua = { version = "0.11.5", features = ["lua55", "vendored", "async", "serde"] }
|
2026-01-17 05:46:38 +05:00
|
|
|
reqwest = { version = "0.13.1", features = ["blocking", "json"] }
|
2026-04-22 19:36:06 +03:00
|
|
|
thiserror = "2"
|
2026-01-17 05:46:38 +05:00
|
|
|
tempfile = "^3.24"
|
2026-02-08 06:42:58 +05:00
|
|
|
winrt-notification = "0.5"
|
2026-02-11 07:21:50 +05:00
|
|
|
|
|
|
|
|
fastembed = { version = "^5.8.1", default-features = false, features = ["ort-download-binaries"] }
|
|
|
|
|
ort = { version = "=2.0.0-rc.11" }
|
|
|
|
|
ndarray = "0.17"
|
|
|
|
|
tokenizers = { version = "0.22", default-features = false }
|
|
|
|
|
regex = "1"
|
2026-02-18 21:08:48 +05:00
|
|
|
sys-locale = "0.3"
|
2026-04-23 11:07:04 +03:00
|
|
|
webrtc-vad = "0.4"
|
2026-02-11 07:21:50 +05:00
|
|
|
|