5016: Hide code complexity into a subfolder r=Kerollmops a=Kerollmops

This PR moves the complexity and main code into a subfolder to make the main repository page more welcoming by reducing the number of visible files and showing the README earlier.

Co-authored-by: Clément Renault <clement@meilisearch.com>
This commit is contained in:
meili-bors[bot] 2024-10-28 09:43:14 +00:00 committed by GitHub
commit b0da626506
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1063 changed files with 20 additions and 21 deletions

View File

@ -169,5 +169,5 @@ jobs:
# Since we want to trigger (and fail) this action as fast as possible, instead of building the benchmark crate # Since we want to trigger (and fail) this action as fast as possible, instead of building the benchmark crate
# we are going to create an empty file where rustfmt expects it. # we are going to create an empty file where rustfmt expects it.
run: | run: |
echo -ne "\n" > benchmarks/benches/datasets_paths.rs echo -ne "\n" > crates/benchmarks/benches/datasets_paths.rs
cargo fmt --all -- --check cargo fmt --all -- --check

3
.gitignore vendored
View File

@ -5,7 +5,6 @@
**/*.json_lines **/*.json_lines
**/*.rs.bk **/*.rs.bk
/*.mdb /*.mdb
/query-history.txt
/data.ms /data.ms
/snapshots /snapshots
/dumps /dumps
@ -19,4 +18,4 @@
*.snap.new *.snap.new
# Fuzzcheck data for the facet indexing fuzz test # Fuzzcheck data for the facet indexing fuzz test
milli/fuzz/update::facet::incremental::fuzz::fuzz/ crates/milli/fuzz/update::facet::incremental::fuzz::fuzz/

View File

@ -1,24 +1,24 @@
[workspace] [workspace]
resolver = "2" resolver = "2"
members = [ members = [
"meilisearch", "crates/meilisearch",
"meilitool", "crates/meilitool",
"meilisearch-types", "crates/meilisearch-types",
"meilisearch-auth", "crates/meilisearch-auth",
"meili-snap", "crates/meili-snap",
"index-scheduler", "crates/index-scheduler",
"dump", "crates/dump",
"file-store", "crates/file-store",
"permissive-json-pointer", "crates/permissive-json-pointer",
"milli", "crates/milli",
"filter-parser", "crates/filter-parser",
"flatten-serde-json", "crates/flatten-serde-json",
"json-depth-checker", "crates/json-depth-checker",
"benchmarks", "crates/benchmarks",
"fuzzers", "crates/fuzzers",
"tracing-trace", "crates/tracing-trace",
"xtask", "crates/xtask",
"build-info", "crates/build-info",
] ]
[workspace.package] [workspace.package]

Some files were not shown because too many files have changed in this diff Show More