r3bl_rs_utils 0.9.2

Async Redux library, TUI framework, and useful types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env fish

# 1. Make sure to install cargo-outdated via `cargo install --locked cargo-outdated`.
# More info about cargo-outdated: https://crates.io/crates/cargo-outdated

set -l folders . core macro redux tui

for folder in $folders
    pushd $folder
    echo (set_color brmagenta)"≡ Running cargo fmt --all in '$folder' .. ≡"(set_color normal)
    cargo fmt --all
    popd
end