aboutsummaryrefslogtreecommitdiff
path: root/src/cli.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove tokio dependency and convert to synchronous code魏曹先生2026-04-191-15/+15
|
* Refactor output routing to use Into and to_render methods魏曹先生2026-04-181-13/+9
|
* Apply clippy suggestions魏曹先生2026-04-171-5/+2
| | | | | | | | | | - Use `BTreeMap::entry` API in `update_item` - Replace `or_insert_with(Vec::new)` with `or_default` - Iterate over map values instead of key-value pairs - Use `std::io::Error::other` for custom errors - Simplify filter logic with direct predicate - Replace manual `Into` implementation with `From` - Remove unnecessary explicit returns
* Add cat command to output bill content魏曹先生2026-04-171-0/+19
|
* Add help and version flags with external files魏曹先生2026-04-171-1/+11
|
* Add shell completion for CLI commands魏曹先生2026-04-171-3/+94
|
* Add edit command with table serialization support魏曹先生2026-04-171-28/+94
|
* Add CLI commands for bill management and persistence魏曹先生2026-04-161-6/+229
|
* Initialize Rust project with billing calculation functionality魏曹先生2026-04-161-0/+6