added dependency to libimagstore
This commit is contained in:
parent
2129ab2a49
commit
efd72d65a1
3 changed files with 17 additions and 2 deletions
|
@ -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"
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue