Reland "[build][rust] update firebase docs to use fx rustdoc-link"

This is a reland of commit 01d88e6d3c075658a9292e3c5226da114a572553

Original change's description:
> [build][rust] update firebase docs to use fx rustdoc-link
>
> This is more reliable than building rustdoc using generated Cargo.toml.
>
> Bug: 438060658
> Depends-on: I7e12e5fe740a0fa20beae96e126a8ddab6766eda
> Change-Id: If7922b562ace3246f6abd25d5dd7470115538095
> Reviewed-on: https://fuchsia-review.googlesource.com/c/infra/recipes/+/1346185
> Reviewed-by: Ina Huh <ihuh@google.com>
> Fuchsia-Auto-Submit: Ethan Williams <ethanws@google.com>
> Dependencies-Satisfied: CL Deps Checker <cl-deps-checker@fuchsia-internal-service-accts.iam.gserviceaccount.com>
> Commit-Queue: Ethan Williams <ethanws@google.com>

Compared to fxr/1346185, this reland adds mitigations for upstream bug
https://github.com/rust-lang/rust/issues/146646 by using an empty crate
as the crate root. It also calls a verifier script to avoid deploying
empty or obviously broken rustdoc.

Bug: 438060658, 443076590
Change-Id: I633c3c71b34a8f6fa7de15f849e858d3d4ad7142
Reviewed-on: https://fuchsia-review.googlesource.com/c/infra/recipes/+/1371170
Commit-Queue: Ethan Williams <ethanws@google.com>
Reviewed-by: Ina Huh <ihuh@google.com>
Reviewed-by: Jay Zhuang <jayzhuang@google.com>
5 files changed
tree: bfe58c5c9a5cc981190684b5e77e59d420e9d562
  1. git-hooks/
  2. infra/
  3. recipe_modules/
  4. recipe_proto/
  5. recipes/
  6. scripts/
  7. .editorconfig
  8. .git-blame-ignore-revs
  9. .gitignore
  10. AUTHORS
  11. GEMINI.md
  12. LICENSE
  13. OWNERS
  14. PATENTS
  15. pyproject.toml
  16. README.md
  17. recipes.py
  18. shac.ensure
  19. shac.star
  20. shac.textproto
  21. shac_internal.star
  22. TOOLCHAIN_OWNERS
README.md

Fuchsia Recipes

This repository contains recipes for Fuchsia.

A recipe is a Python script that runs a series of commands, using the recipe engine framework from the LUCI project. We use recipes to automatically check out, build, and test Fuchsia in continuous integration jobs. The commands the recipes use are very similar to the ones you would use as a developer to check out, build, and test Fuchsia in your local environment.

See go/fuchsia-recipe-docs for complete documentation and a guide for getting started with writing recipes.

Getting the code and setting up your environment

For everyday development

The recommended way to get the source code is with jiri. A recipe will not run without vpython and cipd, and using these recommended jiri manifests will ensure that you have these tools.

You can use the fuchsia infra Jiri manifest or the internal version (Googlers-only). Once that manifest is imported in your local jiri manifest, jiri update should download vpython and cipd into <JIRI ROOT>/fuchsia-infra/prebuilt/tools/. If you add that directory to your PATH, you should be good to go.

Quick changes

If you're just trying to make a single small change to in this repository and already have your local environment set up for recipe development (e.g. because you work with another recipes repository) you can simply clone this repository with git:

git clone https://fuchsia.googlesource.com/infra/recipes

Then it will be up to you to ensure that vpython and cipd are available in your PATH.

Code formatting

We format python code using Black, an open-source Python autoformatter. It should be in your PATH if you followed the instructions for setting up your environment.

After committing recipe changes, you can format the files in your commit by running black . in your project root.

Many editors also have a setting to run Black automatically whenever you save a Python file (or on a keyboard shortcut). For VS Code, add the following to your workspace settings.json to make your editor compatible with Black and turn on auto-formatting on save:

{
    "python.formatting.provider": "black",
    "python.formatting.blackPath": "<absolute path to the black executable>",
    "[python]": {
        "editor.formatOnSave": true,
        "editor.rulers": [88], // Black enforces a line length of 88 characters.
    },
    ...
}