imag/libimagruby/src/lib.rs

40 lines
1.2 KiB
Rust
Raw Normal View History

2017-01-18 09:42:12 +00:00
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015, 2016 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
//
#[macro_use] extern crate ruru;
2017-01-18 14:33:57 +00:00
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate log;
2017-01-20 12:09:51 +00:00
extern crate toml;
2017-01-18 09:42:12 +00:00
#[macro_use] extern crate libimagerror;
extern crate libimagstore;
extern crate libimagrt;
#[macro_use] extern crate libimagutil;
2017-01-20 17:41:00 +00:00
pub mod imag;
2017-01-18 14:33:57 +00:00
pub mod store;
2017-01-20 13:22:59 +00:00
pub mod toml_utils;
pub mod ruby_utils;
#[no_mangle]
pub extern fn imag_ruby_initialize() {
self::store::storeid::setup();
}