krz/orgo

Lightning fast org-mode static site generator.

clone: git clone https://gitbay.org/krz/orgo.git

8bca363c88365cd8864e6c176a93f6a89d79e66a

unsigned

author: Christian Cleberg <hello@cleberg.net> · 2026-08-11T23:47:03Z

Shorten a keyword crates.io rejects

`static-site-generator` is 21 characters and the limit is 20, so the upload
bounced after packaging and verifying — the check is server-side, which is why
`cargo package` was perfectly happy with it.

Replaced with `static-site` and `ssg`, dropping `html` to stay within the five
keywords crates.io allows. The GitHub topics keep the long form; that limit is
different.

Both categories were checked against the registry's own list while I was here.
 Cargo.toml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index 33f5801..3e70080 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,8 @@ edition = "2021"
 description = "Org-mode static site generator that renders the org element tree straight to HTML"
 license = "0BSD"
 readme = "README.md"
-keywords = ["org-mode", "static-site-generator", "emacs", "html", "blog"]
+# crates.io caps a keyword at 20 characters, which "static-site-generator" is not.
+keywords = ["org-mode", "static-site", "ssg", "emacs", "blog"]
 categories = ["command-line-utilities", "text-processing"]
 repository = "https://github.com/krazywarez/orgo"
 homepage = "https://krazywarez.github.io/orgo/"