From 407d80209036e96868239e9b1117465f99af74f3 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 20 Mar 2019 13:09:09 +0200 Subject: [PATCH] Improve Cargo.toml metadata * Improved description + Added categories field Implements #13 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d5bf206..c14380a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,9 @@ [package] name = "evalexpr" version = "1.0.0" -description = "Expression evaluator" +description = "A powerful arithmetic and boolean expression evaluator" keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"] +categories = ["parsing", "game-engines"] authors = ["isibboi "] repository = "https://github.com/ISibboI/evalexpr.git" homepage = "https://github.com/ISibboI/evalexpr"