summaryrefslogtreecommitdiffstats
path: root/libimagref
AgeCommit message (Collapse)Author
2016-11-01Remove unused variableMatthias Beyer
2016-10-31Merge pull request #656 from matthiasbeyer/cargo-rustc-codegen-unitsMatthias Beyer
Cargo rustc codegen units
2016-10-24libimagref/Cargo.toml: Update dependenciesMatthias Beyer
2016-10-24Add codegen-units = 2 in ./libimagref/Cargo.tomlMatthias Beyer
2016-10-20Resolve TODO: Ref::get_path_hash() should return Result<String>Matthias Beyer
2016-10-20Fix: Cargo.toml does not know "website", but "homepage"Matthias Beyer
2016-10-18Add meta-info in libimagref/Cargo.tomlMatthias Beyer
2016-10-14Merge pull request #657 from matthiasbeyer/libimagmail/initMatthias Beyer
Libimagmail/init
2016-10-13Create symlinks to documentation files in libimag*/README.mdMatthias Beyer
2016-10-13Move all libimag*/README.md to doc/src/05100-*Matthias Beyer
2016-10-12Add agnostic "RefHashingError"Matthias Beyer
to be used by implementors of Hasher.
2016-10-11Remove unused importsMatthias Beyer
2016-10-08Remove unused variableMatthias Beyer
2016-10-08Remove unused variableMatthias Beyer
2016-10-08Remove unused functionMatthias Beyer
2016-10-01libimagref: Add copyright notice to all filesMatthias Beyer
2016-09-06Fix Ref::get_path_hash() to use ::into_pathbuf()Matthias Beyer
2016-09-05Add variant of Ref::get_stored_hash() to get stored hash with custom hasherMatthias Beyer
2016-09-05Add variant of Ref::update_ref() to update with custom Hasher instanceMatthias Beyer
2016-09-05Fix Ref::get_stored_hash() for reading the right header fieldMatthias Beyer
2016-09-05Fix Ref::update_ref() to set the appropriate header fieldMatthias Beyer
2016-09-05This patch puts the hasher name in the headerMatthias Beyer
This was a bug, as the previous implementation simply sets the hash, but we need to set the hash in a place where we can re-find it with a hasher.
2016-08-30Remove version argument from module_entry_path_mod!() macroMatthias Beyer
2016-08-28Fix libimagref::reference::* for new StoreId interfaceMatthias Beyer
2016-08-24Add README.md for libimagrefMatthias Beyer
2016-08-23Use UTF8Error in default hasher implMatthias Beyer
2016-08-23Add NBytesHasher custom hasherMatthias Beyer
2016-08-23Add generic UTF8Error error kindMatthias Beyer
2016-08-23Move Ref implementation to use DefaultHasherMatthias Beyer
2016-08-23Add hasher moduleMatthias Beyer
2016-08-06Upgrade toml dependency to 0.2Kai Sickeler
2016-07-26libimagref: Deny warnings and fix denied warningsGavin Thomas Claugus
Signed-off-by: Gavin Thomas Claugus <gclaugus@gmail.com>
2016-07-16Merge pull request #497 from matthiasbeyer/libimagref/listMatthias Beyer
libimagref/list
2016-07-14Fix: Header field name was wrongMatthias Beyer
2016-07-14Impl Into<FileLockEntry> on Ref typeMatthias Beyer
2016-07-14Add lister for libimagref to list referencesMatthias Beyer
2016-07-14Add RefToDisplayError kindMatthias Beyer
2016-07-14Add dependency: libimagentrylistMatthias Beyer
2016-07-12Update all version strings: 0.1.0 -> 0.2.0Matthias Beyer
2016-07-05Fix: We cannot offer a Ref::delete(self), but a Ref::delete_by_hash()Matthias Beyer
We cannot offer the former because deleting self would always fail as the FileLockEntry is already borrowed from the store, so the store declines this. But deleting by hash works.
2016-07-04Impl Display for RefMatthias Beyer
2016-07-04Add Ref::from_filelockentry()Matthias Beyer
2016-07-04Add Ref::get_path_hash()Matthias Beyer
2016-07-04Impl Ref::get_by_hash()Matthias Beyer
2016-07-04impl Ref::delete()Matthias Beyer
2016-07-04Ref: derive DebugMatthias Beyer
2016-07-04Impl Default for RefFlagsMatthias Beyer
2016-07-04Impl: Ref::refind()Matthias Beyer
2016-07-04Impl Ref::update_ref()Matthias Beyer
2016-07-04Extract permissions getting into helper functionMatthias Beyer