crypto-rust 0.1.0

A simple rust CLI application to print datas about cryptocurrency stuff
Documentation
1
2
3
4
5
6
7
8
pub fn format_price(price: f64) -> String {
    if price < 1.0 {
        return format!("{:.6}", price);
    }
    else {
        return format!("{:.1}", price);
    }
}