Matthias Beyer
8c37fb865a
This patch rebuilds DiaryEntryIterator to be a wrapper around StoreIdIterator and thus `Diary::entries()` to use `Store::entries` and not `Store::retrieve_for_module()`. The `Store::retrieve_for_module()` function is somehow buggy and loads contents of the files into memory and _somehow_ causes the entries to be rewritten without newlines. This bug is fixed by moving away from `Store::retrieve_for_module()`.
37 lines
1.4 KiB
TOML
37 lines
1.4 KiB
TOML
[package]
|
|
name = "libimagdiary"
|
|
version = "0.7.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"
|
|
|
|
[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]
|
|
chrono = "0.4"
|
|
log = "0.4.0"
|
|
toml = "0.4"
|
|
toml-query = "0.6"
|
|
itertools = "0.7"
|
|
error-chain = "0.11"
|
|
filters = "0.2"
|
|
|
|
libimagstore = { version = "0.7.0", path = "../../../lib/core/libimagstore" }
|
|
libimagerror = { version = "0.7.0", path = "../../../lib/core/libimagerror" }
|
|
libimagrt = { version = "0.7.0", path = "../../../lib/core/libimagrt" }
|
|
libimagentryedit = { version = "0.7.0", path = "../../../lib/entry/libimagentryedit" }
|
|
libimagentryview = { version = "0.7.0", path = "../../../lib/entry/libimagentryview" }
|
|
libimagentryutil = { version = "0.7.0", path = "../../../lib/entry/libimagentryutil" }
|
|
|