MeiliSearch/Cargo.toml

22 lines
579 B
TOML
Raw Normal View History

[workspace]
2022-03-16 11:47:27 +01:00
resolver = "2"
2022-04-11 18:43:44 +02:00
members = ["milli", "filter-parser", "flatten-serde-json", "json-depth-checker", "http-ui", "benchmarks", "infos", "helpers", "cli"]
default-members = ["milli"]
2021-06-08 11:59:44 +02:00
[profile.dev]
opt-level = 3
2020-05-25 20:39:53 +02:00
[profile.release]
debug = true
2020-06-18 18:37:57 +02:00
# Make sure that the build scripts and proc-macros are compiled with
# all the optimizations. It speeds up the zip crate that we use in the build.rs.
[profile.dev.build-override]
opt-level = 3
[profile.release.build-override]
opt-level = 3
[profile.bench.build-override]
opt-level = 3
[profile.test.build-override]
opt-level = 3