1 unstable release
0.2.0 | Apr 13, 2019 |
---|
#28 in #kraken
6KB
64 lines
kraken-price
A Rust cli tool to query Kraken's current btc-usd price, with doge added as a bonus. Other coins beware.
Quick start
kraken-price btc
kraken-price doge
kraken-price --help
Compile the binaries yourself
Kraken-price is written in Rust, so you'll need to grab a Rust installation in order to compile it. Once you have Rust installed on your computer, you can easily use the tool by compiling the binaries yourself like so;
- clone this repository locally;
- enter the repo;
- use
cargo build --release
; - move the compiled binary in your PATH (for MacOS and Linux, the default directory for those binaries would be
usr/local/bin
); - run using
kraken-price
in your command line, or rename the file your preferred command if you wish to use a different one.
git clone https://github.com/thunder-B/kraken-price
cd kraken-price
cargo build --release
cd ./target/release/bin/
cp ./kraken-price /usr/local/bin/ # MacOS and Linux
# test it out!
kraken-price dentacoin
Download the binaries from crates.io
The binary crate is also released on crates.io, which means you can install it directly from cargo (note that the binaries will then be built in release mode and put into your ~/.cargo/bin/
directory);
cargo install kraken-price
Download the binaries from Github
The zipped binaries for all 3 main operating systems are also downloadable from the releases page of the project's github repository.
Dependencies
~3.5–6MB
~124K SLoC