| Crates.io | shrs_command_timer |
| lib.rs | shrs_command_timer |
| version | 0.0.6 |
| created_at | 2023-06-04 15:16:05.683976+00 |
| updated_at | 2024-06-01 04:54:58.13833+00 |
| description | shrs plugin to time how long the previous command took to run |
| homepage | https://mrpicklepinosaur.github.io/shrs/ |
| repository | https://github.com/MrPicklePinosaur/shrs |
| max_upload_size | |
| id | 882303 |
| size | 58,858 |
This is a plugin for shrs.
First add this plugin to your dependencies
shrs_command_timer = { version = "0.0.6" }
Then include this plugin when initializing shrs
use shrs::prelude::*;
use shrs_command_timer::CommandTimerPlugin;
let myshell = ShellBuilder::default()
.with_plugin(CommandTimerPlugin)
.build()
.unwrap();