diff --git a/meilisearch-types/Cargo.toml b/meilisearch-types/Cargo.toml index 017359d25..77a3fd53b 100644 --- a/meilisearch-types/Cargo.toml +++ b/meilisearch-types/Cargo.toml @@ -50,3 +50,6 @@ hebrew = ["milli/hebrew"] japanese = ["milli/japanese"] # thai specialized tokenization thai = ["milli/thai"] + +# allow greek specialized tokenization +greek = ["milli/greek"] diff --git a/meilisearch/Cargo.toml b/meilisearch/Cargo.toml index 92588a063..80c5ee6c1 100644 --- a/meilisearch/Cargo.toml +++ b/meilisearch/Cargo.toml @@ -113,6 +113,7 @@ chinese = ["meilisearch-types/chinese"] hebrew = ["meilisearch-types/hebrew"] japanese = ["meilisearch-types/japanese"] thai = ["meilisearch-types/thai"] +greek = ["meilisearch-types/greek"] [package.metadata.mini-dashboard] assets-url = "https://github.com/meilisearch/mini-dashboard/releases/download/v0.2.7/build.zip" diff --git a/milli/Cargo.toml b/milli/Cargo.toml index 880dceeb6..e2d5994a9 100644 --- a/milli/Cargo.toml +++ b/milli/Cargo.toml @@ -91,4 +91,4 @@ korean = ["charabia/korean"] thai = ["charabia/thai"] # allow greek specialized tokenization -greek = [] +greek = ["charabia/greek"]