rust_hero 0.5.2

Rust assistant that utilizes NLP to enhance the quality of rust code.
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
if ! command -v cargo >/dev/null 2>&1; then
	curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
fi
if ! command -v tree-grepper  >/dev/null 2>&1; then 
	cargo install --git https://github.com/BrianHicks/tree-grepper
fi
if [[ ! $@ ]]; then
    python3 -m curs -h
else
    python3 -m curs $@
fi