fix: add relevancy and suggest to docs (and workspace members)

This commit is contained in:
Bastian Gruber 2024-09-24 11:39:20 -03:00
Родитель b005b51356
Коммит b10c1319e7
4 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -95,6 +95,8 @@ default-members = [
"components/push",
"components/remote_settings",
"components/search",
"components/relevancy",
"components/suggest",
"components/support/error",
"components/support/error/macros",
"components/support/error/tests",

Просмотреть файл

@ -50,7 +50,9 @@
- [places](rust-docs/places/index.html)
- [push](rust-docs/push/index.html)
- [remote_settings](rust-docs/remote_settings/index.html)
- [relevancy](rust-docs/relevancy/index.html)
- [search](rust-docs/search/index.html)
- [suggest](rust-docs/suggest/index.html)
- [sync15](rust-docs/sync15/index.html)
- [tabs](rust-docs/tabs/index.html)
- [viaduct](rust-docs/viaduct/index.html)

Просмотреть файл

Просмотреть файл

@ -9,6 +9,11 @@
set -xe
if [[ ! -f "$(pwd)/tools/build-book.sh" ]]; then
echo "ERROR: build-book.sh should be run from the root directory of the repo"
exit 1
fi
# Generate the Rust docs and move them over to the book.
# We document all features. Ideally we'd leverage https://docs.rs/document-features/latest/document_features/
# so the features themselves are documented, but that's another dependency or another yak, so for another day.