From c69337d03dd8d4df8396a592f00b065949c0ad2c Mon Sep 17 00:00:00 2001 From: zhanghuanhuan Date: Wed, 9 Aug 2023 16:36:26 +0800 Subject: [PATCH] builtins_rust: add history plugin --- bash-5.1/Cargo.toml | 4 ++-- record.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bash-5.1/Cargo.toml b/bash-5.1/Cargo.toml index 6e02f0a..0bb665e 100644 --- a/bash-5.1/Cargo.toml +++ b/bash-5.1/Cargo.toml @@ -8,11 +8,11 @@ crate-type = ["cdylib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [workspace] -members = ["builtins_rust/read", "builtins/command1", "builtins/command2", "builtins_rust/common"] +members = ["builtins_rust/read", "builtins/command1", "builtins/command2", "builtins_rust/history"] [dependencies] libc = "0.2" command1 = {path = "./builtins/command1"} command2 = {path = "./builtins/command2"} read = {path = "./builtins_rust/read"} -common = {path = "./builtins_rust/common"} +history = {path = "./builtins_rust/history"} diff --git a/record.txt b/record.txt index fa7b73e..730862b 100644 --- a/record.txt +++ b/record.txt @@ -13,3 +13,4 @@ 12 13 14 +15 -- Gitee