mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-31 07:56:28 +00:00 
			
		
		
		
	Allow building without specialized tokenizations
(Some of) these specialized tokenizations include huge dictionaries that currently account for 90% (!) of the meilisearch binary size. This commit adds chinese, hebrew, japanese, and thai feature flags that are propagated via milli down to the charabia crate. To keep it backward compatible, they are enabled by default. Related to meilisearch/milli#632
This commit is contained in:
		| @@ -7,7 +7,7 @@ edition = "2021" | ||||
| enum-iterator = "0.7.0" | ||||
| hmac = "0.12.1" | ||||
| meilisearch-types = { path = "../meilisearch-types" } | ||||
| milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.33.4" } | ||||
| milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.33.4", default-features = false } | ||||
| rand = "0.8.4" | ||||
| serde = { version = "1.0.136", features = ["derive"] } | ||||
| serde_json = { version = "1.0.85", features = ["preserve_order"] } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user