Add libimagentryurl
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
cee7689e77
commit
5cb641044f
4 changed files with 50 additions and 0 deletions
|
@ -48,6 +48,7 @@ members = [
|
|||
"lib/entry/libimagentryfilter",
|
||||
"lib/entry/libimagentrygps",
|
||||
"lib/entry/libimagentrylink",
|
||||
"lib/entry/libimagentryurl",
|
||||
"lib/entry/libimagentrymarkdown",
|
||||
"lib/entry/libimagentryref",
|
||||
"lib/entry/libimagentrytag",
|
||||
|
|
41
lib/entry/libimagentryurl/Cargo.toml
Normal file
41
lib/entry/libimagentryurl/Cargo.toml
Normal file
|
@ -0,0 +1,41 @@
|
|||
[package]
|
||||
name = "libimagentryurl"
|
||||
version = "0.10.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://imag-pim.org/doc/"
|
||||
repository = "https://github.com/matthiasbeyer/imag"
|
||||
homepage = "http://imag-pim.org"
|
||||
|
||||
[badges]
|
||||
travis-ci = { repository = "matthiasbeyer/imag" }
|
||||
is-it-maintained-issue-resolution = { repository = "matthiasbeyer/imag" }
|
||||
is-it-maintained-open-issues = { repository = "matthiasbeyer/imag" }
|
||||
maintenance = { status = "actively-developed" }
|
||||
|
||||
[dependencies]
|
||||
itertools = "0.7"
|
||||
log = "0.4.0"
|
||||
toml = "0.5"
|
||||
url = "1.5"
|
||||
sha-1 = "0.7"
|
||||
hex = "0.3"
|
||||
is-match = "0.1"
|
||||
toml-query = "0.9"
|
||||
failure = "0.1"
|
||||
failure_derive = "0.1"
|
||||
|
||||
libimagstore = { version = "0.10.0", path = "../../../lib/core/libimagstore" }
|
||||
libimagerror = { version = "0.10.0", path = "../../../lib/core/libimagerror" }
|
||||
libimagutil = { version = "0.10.0", path = "../../../lib/etc/libimagutil" }
|
||||
libimagentrylink = { version = "0.10.0", path = "../../../lib/entry/libimagentrylink" }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.5"
|
||||
|
7
lib/entry/libimagentryurl/src/lib.rs
Normal file
7
lib/entry/libimagentryurl/src/lib.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
|
@ -16,6 +16,7 @@ CRATES=(
|
|||
./lib/etc/libimaginteraction
|
||||
./lib/core/libimagrt
|
||||
./lib/entry/libimagentrylink
|
||||
./lib/entry/libimagentryurl
|
||||
./lib/entry/libimagentrytag
|
||||
./lib/entry/libimagentryfilter
|
||||
./lib/entry/libimagentrygps
|
||||
|
|
Loading…
Reference in a new issue