mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 01:57:41 +08:00
dd76eaaaec
Some checks failed
Test suite / Tests on ${{ matrix.os }} (macos-13) (push) Waiting to run
Test suite / Tests on ubuntu-20.04 (push) Failing after 11s
Test suite / Tests almost all features (push) Has been skipped
Test suite / Test disabled tokenization (push) Has been skipped
Test suite / Tests on ${{ matrix.os }} (windows-2022) (push) Failing after 24s
Test suite / Run tests in debug (push) Failing after 10s
Test suite / Run Clippy (push) Successful in 6m35s
Test suite / Run Rustfmt (push) Successful in 1m52s
5076: Update version for the next release (v1.12.0) in Cargo.toml r=curquiza a=meili-bot
⚠️ This PR is automatically generated. Check the new version is the expected one and Cargo.lock has been updated before merging.
Co-authored-by: curquiza <curquiza@users.noreply.github.com>
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/meilisearch",
|
|
"crates/meilitool",
|
|
"crates/meilisearch-types",
|
|
"crates/meilisearch-auth",
|
|
"crates/meili-snap",
|
|
"crates/index-scheduler",
|
|
"crates/dump",
|
|
"crates/file-store",
|
|
"crates/permissive-json-pointer",
|
|
"crates/milli",
|
|
"crates/filter-parser",
|
|
"crates/flatten-serde-json",
|
|
"crates/json-depth-checker",
|
|
"crates/benchmarks",
|
|
"crates/fuzzers",
|
|
"crates/tracing-trace",
|
|
"crates/xtask",
|
|
"crates/build-info",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "1.12.0"
|
|
authors = [
|
|
"Quentin de Quelen <quentin@dequelen.me>",
|
|
"Clément Renault <clement@meilisearch.com>",
|
|
]
|
|
description = "Meilisearch HTTP server"
|
|
homepage = "https://meilisearch.com"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
|
|
[profile.dev.package.flate2]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.grenad]
|
|
opt-level = 3
|
|
[profile.dev.package.roaring]
|
|
opt-level = 3
|
|
|
|
[patch.crates-io]
|
|
roaring = { git = "https://github.com/RoaringBitmap/roaring-rs", branch = "clone-iter-slice" }
|