Skip to content

Commit

Permalink
update tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 2, 2020
1 parent 0293464 commit 269280a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion git-odb/src/pack/index/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl File {
}
}

/// Returns the offset of the given object for use with the `(oid|pack_offset|crc32)_at_index()`
/// Returns the offset of the given object ID (20 bytes) for use with the `(oid|pack_offset|crc32)_at_index()`
pub fn lookup_index(&self, id: &[u8]) -> Option<u32> {
let first_byte = id[0] as usize;
let mut upper_bound = self.fan[first_byte];
Expand Down
10 changes: 9 additions & 1 deletion tasks.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
### TODO pack decoding + pack exploding

* **deployment**
* produce binaries on tag for all OSs for
* [ ] pretty + fast
* [ ] lean + fast
* [ ] lean + small
* **progress**
* [ ] one-line progress indicator, maybe implemented in prodash (similar to what `git` does when receiving)
* **initial release**
* **pack**
* [ ] extract borrowed objects from a pack
* [ ] support streamed objects (similar to how it's done with loose objects)
Expand All @@ -14,4 +21,5 @@
* [ ] multi-threaded
* [ ] progress
* [ ] statistics
* **multi-db** (incorporate object lookup into)

0 comments on commit 269280a

Please sign in to comment.