blob: 27a9015dc444968cf5afb0ef5e8b5532753ee565 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash -ex
# tools/install-tool-dependencies
#
# Install Rust and Cargo components used by tool scripts, which are not part of
# Cargo.toml.
rustup component add clippy rustfmt
cargo install cargo-udeps
|