bender 0.31.0

A dependency management tool for hardware projects.
Documentation
1
2
3
4
5
6
7
8
9
// Copyright (c) 2017 ETH Zurich
// Fabian Schuiki <fschuiki@iis.ee.ethz.ch>

fn main() {
    if let Err(e) = bender::cli::main() {
        bender::errorln!("{}", e);
        std::process::exit(1);
    }
}