ecbt 0.1.9

High performance cryptocurrency trading API with support for user defined networking.
Documentation
1
2
3
4
5
6
7
8
use std::process::Command;

fn main() {
    Command::new("cargo")
        .args(&["fmt", "--", "src/*.rs"])
        .status()
        .expect("cargo fmt failed");
}