Skip to content

Commit

Permalink
process tar files
Browse files Browse the repository at this point in the history
Process tar files: BlockReader can read from .tar files.

Re-arrange ProcessPathResult::FILE_VALID arguments for consistency.
  • Loading branch information
jtmoon79 committed Jul 21, 2022
1 parent 2fa4d30 commit adf4007
Show file tree
Hide file tree
Showing 9 changed files with 531 additions and 91 deletions.
33 changes: 33 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ rand = "0.8.5"
rangemap = "1.0.3"
regex = "1.5.6"
static_assertions = "1.1.0"
tempfile = "3.3.0"
tar = "0.4.38"
tempfile = "3.3.0" # TODO this could be moved to dev-dependencies
termcolor = "1.1.3"
unicode-width = "0.1.9"
unroll = "0.1.5"
Expand Down
7 changes: 7 additions & 0 deletions src/Data/datetime.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
// Data/datetime.rs
//
// the most relevant documents to understand this file:
// `chrono` crate `strftime` format:
// https://docs.rs/chrono/latest/chrono/format/strftime/index.html
// `regex` crate patterns
// https://docs.rs/regex/latest/regex/
//

#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
Expand Down
Loading

0 comments on commit adf4007

Please sign in to comment.