Initial import
This commit is contained in:
parent
b47972bedd
commit
031e3c7bd3
3 changed files with 23 additions and 0 deletions
|
@ -17,6 +17,7 @@ members = [
|
||||||
"libimagbookmark",
|
"libimagbookmark",
|
||||||
"libimagcounter",
|
"libimagcounter",
|
||||||
"libimagdiary",
|
"libimagdiary",
|
||||||
|
"libimagentrycategory",
|
||||||
"libimagentrydatetime",
|
"libimagentrydatetime",
|
||||||
"libimagentryedit",
|
"libimagentryedit",
|
||||||
"libimagentryfilter",
|
"libimagentryfilter",
|
||||||
|
|
16
libimagentrycategory/Cargo.toml
Normal file
16
libimagentrycategory/Cargo.toml
Normal file
|
@ -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]
|
6
libimagentrycategory/src/lib.rs
Normal file
6
libimagentrycategory/src/lib.rs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue