Initial import
This commit is contained in:
parent
3884e4232c
commit
fbbb26b737
4 changed files with 39 additions and 2 deletions
|
@ -2,6 +2,7 @@
|
||||||
members = [
|
members = [
|
||||||
".imag-documentation",
|
".imag-documentation",
|
||||||
"bin/core/imag",
|
"bin/core/imag",
|
||||||
|
"bin/core/imag-gps",
|
||||||
"bin/core/imag-grep",
|
"bin/core/imag-grep",
|
||||||
"bin/core/imag-link",
|
"bin/core/imag-link",
|
||||||
"bin/core/imag-ref",
|
"bin/core/imag-ref",
|
||||||
|
|
35
bin/core/imag-gps/Cargo.toml
Normal file
35
bin/core/imag-gps/Cargo.toml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
[package]
|
||||||
|
name = "imag-gps"
|
||||||
|
version = "0.4.0"
|
||||||
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
|
description = "Part of the imag core distribution: imag-gps command"
|
||||||
|
|
||||||
|
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]
|
||||||
|
clap = ">=2.17"
|
||||||
|
log = "0.3"
|
||||||
|
version = "2.0.1"
|
||||||
|
url = "1.2"
|
||||||
|
toml = "0.4"
|
||||||
|
toml-query = "0.3.0"
|
||||||
|
|
||||||
|
libimagstore = { version = "0.4.0", path = "../../../lib/core/libimagstore" }
|
||||||
|
libimagrt = { version = "0.4.0", path = "../../../lib/core/libimagrt" }
|
||||||
|
libimagerror = { version = "0.4.0", path = "../../../lib/core/libimagerror" }
|
||||||
|
libimagentrygps = { version = "0.4.0", path = "../../../lib/entry/libimagentrygps" }
|
||||||
|
libimagutil = { version = "0.4.0", path = "../../../lib/etc/libimagutil" }
|
||||||
|
|
||||||
|
[dev-dependencies.libimagutil]
|
||||||
|
version = "0.4.0"
|
||||||
|
path = "../../../lib/etc/libimagutil"
|
||||||
|
default-features = false
|
||||||
|
features = ["testing"]
|
||||||
|
|
3
bin/core/imag-gps/src/main.rs
Normal file
3
bin/core/imag-gps/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
|
@ -2,5 +2,3 @@
|
||||||
|
|
||||||
The GPS module is a plumbing command for attaching a GPS coordinate to an entry.
|
The GPS module is a plumbing command for attaching a GPS coordinate to an entry.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue