chore: remove daemon crate

This commit is contained in:
2026-06-20 22:41:24 +09:00
parent 3bc0de1762
commit 673c739909
10 changed files with 33 additions and 53 deletions
-10
View File
@@ -1,10 +0,0 @@
[package]
name = "daemon"
version = "0.1.0"
edition.workspace = true
license.workspace = true
[dependencies]
manifest = { workspace = true }
protocol = { workspace = true }
tokio = { workspace = true, features = ["full"] }
-25
View File
@@ -1,25 +0,0 @@
# daemon
## Role
`daemon` is reserved for future long-lived Pod lifecycle management.
## Boundaries
Owns:
- daemon-specific lifecycle coordination when that design is implemented
Does not own today:
- current Pod socket serving (`pod`)
- normal CLI/TUI startup (`yoi`, `tui`)
- live registry mechanics already handled elsewhere (`pod-registry`)
## Design notes
This crate exists as a placeholder. Do not route current runtime authority through it until there is a concrete daemon design and work item.
## See also
- [`../../docs/design/pod-session-state.md`](../../docs/design/pod-session-state.md)
-1
View File
@@ -1 +0,0 @@
+2 -2
View File
@@ -2725,7 +2725,7 @@ mod completion_flow_tests {
let _ = app.refresh_completion();
app.completion.as_mut().unwrap().entries = vec![
CompletionEntry {
value: "crates/daemon".into(),
value: "crates/client".into(),
is_dir: true,
},
CompletionEntry {
@@ -2810,7 +2810,7 @@ mod completion_flow_tests {
}
let _ = app.refresh_completion();
app.completion.as_mut().unwrap().entries = vec![CompletionEntry {
value: "crates/daemon".into(),
value: "crates/client".into(),
is_dir: true,
}];
assert!(!app.chipify_completion_if_exact_match());