Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"автовизначити",
"Автоміграція",
"Агрегуюча",
"алісить",
"апдейтер",
"апдейтера",
"артефакта",
Expand Down Expand Up @@ -130,6 +131,7 @@
"краш",
"крейт",
"крейта",
"крейтів",
"крейтом",
"крейту",
"леджер",
Expand Down Expand Up @@ -191,6 +193,7 @@
"пропсом",
"пуші",
"ранів",
"резолвилась",
"релізні",
"релізній",
"рендер",
Expand Down
30 changes: 24 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions app/.changes/260727-1445.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
bump: patch
section: Fixed
---
`mt-core` git-залежність (`app/src-tauri/Cargo.toml`) вказувала на `nitra/mt.git` без закріпленого `rev` — репозиторій розділили на спеку (`nitra/mt`) і реалізацію (`nitra/mt-rust`), і незакріплена залежність час від часу резолвилась у поточний HEAD `nitra/mt`, де Rust-крейтів більше немає (`could not find Cargo.toml`). Перенесено на `nitra/mt-rust.git` із закріпленим `rev`.
2 changes: 1 addition & 1 deletion app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tauri-plugin-agent = { git = "https://github.com/nitra/tauri-components", rev =
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
mt-core = { git = "https://github.com/nitra/mt.git" }
mt-core = { git = "https://github.com/nitra/mt-rust.git", rev = "7f82b456c51f32ed640a54f9db5e50b6674dd687" }
notify = "8"
tauri-plugin-mcp-bridge = "0.12.0"
tauri-plugin-process = "2.3.1"
Expand Down
5 changes: 5 additions & 0 deletions owner/.changes/260727-1446.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
bump: patch
section: Fixed
---
Дві незакріплені git-залежності ламали збірку owner CI (`could not find Cargo.toml` / `no matching package named llm-cascade found`): `mt-core` (`owner/src-tauri/Cargo.toml`) перенесено на `nitra/mt-rust.git` із закріпленим `rev` (crate-реалізація виїхала з `nitra/mt`, який лишився лише спекою); `llm-cascade` (`owner/owner-llm/Cargo.toml`) перейменували на `llm-lib` у `nitra/7n-rules` — залежність тепер явно алісить `package = "llm-lib"` із закріпленим `rev`, публічний API (`llm_cascade::…`) у коді owner-llm не змінювався.
2 changes: 1 addition & 1 deletion owner/owner-llm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Agent/LLM-логіка owner — тонкі функції пов
edition = "2021"

[dependencies]
llm-cascade = { git = "https://github.com/nitra/7n-rules.git" }
llm-cascade = { package = "llm-lib", git = "https://github.com/nitra/7n-rules.git", rev = "cdc1441ea8fd4822b41f884a1675e2c105d984c3" }

[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
2 changes: 1 addition & 1 deletion owner/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tauri-plugin-notification = "2"
tauri-plugin-opener = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
mt-core = { git = "https://github.com/nitra/mt.git" }
mt-core = { git = "https://github.com/nitra/mt-rust.git", rev = "7f82b456c51f32ed640a54f9db5e50b6674dd687" }
owner-llm = { path = "../owner-llm" }
notify = "8"
chrono = "0.4"
Expand Down