aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAge
* less unwrapsDirk Van Haerenborgh2019-11-16
|
* more tests for messageDirk Van Haerenborgh2019-11-15
|
* add more testsDirk Van Haerenborgh2019-11-14
|
* port tests from notmuch-python-cffiDirk Van Haerenborgh2019-11-13
|
* remove 'get_' from getter functionsDirk Van Haerenborgh2019-10-25
|
* limit visibility of 'from_ptr' functions to crateDirk Van Haerenborgh2019-10-25
|
* implement message_propertiesDirk Van Haerenborgh2019-10-25
|
* add scopable atomic operation and configlistDirk Van Haerenborgh2019-10-25
|
* add scopeable version of message.freeze/thawDirk Van Haerenborgh2019-10-23
|
* fix index_file and add freeze/thawDirk Van Haerenborgh2019-10-23
|
* message: implement reindexDirk Van Haerenborgh2019-10-18
|
* database: implement find_message_by_filenameDirk Van Haerenborgh2019-10-18
|
* query: implement set_omit_excludedDirk Van Haerenborgh2019-10-18
|
* query: implement add_tag_excludeDirk Van Haerenborgh2019-10-18
|
* implement: database_index_messageDirk Van Haerenborgh2019-10-18
|
* messages: do not implement Drop for nowDirk Van Haerenborgh2019-10-18
|
* message: minor cleanupDirk Van Haerenborgh2019-10-18
|
* add database_find_messageDirk Van Haerenborgh2019-10-18
|
* support updated toolchainDirk Van Haerenborgh2019-10-18
|
* Merge pull request #22 from eaon/developDirk Van Haerenborgh2018-12-23
|\ | | | | Add Maildir flag / tag syncing
| * Add Maildir flag / tag syncingeaon2018-12-22
| |
* | Messages: test recursionrhn2018-12-23
|/
* silence compiler warningsDirk Van Haerenborgh2018-12-20
|
* remove ptr indirectionDirk Van Haerenborgh2018-12-20
|
* do not require a mutable reference for getting message repliesDirk Van Haerenborgh2018-12-18
|
* messages may depend on thread, not just query. But never on other messagesDirk Van Haerenborgh2018-12-17
|
* Revert "link lifetime of message to Query"Dirk Van Haerenborgh2018-12-17
| | | | This reverts commit 0d510d55c4238ff0a1175985b27ca38c71a3cfc2.
* link lifetime of message to QueryDirk Van Haerenborgh2018-12-17
|
* Revert "Edition 2018 hit stable 🙌"Dirk Van Haerenborgh2018-12-15
| | | | This reverts commit b5b0f7e97abe0dbd5b54a1fc69e764a124c271b2.
* re-add erroneously removed messages iteratorDirk Van Haerenborgh2018-12-15
|
* Threads are only ever owned by a Query. Nothing elseDirk Van Haerenborgh2018-12-15
|
* remove StreamingIterator again as the iterators don't actually have ↵Dirk Van Haerenborgh2018-12-14
| | | | ownership over items
* do not drop message and threadDirk Van Haerenborgh2018-12-13
|
* Remove unnecessary (de)refseaon2018-12-09
|
* Edition 2018 hit stable 🙌eaon2018-12-09
|
* Return Result<(), Status::NotmuchError> instead of Statuseaon2018-11-21
|
* Use the ? operator instead of the try! macroeaon2018-11-21
|
* Match up Database::remove_message with Message::filename return typeeaon2018-11-21
|
* Merge pull request #11 from eaon/multi-arch-supportDirk Van Haerenborgh2018-11-20
|\ | | | | Make sure to cast time_t to i64 so that notmuch-rs works on 32 bit platforms too
| * If we get a i32 timestamp make sure we cast it to i64eaon2018-11-20
| |
* | Add Database::remove_messageeaon2018-11-19
|/
* Switch to `where` syntaxeaon2018-11-12
|
* trust clippy and rustfmtDirk Van Haerenborgh2018-11-07
|
* Make Message::header return an Option in its Result (#9)eaon2018-11-06
| | | | | | * Distinguishing between (non-)empty Message::header returns * Switch Message::header Ok result to use nicer match syntax
* rustfmtDirk Van Haerenborgh2018-11-05
|
* implement StreamingIteratorExt for iterator typesDirk Van Haerenborgh2018-11-05
|
* implement 'Ext' traits for all types exept iteratorsDirk Van Haerenborgh2018-11-05
|
* add MessageExt traitDirk Van Haerenborgh2018-11-04
|
* start adding 'Ext' threads to enable more flexible supercow apiDirk Van Haerenborgh2018-11-04
|
* Add Message::{date,add_tag,remove_tag,remove_all_tags} and make clippy ↵eaon2018-11-02
| | | | | | | | | | usable (#6) * Removing unnecessary lifetimes and borrows * Add Message::{date,add_tag,remove_tag,remove_all_tags} * Make sure clippy doesn't error out