blob: 0cdab68b41b36b56a7d663c7c391184035825b10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
extern crate ilc_cli;
use ilc_cli::Cli;
static MASTER: &'static str = include_str!("../.git/refs/heads/master");
fn main() {
ilc_cli::main(Cli {
version: env!("CARGO_PKG_VERSION").into(),
master_hash: MASTER.trim_right().into(),
});
}
|