#![feature(proc_macro_hygiene, decl_macro, stmt_expr_attributes)]
#[macro_use] extern crate rocket;
extern crate rocket_contrib;
extern crate serde_yaml;
extern crate serde_json;
extern crate reqwest;
extern crate chrono;
extern crate anyhow;
extern crate serde;
extern crate regex;
extern crate paris;
#[cfg(test)]
#[macro_use] extern crate pretty_assertions;
mod yaml;
pub mod helpers;
pub mod dropbox;
pub mod rubric;
pub mod report;
mod macros;
pub use self::rubric::Rubric;
pub use self::dropbox::{open, Submission, TestData};
pub type Result<T> = anyhow::Result<T>;
pub type Error = anyhow::Error;
const TIMESTAMP_FORMAT: &'static str = "%F %a %T %:z";
const HR_TIMESTAMP_FORMAT: &'static str = "%A %R%p %v";