diff --git a/Cargo.toml b/Cargo.toml index 1e2c254e..c9e7d3b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,6 +29,7 @@ members = [ "lib/entry/libimagentrydatetime", "lib/entry/libimagentryedit", "lib/entry/libimagentryfilter", + "lib/entry/libimagentrygps", "lib/entry/libimagentrylink", "lib/entry/libimagentrylist", "lib/entry/libimagentrymarkdown", diff --git a/lib/entry/libimagentrygps/Cargo.toml b/lib/entry/libimagentrygps/Cargo.toml new file mode 100644 index 00000000..c6c45a87 --- /dev/null +++ b/lib/entry/libimagentrygps/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "libimagentrygps" +version = "0.4.0" +authors = ["Matthias Beyer "] + +description = "Library for the imag core distribution" + +keywords = ["imag", "PIM", "personal", "information", "management"] +readme = "../README.md" +license = "LGPL-2.1" + +[dependencies] +toml = "^0.4" +toml-query = "0.3.0" + +libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" } +libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" } + diff --git a/lib/entry/libimagentrygps/src/lib.rs b/lib/entry/libimagentrygps/src/lib.rs new file mode 100644 index 00000000..cdfbe1aa --- /dev/null +++ b/lib/entry/libimagentrygps/src/lib.rs @@ -0,0 +1,6 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + } +}