aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAge
* remove unused importsDirk Van Haerenborgh2018-10-06
|
* fix ffi for db revisionDirk Van Haerenborgh2018-10-06
|
* cleanup & export db revision uuidDirk Van Haerenborgh2018-10-06
|
* make clippy happyDirk Van Haerenborgh2018-04-17
|
* make everything Send+SyncDirk Van Haerenborgh2018-04-14
|
* add missing lifetime parametersDirk Van Haerenborgh2018-04-13
|
* I think these are actually Send'able, but certainly no SyncDirk Van Haerenborgh2018-04-13
|
* Fix enum name for unsorted sortingrhn2018-04-13
|
* Make 0.26 functions available after setting "0.26" configrhn2018-04-13
|
* Add Directory::child_directoriesrhn2018-04-13
|
* notmuch is not thread safe. do not let the user think it isDirk Van Haerenborgh2018-04-12
|
* make some types Send'ableDirk Van Haerenborgh2018-04-12
|
* fix the iteratorsDirk Van Haerenborgh2018-03-27
|
* also export errorDirk Van Haerenborgh2018-03-27
|
* threads: oldest and newest dateDirk Van Haerenborgh2018-03-23
|
* return filenames as pathDirk Van Haerenborgh2018-03-23
|
* lifetime parameters are coolDirk Van Haerenborgh2018-03-23
|
* get thread authors and subjectDirk Van Haerenborgh2018-03-23
|
* wipDirk Van Haerenborgh2018-03-23
|
* the iterator can handle null pointersDirk Van Haerenborgh2018-03-23
|
* do not export all modules, just the structsDirk Van Haerenborgh2018-03-23
|
* filenames iteratorDirk Van Haerenborgh2018-03-23
|
* oopsDirk Van Haerenborgh2018-03-23
|
* cleanupDirk Van Haerenborgh2018-03-23
|
* thread: count messages and filesDirk Van Haerenborgh2018-03-23
|
* improve lifetime definitionsDirk Van Haerenborgh2018-03-23
|
* count threads and messagesDirk Van Haerenborgh2018-03-23
|
* search threadsDirk Van Haerenborgh2018-03-23
|
* message and thread iteratorsDirk Van Haerenborgh2018-03-23
|
* proper tags iteratorDirk Van Haerenborgh2018-03-23
|
* slightly better interface, but still returning a null pointer...Dirk Van Haerenborgh2018-03-22
|
* test messages return valueDirk Van Haerenborgh2018-03-22
|
* search messagesDirk Van Haerenborgh2018-03-22
|
* fix query constructorDirk Van Haerenborgh2018-03-22
|
* correct lifetime for queryDirk Van Haerenborgh2018-03-22
|
* implement drop for queryDirk Van Haerenborgh2018-03-22
|
* create queryDirk Van Haerenborgh2018-03-22
|
* thread stubDirk Van Haerenborgh2018-03-22
|
* get notmuch db revisionDirk Van Haerenborgh2018-03-22
|
* Update ffi interfaceDirk Van Haerenborgh2018-03-21
| | | | | | Most of this is plain copied from https://github.com/Stebalien/notmuch-sys. At some point, I would like to split this up again, but not right now.
* add debug trait to databaseDirk Van Haerenborgh2018-03-20
|
* fix infinite recursionDirk Van Haerenborgh2018-03-20
|
* fix some compiler warning regarding opaque structsDirk Van Haerenborgh2018-03-20
|
* resurrectDirk Van Haerenborgh2018-03-20
|
* Rename Notmuch enum types.C. Morgan Hamill2015-03-31
| | | | | Remove the 'Notmuch' prefix, as it pollutes the generated documentation. It's rendundant, anyhow.
* Add `Database::directory()` method.C. Morgan Hamill2015-03-31
| | | | | Simple wrapper around notmuch API's `notmuch_database_get_directory` function.
* Add directory module and `Directory` type.C. Morgan Hamill2015-03-31
| | | | Wrapper type for `ffi::notmuch_directory_t` pointer.
* Add `NewFromPtr` trait.C. Morgan Hamill2015-03-27
| | | | Crate-private utility trait for `new()` methods on types.
* Disable trivial_numeric_casts lint in FFI callback.C. Morgan Hamill2015-03-26
| | | | | We're casting from `c_double` to `f64`, which are the same thing, but I want to do it anyway to be explicit.
* Remove `NotmuchType` trait.C. Morgan Hamill2015-03-26
| | | | No longer necessary with the `From` and `Into` traits from std::convert.