summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-05-21 14:38:20 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-06-21 18:30:08 +0200
commit031e3c7bd3e3a2d7a9e59ecec9cb6a77d344e6dd (patch)
treed36a033bf06dba04ae706951f560fda22cecfd3a
parentb47972beddc66c07d1b0bfdfb3947f5392e917cb (diff)
Initial import
-rw-r--r--Cargo.toml1
-rw-r--r--libimagentrycategory/Cargo.toml16
-rw-r--r--libimagentrycategory/src/lib.rs6
3 files changed, 23 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index df876c5a..f94a8249 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,6 +17,7 @@ members = [
"libimagbookmark",
"libimagcounter",
"libimagdiary",
+ "libimagentrycategory",
"libimagentrydatetime",
"libimagentryedit",
"libimagentryfilter",
diff --git a/libimagentrycategory/Cargo.toml b/libimagentrycategory/Cargo.toml
new file mode 100644
index 00000000..a14799fe
--- /dev/null
+++ b/libimagentrycategory/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "libimagentrycategory"
+version = "0.3.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"
+
+documentation = "https://matthiasbeyer.github.io/imag/imag_documentation/index.html"
+repository = "https://github.com/matthiasbeyer/imag"
+homepage = "http://imag-pim.org"
+
+[dependencies]
diff --git a/libimagentrycategory/src/lib.rs b/libimagentrycategory/src/lib.rs
new file mode 100644
index 00000000..cdfbe1aa
--- /dev/null
+++ b/libimagentrycategory/src/lib.rs
@@ -0,0 +1,6 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ }
+}