diff --git a/Cargo.toml b/Cargo.toml index 7929af0..ad96a9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,12 @@ version = "0.1.0" edition = "2021" authors = ["Grant Ramsay "] description = "A replacement for the 'ls' command written in Rust." +license = "MIT" +homepage = "https://seapagan.github.io/lsplus/" +repository = "https://github.com/seapagan/lsplus" +readme = "README.md" +categories = ["command-line-utilities","file-system"] +keywords = ["ls", "command-line", "utility", "file-system", "listing"] [[bin]] name = "lsp" diff --git a/README.md b/README.md index 91af713..23cc887 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,10 @@ This is currently a very simple (though functional) clone of the Unix 'ls' command written in Rust. It is a learning project for me to learn Rust so probably contains many inefficiencies and bad practices. I'll get better :grin: +> [!IMPORTANT] +> This project is currently only compatible with Unix-like systems (Linux, +MacOs, etc.). Windows support is planned to be added very soon. + ![lsp output](./docs/src/images/screenshot.png) ## Installation