From 464589059a92b8b5a2cc4f144c7d688151e4728c Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sat, 28 Feb 2026 10:53:17 -0600 Subject: [PATCH] store: Rust/Cargo installation and fish shell PATH setup on Cal's workstation --- ...ish-shell-path-setup-on-cals-wor-baa10a.md | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 graph/configurations/rustcargo-installation-and-fish-shell-path-setup-on-cals-wor-baa10a.md diff --git a/graph/configurations/rustcargo-installation-and-fish-shell-path-setup-on-cals-wor-baa10a.md b/graph/configurations/rustcargo-installation-and-fish-shell-path-setup-on-cals-wor-baa10a.md new file mode 100644 index 00000000000..fa6cb6392cd --- /dev/null +++ b/graph/configurations/rustcargo-installation-and-fish-shell-path-setup-on-cals-wor-baa10a.md @@ -0,0 +1,32 @@ +--- +id: baa10a3d-8ec9-4a5b-bb1c-1c80f265473f +type: configuration +title: "Rust/Cargo installation and fish shell PATH setup on Cal's workstation" +tags: [rust, cargo, fish, configuration, workstation, rustup] +importance: 0.4 +confidence: 0.8 +created: "2026-02-28T16:53:17.852372+00:00" +updated: "2026-02-28T16:53:17.852372+00:00" +--- + +# Rust Toolchain Setup + +**Workstation:** Cal's Linux workstation + +## Installation + +Rust installed via `rustup` — current version **v1.93.1** (as of 2026-02-28). + +## Fish Shell PATH + +For fish shell, source the env file to activate cargo in PATH: + +```fish +source ~/.cargo/env.fish +``` + +Rustup auto-configures fish via `~/.config/fish/conf.d/` so this may already be active in new shells. + +## Build Cache + +Cargo stores compiled artifacts in `target/` directory. Incremental builds only recompile changed files, so subsequent builds are significantly faster than the first.