libimagdiary: init
This commit is contained in:
parent
f400c77784
commit
6f31e0f821
2 changed files with 29 additions and 0 deletions
19
libimagdiary/Cargo.toml
Normal file
19
libimagdiary/Cargo.toml
Normal 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
10
libimagdiary/src/lib.rs
Normal 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");
|
||||||
|
|
Loading…
Reference in a new issue