From 2599da829480901f60fe01ab9e89ba5b07284df9 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Tue, 27 Aug 2024 13:06:19 -0400 Subject: [PATCH] basic rust support --- .gitignore | 27 ++++++++++++++++++++++++++- Cargo.toml | 3 +++ configs/.gitconfig | 1 + configs/.zshrc | 2 +- install-linux.sh | 8 ++++++++ 5 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore index 603393e..81ced4d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,33 @@ /secrets /configs/remmina +/rust-bin + __pycache__ + .nvimlog # ewconfig modules /modules/* -!/modules/README.md \ No newline at end of file +!/modules/README.md + +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# RustRover +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..bcdef70 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,3 @@ +[workspace] +resolver = "2" +members = ["modules/*/crates/*"] \ No newline at end of file diff --git a/configs/.gitconfig b/configs/.gitconfig index 8fd7861..f229f65 100644 --- a/configs/.gitconfig +++ b/configs/.gitconfig @@ -62,6 +62,7 @@ c = commit aa = add . s = status + p = pull rebase-ch-i = rebase --reapply-cherry-picks -i [filter "lfs"] diff --git a/configs/.zshrc b/configs/.zshrc index b27d551..d4b2636 100644 --- a/configs/.zshrc +++ b/configs/.zshrc @@ -19,7 +19,7 @@ # Configure default binary and library paths export GOPATH="$HOME/go" -export PATH="$EWCONFIG_ROOT/scripts:$HOME/bin:$HOME/.local/bin:$PATH" +export PATH="$EWCONFIG_ROOT/scripts:$EWCONFIG_ROOT/rust-bin:$HOME/bin:$HOME/.local/bin:$PATH" export LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib64:$LD_LIBRARY_PATH" [[ -s "$GOPATH/bin" ]] && export PATH="$GOPATH/bin:$PATH" [[ -s "$HOME/.docker/bin" ]] && export PATH="$HOME/.docker/bin" diff --git a/install-linux.sh b/install-linux.sh index ad808be..ac2fa5a 100644 --- a/install-linux.sh +++ b/install-linux.sh @@ -109,6 +109,7 @@ ln -nsf $EWCONFIG_ROOT/configs/systemd/scripts ~/.config/systemd/scripts # GitLab CLI ln -sf $EWCONFIG_ROOT/configs/glab-cli/aliases.yml ~/.config/glab-cli/aliases.yml +chmod 600 ~/.config/glab-cli/aliases.yml # iTerm2 # NOTE: Manually set the settings dir. @@ -144,6 +145,13 @@ if [ -d ~/houdini19.5 ]; then mkdir -p ~/houdini19.5/scripts; ln -sf $EWCONFIG_R # Link blender scripts for appropriate versions if [ -d ~/.config/blender/3.6 ]; then ln -sf $EWCONFIG_ROOT/configs/blender/3.x/scripts/addons/* ~/.config/blender/3.6/scripts/addons/; fi +# If we have `cargo` and $NO_RUST is not set, build and install rust tooling +if type -p cargo > /dev/null && [ -z "$NO_RUST" ]; then + mkdir -p $EWCONFIG_ROOT/rust-bin + cargo build --all --release || true + cp $EWCONFIG_ROOT/target/release/* $EWCONFIG_ROOT/rust-bin +fi + # -- Finalization -- # On systems that need it, configure Gnome