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
//! Task edit helpers shared by CLI and GUI clients.
//!
//! Purpose:
//! - Task edit helpers shared by CLI and GUI clients.
//!
//! Responsibilities:
//! - Apply edits to a single task and update related timestamps.
//! - Parse and validate edit input (status, priority, custom fields, RFC3339 values).
//! - Preview changes before applying them.
//!
//! Non-scope:
//! - Persisting queue files or locating tasks outside the provided queue.
//! - Cross-task dependency resolution beyond status policy checks.
//!
//!
//! Usage:
//! - Used through the crate module tree or integration test harness.
//!
//! Invariants:
//! - Callers provide a loaded `QueueFile` and a valid RFC3339 `now` value.
//! - Task IDs are matched after trimming and are case-sensitive.
pub use apply_task_edit;
pub use TaskEditKey;
pub use ;
// Internal helper re-exported for tests (crate-visible only)
pub use format_field_value;