basic rust support
This commit is contained in:
parent
ae052f5a73
commit
2599da8294
27
.gitignore
vendored
27
.gitignore
vendored
@ -1,8 +1,33 @@
|
||||
/secrets
|
||||
/configs/remmina
|
||||
/rust-bin
|
||||
|
||||
__pycache__
|
||||
|
||||
.nvimlog
|
||||
|
||||
# ewconfig modules
|
||||
/modules/*
|
||||
!/modules/README.md
|
||||
!/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/
|
3
Cargo.toml
Normal file
3
Cargo.toml
Normal file
@ -0,0 +1,3 @@
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = ["modules/*/crates/*"]
|
@ -62,6 +62,7 @@
|
||||
c = commit
|
||||
aa = add .
|
||||
s = status
|
||||
p = pull
|
||||
rebase-ch-i = rebase --reapply-cherry-picks -i
|
||||
|
||||
[filter "lfs"]
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user