|
3 years ago | |
---|---|---|
src | 5 years ago | |
.gitignore | 6 years ago | |
Cargo.lock | 5 years ago | |
Cargo.toml | 5 years ago | |
README.md | 3 years ago |
# first, download the in-progress rust library
# it is included by relative path to the linode-curses project
$ git clone https://git.stj.io/stjacobs/linode-rs.git
$ git clone https://git.stj.io/stjacobs/linode-curses.git
$ cd linode-curses
$ LINODE_API_TOKEN=$(cat ~/.linode.token) cargo run
Code should be run through clippy.
# install
$ rustup run nightly cargo install clippy
# run on project code
$ LINODE_API_TOKEN=$(cat ~/.linode.token) cargo +nightly clippy
Code should be formatted with rustfmt.
# install
$ rustup run nightly cargo install rustfmt
# run on project code
$ cargo +nightly fmt