libimagdiary: init

This commit is contained in:
Matthias Beyer 2016-03-26 18:25:17 +01:00
parent f400c77784
commit 6f31e0f821
2 changed files with 29 additions and 0 deletions
libimagdiary

19
libimagdiary/Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "libimagdiary"
version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
log = "0.3.5"
semver = "0.2"
toml = "0.1.25"
[dependencies.libimagstore]
path = "../libimagstore"
[dependencies.libimagrt]
path = "../libimagrt"
[dependencies.libimagnotes]
path = "../libimagnotes"

10
libimagdiary/src/lib.rs Normal file
View file

@ -0,0 +1,10 @@
#[macro_use] extern crate log;
extern crate semver;
extern crate toml;
#[macro_use] extern crate libimagstore;
extern crate libimagrt;
extern crate libimagnotes;
module_entry_path_mod!("diary", "0.1.0");