1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[]
= "kanade-client"
= "End-user-facing Tauri Client App for the kanade endpoint-management system. Talks to the LocalSystem agent over the KLP Named Pipe (SPEC §2.12); presents a tray + window UI for notifications / health / self-service jobs."
= "../../README.md"
= true
= true
= true
= true
= true
= true
= true
= true
= true
# The Client App targets Windows endpoints (SPEC §2.1's
# "ログオン時自動起動 (HKCU…Run)" + the Named Pipe transport in
# SPEC §2.12.1). Tauri's runtime and the KLP Named Pipe client
# are both Windows-bound here, so we cfg-gate every Tauri-stack
# dependency to `target_os = "windows"`. Linux/macOS CI builds
# kanade-client as an empty shim that prints + exits (see
# src/main.rs). Linux UDS support lands in a follow-up PR and
# will widen the gate.
[]
= { = true }
# Cross-platform bits used by the non-Windows shim path too.
= { = true }
[]
# Tauri 2.x runtime. No extra features yet — system tray /
# notification plugins land in follow-up PRs as their handlers
# come online.
= { = "2.11.2", = [] }
# Serde for the IPC commands' params / results.
= { = true }
= { = true }
# Tokio runtime for the KLP pipe I/O. Reuse the workspace's
# pin so the wire types stay in lockstep with the agent side.
= { = true }
= { = true }
= { = true }
# UUID v7 for KLP request ids (SPEC §2.12.3 "UUID v7 推奨").
= { = true }
= { = true }
[]
# `tauri-build` reads `tauri.conf.json` at build time and
# generates the context macro consumed in `app::run`. Gated to
# Windows targets so non-Windows CI doesn't have to compile
# Tauri's build helper (which transitively pulls in heavy
# platform-specific deps).
#
# #260: `build.rs` syncs `version` in tauri.conf.json with the
# workspace's CARGO_PKG_VERSION before tauri-build runs, so the
# binary's embedded VERSIONINFO ProductVersion stays in lockstep
# with the Cargo version instead of drifting. Uses a targeted
# string-replace (no `serde_json` round-trip) so the rewrite
# preserves the file's original key order, formatting, and any
# future comments — anything an `serde_json::Value` round-trip
# would silently rewrite alphabetically (Gemini #266).
= { = "2.6.2", = [] }