mynote/rust/rust.md
2022-07-04 00:46:47 +08:00

544 B
Raw Permalink Blame History

Rust

install

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup update

expand

# just for mac 
rustup toolchain install nightly-x86_64-apple-darwin

cargo +nightly install cargo-expand


cargo target

cargo 编译保存地址不保存到当前目录下多个cargo包可以共用缓存


mkdir -p ~/.cache/cargo/
export CARGO_TARGET_DIR="$HOME/.cache/cargo"

# or 
echo "[build]" > .cargo/config
echo "target-dir = \"$HOME/shared_rust_target\"" >> .cargo/config