commit f3fd812ce2cfe81ac14f9fc2f5c38f6029d6c376 Author: licsber Date: Thu Sep 26 15:25:29 2024 +0800 init commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/empty-dir.iml b/.idea/empty-dir.iml new file mode 100644 index 0000000..cf84ae4 --- /dev/null +++ b/.idea/empty-dir.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..bb48c68 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..4909db9 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "empty-dir" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c064830 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "empty-dir" +version = "0.1.0" +authors = ["licsber "] +edition = "2021" + +description = "Remove empty dirs." +repository = "https://git.licsber.site/rust/empty-dir" +homepage = "https://blog.licsber.site" +readme = "README.md" +license = "AGPL-3.0-only" + +[dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000..79618a2 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# empty-dir + +Remove empty dirs. diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}