just/src/main.rs

50 lines
759 B
Rust
Raw Normal View History

2017-11-16 23:30:08 -08:00
#[macro_use]
extern crate lazy_static;
extern crate ansi_term;
extern crate brev;
extern crate clap;
2018-03-05 13:21:35 -08:00
extern crate dotenv;
2017-11-16 23:30:08 -08:00
extern crate edit_distance;
extern crate itertools;
extern crate libc;
extern crate regex;
extern crate target;
2017-11-16 23:30:08 -08:00
extern crate tempdir;
extern crate unicode_width;
#[cfg(test)]
#[macro_use]
mod testing;
2017-11-17 17:28:06 -08:00
mod assignment_evaluator;
mod assignment_resolver;
2017-11-16 23:30:08 -08:00
mod color;
2017-11-17 17:28:06 -08:00
mod command_ext;
mod common;
2017-11-16 23:30:08 -08:00
mod compilation_error;
mod configuration;
2017-11-17 17:28:06 -08:00
mod cooked_string;
2017-11-16 23:30:08 -08:00
mod expression;
mod fragment;
mod function;
2017-11-17 17:28:06 -08:00
mod justfile;
2017-12-01 02:22:32 -08:00
mod lexer;
mod load_dotenv;
2017-11-17 17:28:06 -08:00
mod misc;
mod parameter;
mod parser;
mod platform;
2017-11-16 23:30:08 -08:00
mod range_ext;
2017-11-17 17:28:06 -08:00
mod recipe;
mod recipe_resolver;
mod run;
mod runtime_error;
mod shebang;
mod token;
2017-11-16 23:30:08 -08:00
use common::*;
2016-10-02 15:31:28 -07:00
fn main() {
2017-11-16 23:30:08 -08:00
run::run();
2016-06-16 17:13:43 -07:00
}