From ae2bbfbec8dde0fc0d0591326868b9e4dde8ba61 Mon Sep 17 00:00:00 2001 From: zhanghuanhuan Date: Mon, 9 Oct 2023 17:19:55 +0800 Subject: [PATCH] init variables file --- bash-5.1/r_variables/Cargo.toml | 14 ++++++++++++++ bash-5.1/r_variables/src/lib.rs | 0 2 files changed, 14 insertions(+) create mode 100644 bash-5.1/r_variables/Cargo.toml create mode 100644 bash-5.1/r_variables/src/lib.rs diff --git a/bash-5.1/r_variables/Cargo.toml b/bash-5.1/r_variables/Cargo.toml new file mode 100644 index 0000000..48cac15 --- /dev/null +++ b/bash-5.1/r_variables/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "r_variables" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +libc = "*" +r_bash = {path = "../r_bash"} + +[lib] +name = "r_variables" +crate-type = ["rlib", "staticlib"] diff --git a/bash-5.1/r_variables/src/lib.rs b/bash-5.1/r_variables/src/lib.rs new file mode 100644 index 0000000..e69de29 -- Gitee