shrs_command_timer 0.0.6

shrs plugin to time how long the previous command took to run
Documentation

shrs_command_timer

shrs plugin to time runtime of commands

crates.io MIT/Apache 2.0

This is a plugin for shrs.

Using this plugin

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();