imag/lib/core/libimagrt/src/lib.rs

66 lines
1.7 KiB
Rust
Raw Normal View History

//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2018 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
2017-08-31 19:45:09 +00:00
#![recursion_limit="256"]
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 error_chain;
2017-02-04 10:11:50 +00:00
extern crate itertools;
2016-01-10 14:04:06 +00:00
#[cfg(unix)] extern crate xdg_basedir;
2016-05-24 14:42:32 +00:00
extern crate env_logger;
2016-05-15 15:37:56 +00:00
extern crate ansi_term;
extern crate handlebars;
2016-01-10 14:04:06 +00:00
extern crate clap;
extern crate toml;
2017-08-26 15:53:08 +00:00
extern crate toml_query;
#[macro_use] extern crate is_match;
extern crate atty;
2016-01-10 14:04:06 +00:00
extern crate libimagstore;
extern crate libimagutil;
2017-09-03 12:38:46 +00:00
extern crate libimagerror;
extern crate libimaginteraction;
2016-01-10 14:04:06 +00:00
2016-03-24 10:50:37 +00:00
pub mod error;
2017-01-22 14:15:44 +00:00
pub mod configuration;
pub mod logger;
pub mod io;
2016-01-23 15:07:56 +00:00
pub mod runtime;
2016-05-18 17:00:41 +00:00
pub mod setup;
pub mod spec;
pub mod version;
2016-01-10 14:04:06 +00:00