From 27954b52a530feb4b5d92aaa42604f5ea59df295 Mon Sep 17 00:00:00 2001 From: Ludwig Stecher Date: Fri, 11 Mar 2022 16:37:17 +0100 Subject: [PATCH] Add metadata --- example.rulex | 1 - rulex-bin/Cargo.toml | 7 ++++++- rulex-lib/Cargo.toml | 8 +++++++- rulex-macro/Cargo.toml | 7 ++++++- 4 files changed, 19 insertions(+), 4 deletions(-) delete mode 100644 example.rulex diff --git a/example.rulex b/example.rulex deleted file mode 100644 index 9fd8f7e..0000000 --- a/example.rulex +++ /dev/null @@ -1 +0,0 @@ -% :test('hello' | 'world' | [.] ['a'-'g'] (['-+' '0'-'9' 'a'-'f'])+ greedy) << "test" \ No newline at end of file diff --git a/rulex-bin/Cargo.toml b/rulex-bin/Cargo.toml index 84b4391..978465c 100644 --- a/rulex-bin/Cargo.toml +++ b/rulex-bin/Cargo.toml @@ -4,7 +4,12 @@ description = "Compile rulex expressions, a new regular expression language" version = "0.1.0" edition = "2021" authors = ["Ludwig Stecher "] -license = "MIT or Apache-2" +license = "MIT OR Apache-2.0" +homepage = "https://github.com/Aloso/rulex" +repository = "https://github.com/Aloso/rulex" +readme = "README.md" +keywords = ["regexp", "regex", "rulex"] +categories = ["text-processing", "command-line-utilities"] [[bin]] diff --git a/rulex-lib/Cargo.toml b/rulex-lib/Cargo.toml index 1969c7a..b583be6 100644 --- a/rulex-lib/Cargo.toml +++ b/rulex-lib/Cargo.toml @@ -4,7 +4,13 @@ description = "A new regular expression language" version = "0.1.0" edition = "2021" authors = ["Ludwig Stecher "] -license = "MIT or Apache-2" +license = "MIT OR Apache-2.0" +homepage = "https://github.com/Aloso/rulex" +repository = "https://github.com/Aloso/rulex" +documentation = "https://docs.rs/rulex" +readme = "../README.md" +keywords = ["regexp", "regex", "syntax", "parser", "rulex"] +categories = ["text-processing", "parser-implementations"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rulex-macro/Cargo.toml b/rulex-macro/Cargo.toml index 778f6fd..014447d 100644 --- a/rulex-macro/Cargo.toml +++ b/rulex-macro/Cargo.toml @@ -4,7 +4,12 @@ description = "Macro for converting rulex expressions to regexes" version = "0.1.0" edition = "2021" authors = ["Ludwig Stecher "] -license = "MIT or Apache-2" +license = "MIT OR Apache-2.0" +homepage = "https://github.com/Aloso/rulex/blob/main/rulex-macro" +repository = "https://github.com/Aloso/rulex" +documentation = "https://docs.rs/rulex-macro" +keywords = ["macro", "regexp", "regex", "rulex"] +categories = ["text-processing"] [lib] proc-macro = true