2021-05-25 17:09:14 +02:00
|
|
|
[package]
|
|
|
|
name = "benchmarks"
|
|
|
|
publish = false
|
|
|
|
|
2023-02-15 13:51:07 +01:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
|
2021-05-25 17:09:14 +02:00
|
|
|
[dependencies]
|
2023-04-11 15:23:51 +02:00
|
|
|
anyhow = "1.0.70"
|
|
|
|
csv = "1.2.1"
|
2023-04-24 00:26:08 +02:00
|
|
|
milli = { path = "../milli" }
|
2023-04-11 15:23:51 +02:00
|
|
|
mimalloc = { version = "0.1.36", default-features = false }
|
|
|
|
serde_json = { version = "1.0.95", features = ["preserve_order"] }
|
2022-08-10 12:31:09 +02:00
|
|
|
|
2021-05-25 17:09:14 +02:00
|
|
|
[dev-dependencies]
|
2022-10-04 11:29:39 +02:00
|
|
|
criterion = { version = "0.4.0", features = ["html_reports"] }
|
2022-06-16 10:17:58 +02:00
|
|
|
rand = "0.8.5"
|
|
|
|
rand_chacha = "0.3.1"
|
2022-10-04 11:29:39 +02:00
|
|
|
roaring = "0.10.1"
|
2021-05-25 17:09:14 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-04-11 15:23:51 +02:00
|
|
|
anyhow = "1.0.70"
|
|
|
|
bytes = "1.4.0"
|
2022-10-04 11:29:39 +02:00
|
|
|
convert_case = "0.6.0"
|
2023-04-11 15:23:51 +02:00
|
|
|
flate2 = "1.0.25"
|
|
|
|
reqwest = { version = "0.11.16", features = ["blocking", "rustls-tls"], default-features = false }
|
2021-05-25 17:09:14 +02:00
|
|
|
|
2022-08-16 20:02:46 +02:00
|
|
|
[features]
|
2023-04-24 00:26:08 +02:00
|
|
|
default = ["milli/all-tokenizations"]
|
2022-08-16 20:02:46 +02:00
|
|
|
|
2021-05-25 17:09:14 +02:00
|
|
|
[[bench]]
|
2021-07-29 14:30:33 +02:00
|
|
|
name = "search_songs"
|
2021-05-25 17:09:14 +02:00
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
2021-07-29 14:30:33 +02:00
|
|
|
name = "search_wiki"
|
2021-05-25 17:09:14 +02:00
|
|
|
harness = false
|
2021-07-07 11:42:14 +02:00
|
|
|
|
2021-09-13 18:08:28 +02:00
|
|
|
[[bench]]
|
|
|
|
name = "search_geo"
|
|
|
|
harness = false
|
|
|
|
|
2021-07-07 11:42:14 +02:00
|
|
|
[[bench]]
|
|
|
|
name = "indexing"
|
|
|
|
harness = false
|