diff --git a/Cargo.toml b/Cargo.toml index b9d66c7..ba6ed2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,12 @@ name = "refold" version = "0.1.0" edition = "2021" +license = "GPL-2.0-or-later" +repository = "https://github.com/wr7/refold" +description = "A command-line utility for wrapping text" +keywords = ["fold", "wrap", "line_wrapping"] +categories = ["command-line-utilities"] + [dependencies] argtea = "0.1.2" textwrap = "0.16.1" diff --git a/README.md b/README.md new file mode 100644 index 0000000..d993e84 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +## Refold +Refold is a commandline tool with similar functionality to unix `fold`. + +Refold by default uses the unicode split property to determine where it can +split text. Additionally, it will automatically detect line prefixes and empty +lines. This makes wrapping comments or doc-comments a breeze.