aboutsummaryrefslogtreecommitdiff
path: root/src/raw/mod.rs
AgeCommit message (Collapse)Author
2020-05-02add more documentationDaniel Schadt
2020-05-01take readers by valueDaniel Schadt
The API guidelines for Rust state that readers should be taken by value[1]. If the caller wants to re-use the reader, they have to borrow it. This patch adjusts the parsing functions to do just that. [1]: https://rust-lang.github.io/api-guidelines/interoperability.html#generic-readerwriter-functions-take-r-read-and-w-write-by-value-c-rw-value
2020-04-29formatting fixesDaniel Schadt
2020-04-28restructure how agents are constructedDaniel Schadt
The old function turned a bit into a mess, so the functionality is now split up.
2019-02-16wrap zip reading in BufReaderDaniel Schadt
2018-06-14add support for reading zipped logsDaniel Schadt
2018-05-31cargo fmtDaniel Schadt
2018-04-14Initial commitDaniel Schadt