From a25631b365b6e31a4e32fe96edde91825eecf705 Mon Sep 17 00:00:00 2001 From: wangmengc Date: Wed, 9 Aug 2023 17:03:18 +0800 Subject: [PATCH] builtins_rust: add let plugin --- bash-5.1/Cargo.toml | 5 ++++- record.txt | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bash-5.1/Cargo.toml b/bash-5.1/Cargo.toml index 0bb665e..aca5602 100644 --- a/bash-5.1/Cargo.toml +++ b/bash-5.1/Cargo.toml @@ -8,7 +8,8 @@ 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/history"] +members = ["builtins_rust/read", "builtins/command1", "builtins/command2", "builtins_rust/history", "builtins_rust/kill", +"builtins_rust/rlet"] [dependencies] libc = "0.2" @@ -16,3 +17,5 @@ command1 = {path = "./builtins/command1"} command2 = {path = "./builtins/command2"} read = {path = "./builtins_rust/read"} history = {path = "./builtins_rust/history"} +kill = {path = "./builtins_rust/kill"} +rlet = {path = "./builtins_rust/rlet"} diff --git a/record.txt b/record.txt index d41c185..684aab6 100644 --- a/record.txt +++ b/record.txt @@ -20,3 +20,4 @@ 19 20 21 +22 -- Gitee