mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-26 20:15:07 +08:00
update the readme + dependencies
This commit is contained in:
parent
e1053989c0
commit
c94952e25d
@ -5,12 +5,12 @@
|
|||||||
Currently you can only fuzz the indexation.
|
Currently you can only fuzz the indexation.
|
||||||
To execute the fuzzer run:
|
To execute the fuzzer run:
|
||||||
```
|
```
|
||||||
cargo fuzz run indexing
|
cargo +nightly fuzz run indexing
|
||||||
```
|
```
|
||||||
|
|
||||||
To execute the fuzzer on multiple thread you can also run:
|
To execute the fuzzer on multiple thread you can also run:
|
||||||
```
|
```
|
||||||
cargo fuzz run -j4 indexing
|
cargo +nightly fuzz run -j4 indexing
|
||||||
```
|
```
|
||||||
|
|
||||||
Since the fuzzer is going to create a lot of temporary file to let milli index its documents
|
Since the fuzzer is going to create a lot of temporary file to let milli index its documents
|
||||||
|
@ -14,7 +14,7 @@ heed = { git = "https://github.com/Kerollmops/heed", tag = "v0.12.1" }
|
|||||||
serde_json = { version = "1.0.62", features = ["preserve_order"] }
|
serde_json = { version = "1.0.62", features = ["preserve_order"] }
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
tempfile = "3.3"
|
tempfile = "3.3"
|
||||||
arbitrary-json = { path = "../../../arbitrary-json" }
|
arbitrary-json = { git = "https://github.com/irevoire/arbitrary-json" }
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
jemallocator = "0.3.2"
|
jemallocator = "0.3.2"
|
||||||
|
Loading…
Reference in New Issue
Block a user