imag/libimagstorestdhook/src/lib.rs

31 lines
590 B
Rust
Raw Normal View History

2016-07-15 21:08:37 +00:00
// #![deny(
// dead_code,
// non_camel_case_types,
// non_snake_case,
// path_statements,
// trivial_numeric_casts,
// unstable_features,
// unused_allocation,
// unused_import_braces,
// unused_imports,
// unused_must_use,
// unused_mut,
// unused_qualifications,
// while_true,
// )]
2016-04-17 18:56:58 +00:00
2016-03-24 10:52:43 +00:00
#[macro_use] extern crate log;
extern crate toml;
2016-04-14 16:22:44 +00:00
extern crate fs2;
2016-05-14 22:13:22 +00:00
extern crate git2;
2016-03-24 10:52:43 +00:00
extern crate libimagstore;
2016-04-18 14:53:45 +00:00
extern crate libimagentrylink;
#[macro_use] extern crate libimagerror;
2016-03-24 10:52:43 +00:00
2016-03-24 11:09:45 +00:00
pub mod debug;
2016-04-14 16:24:33 +00:00
pub mod flock;
2016-04-18 14:53:57 +00:00
pub mod linkverify;
2016-05-14 22:21:26 +00:00
pub mod vcs;
2016-03-24 11:09:45 +00:00