added dependency to libimagstore

This commit is contained in:
mario 2016-05-04 14:37:25 +02:00
parent 2129ab2a49
commit efd72d65a1
3 changed files with 17 additions and 2 deletions

View file

@ -5,3 +5,7 @@ authors = ["mario <mario-krehl@gmx.de>"]
[dependencies]
task-hookrs = { git = "https://github.com/matthiasbeyer/task-hookrs.git" }
[dependencies.libimagstore]
path = "../libimagstore"

View file

@ -1,3 +1,9 @@
extern crate task_hookrs;
#[macro_use] extern crate libimagstore;
module_entry_path_mod!("todo", "0.1.0");
pub mod task;
pub mod delete;
pub mod read;

View file

@ -1,8 +1,13 @@
extern crate task_hookrs;
use std::ops::Deref;
use self::task_hookrs::task::Task as TTask;
use task_hookrs::task::Task as TTask;
use libimagstore::store::FileLockEntry;
pub struct Task {
uuid : str,
}
impl Deref<FileLockEntry> for Task {
}