summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-09-01 18:58:52 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-09-01 20:35:30 +0200
commitfb2dd3017ab234c6e67f4d1f8ce32c432f7ca586 (patch)
treea64de5f23da724c519eef1febaa37cbe49755667
parent279afd1972827a288b3f2fd066dc91130fe97789 (diff)
Initial import
-rw-r--r--Cargo.toml1
-rw-r--r--lib/entry/libimagentrygps/Cargo.toml18
-rw-r--r--lib/entry/libimagentrygps/src/lib.rs6
3 files changed, 25 insertions, 0 deletions
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 <mail@beyermatthias.de>"]
+
+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() {
+ }
+}