1 个不稳定版本

0.0.6 2024年6月1日

#707命令行界面

MIT/Apache

37KB
119 代码行

shrs_file_history

基于文件的记录 MIT/Apache 2.0

这是 [shrs](https://github.com/MrPicklePinosaur/shrs) 的一个插件。

使用此插件

首先将此插件添加到依赖中

shrs_command_timer = { version = "0.0.6" }

然后在初始化 shrs 时包含此插件

use shrs::shell::ShellBuilder;
use shrs_file_history::FileBackedHistoryPlugin;
fn main() {
    let myshell = ShellBuilder::default()
        .with_plugin(FileBackedHistoryPlugin::new())
        .build()
        .unwrap();

    myshell.run().expect("Error when running shell");
}

依赖项

~15–32MB
~442K SLoC