1#!/usr/bin/env bash 2# Copyright 2021 The ChromiumOS Authors 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6set -ex 7 8# Build cargo-doc 9# $ ./tools/cargo-doc --target-dir /path/to/dir 10 11cargo doc \ 12 --workspace \ 13 --no-deps \ 14 --exclude crosvm-fuzz \ 15 --features="all-x86_64" \ 16 --document-private-items \ 17 "$@" 18