Integrate all the progress into master #6

Merged
jaby merged 595 commits from ToolBox into main 2025-01-01 13:17:44 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit cac7487dbf - Show all commits

View File

@ -14,7 +14,7 @@ pub use readmap_helper::get_tool_output;
pub type EventReceiver = std::sync::mpsc::Receiver<Event<crossterm::event::KeyEvent>>;
pub type Terminal = ratatui::Terminal<ratatui::backend::CrosstermBackend<std::io::Stdout>>;
type ConsoleFrame<'a> = ratatui::Frame<'a, ratatui::backend::CrosstermBackend<std::io::Stdout>>;
type ConsoleFrame<'a> = ratatui::Frame<'a>;
pub enum Event<I> {
Input(I),

View File

@ -32,6 +32,11 @@ elif [ $2 = clean ]; then
echo "cargo clean $1"
$HOME/.cargo/bin/cargo clean
exit $?
elif [ $2 = update ]; then
echo "cargo update $1"
$HOME/.cargo/bin/cargo update
exit $?
else
echo "Unkown cargo command $2 for project $1"