Matthias Beyer
9fb5f453fe
Rewrite without regex crate. The regex approach was broken. If the following _content_ was provided in the entry: foo --- bar The regex approach parsed the header until the "---" in the content. This is, of course, not the way to do that. Now, the parsing is implemented by hand. Should be faster as well, though I don't care about this. This fixes a severe bug. |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
Cargo.toml | ||
README.md |
libimagstore
The store is the heart of everything. Here lives the data, the complexity and the performance bottleneck.
The store offeres read/write access to all entries.
The store itself does not offer functionality, but has a commandline interface "imag-store" which can do basic things with the store.
Long-term TODO
- Merge with
libimagrt