chore: remove daemon crate
This commit is contained in:
@@ -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"] }
|
||||
@@ -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 +0,0 @@
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user