aboutsummaryrefslogtreecommitdiff
path: root/rust/src/lib.rs
blob: 63fab44b6c212fde8714d8948c4cf346a63d2859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(io, fs, core, std_misc, collections)]

extern crate libc;
extern crate regex;
extern crate time;

macro_rules! regex {
    ($e:expr) => (::regex::Regex::new($e).unwrap())
}

pub mod core;
pub mod env;
pub mod printer;
pub mod reader;
pub mod readline;
pub mod types;