From 60cdf32f71d200edafb00056b287f07b0a14628a Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 16 Jun 2023 11:27:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=BB=BAbind=E5=B7=A5=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bash-5.1/builtins_rust/bind/Cargo.toml | 16 ++++++++++++++++ bash-5.1/builtins_rust/bind/src/lib.rs | 1 + 2 files changed, 17 insertions(+) create mode 100644 bash-5.1/builtins_rust/bind/Cargo.toml create mode 100644 bash-5.1/builtins_rust/bind/src/lib.rs diff --git a/bash-5.1/builtins_rust/bind/Cargo.toml b/bash-5.1/builtins_rust/bind/Cargo.toml new file mode 100644 index 00000000..22f987f4 --- /dev/null +++ b/bash-5.1/builtins_rust/bind/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "rbind" +version = "0.1.0" +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +libc = "*" +nix = "*" +rcommon = {path = "../common"} +rhelp = {path ="../help"} + +[lib] +crate-type = ["staticlib","rlib"] +name = "rbind" diff --git a/bash-5.1/builtins_rust/bind/src/lib.rs b/bash-5.1/builtins_rust/bind/src/lib.rs new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/bash-5.1/builtins_rust/bind/src/lib.rs @@ -0,0 +1 @@ + -- Gitee