imag/libimagrt/src/lib.rs

37 lines
655 B
Rust
Raw Normal View History

2016-03-25 15:23:51 +00:00
#![deny(
2016-04-17 18:48:22 +00:00
dead_code,
2016-03-25 15:23:51 +00:00
non_camel_case_types,
non_snake_case,
path_statements,
trivial_numeric_casts,
unstable_features,
unused_allocation,
unused_import_braces,
unused_imports,
2016-04-17 18:48:22 +00:00
unused_must_use,
2016-03-25 15:23:51 +00:00
unused_mut,
unused_qualifications,
while_true,
)]
2016-01-10 14:04:06 +00:00
#[macro_use] extern crate log;
#[macro_use] extern crate itertools;
#[cfg(unix)] extern crate xdg_basedir;
2016-03-24 10:50:14 +00:00
extern crate tempfile;
2016-05-15 15:37:56 +00:00
extern crate ansi_term;
2016-01-10 14:04:06 +00:00
extern crate clap;
extern crate toml;
2016-01-10 14:04:06 +00:00
extern crate libimagstore;
2016-03-24 11:09:45 +00:00
extern crate libimagstorestdhook;
2016-01-10 14:04:06 +00:00
extern crate libimagutil;
mod configuration;
mod logger;
2016-01-23 15:07:56 +00:00
2016-03-24 10:50:37 +00:00
pub mod edit;
pub mod error;
2016-01-23 15:07:56 +00:00
pub mod runtime;
2016-01-10 14:04:06 +00:00