mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-04 20:18:55 +01:00
29 lines
533 B
TOML
29 lines
533 B
TOML
[package]
|
|
name = "benchmarks"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
|
|
[dependencies]
|
|
milli = { path = "../milli" }
|
|
|
|
[dev-dependencies]
|
|
heed = "*" # we want to use the version milli uses
|
|
criterion = { version = "0.3.4", features = ["html_reports"] }
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0"
|
|
bytes = "1.0"
|
|
flate2 = "1.0.20"
|
|
convert_case = "0.4"
|
|
reqwest = { version = "0.11.3", features = ["blocking", "rustls-tls"], default-features = false }
|
|
|
|
[[bench]]
|
|
name = "songs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "wiki"
|
|
harness = false
|