-
r3bl_ansi_color
Discontinued Rust crate to generate formatted ANSI 256 (8-bit) and truecolor (24-bit) color output to stdout
If you would like to get involved in an open source project and like Rust crates, please feel free to contribute to the r3bl_ansi_color repo. There are a lot of small features that need to be added. And they can be a nice stepping stone into the world of open source contribution 🎉.
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
# `all` variant that only runs on Windows. The only thing that is different is the shell. # https://github.com/casey/just#enabling-and-disabling-recipes [windows] all: set windows-shell := ["powershell.exe", "-c"] just all_cross_platform # `all` variant that only runs on Linux and macOS. Using the default shell. # https://github.com/casey/just#enabling-and-disabling-recipes [unix] all: just all_cross_platform # `all` command that runs on Windows, Linux and macOS. all_cross_platform: just build just test just clippy just docs just rustfmt
-
watch-one-test test_name: # More info on cargo test: https://doc.rust-lang.org/cargo/commands/cargo-test.html # More info on cargo watch: https://github.com/watchexec/cargo-watch cargo watch -x check -x 'test -- --test-threads=1 --nocapture {{test_name}}' -c -q