summaryrefslogtreecommitdiff
path: root/src/chunkmeta.rs
AgeCommit message (Collapse)AuthorFilesLines
2021-09-18refactor: define a Checksum type and use it where appropriateLars Wirzenius1-7/+12
This will make it harder to compare, say, a SHA-256 and a SHA3, later, when we add more checksum types. Sponsored-by: author
2021-05-29refactor: make metadata part of a chunkLars Wirzenius1-1/+20
This makes is harder to accidentally use the wrong metadata for a chunk.
2021-03-27refactor: use matches! for clarityLars Wirzenius1-4/+1
2021-02-10fix: don't use the matched! macroLars Wirzenius1-1/+4
Rust compiler gives an error due to it being too new.
2020-10-16chore: fix style issues pointed out by clippyLars Wirzenius1-5/+2
2020-09-18feat: add a rudimentary chunk server main programLars Wirzenius1-1/+1
Also, add an initial subplot to document and verify acceptance criteria.
2020-09-17feat: store chunks persistentlyLars Wirzenius1-1/+1
2020-09-17feat: add initial ChunkMeta structLars Wirzenius1-0/+147