Initial import
This commit is contained in:
parent
279afd1972
commit
fb2dd3017a
3 changed files with 25 additions and 0 deletions
|
@ -29,6 +29,7 @@ members = [
|
||||||
"lib/entry/libimagentrydatetime",
|
"lib/entry/libimagentrydatetime",
|
||||||
"lib/entry/libimagentryedit",
|
"lib/entry/libimagentryedit",
|
||||||
"lib/entry/libimagentryfilter",
|
"lib/entry/libimagentryfilter",
|
||||||
|
"lib/entry/libimagentrygps",
|
||||||
"lib/entry/libimagentrylink",
|
"lib/entry/libimagentrylink",
|
||||||
"lib/entry/libimagentrylist",
|
"lib/entry/libimagentrylist",
|
||||||
"lib/entry/libimagentrymarkdown",
|
"lib/entry/libimagentrymarkdown",
|
||||||
|
|
18
lib/entry/libimagentrygps/Cargo.toml
Normal file
18
lib/entry/libimagentrygps/Cargo.toml
Normal file
|
@ -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" }
|
||||||
|
|
6
lib/entry/libimagentrygps/src/lib.rs
Normal file
6
lib/entry/libimagentrygps/src/lib.rs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue