Skip to content

Commit

Permalink
Merge branch 'deps' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-weis committed Dec 22, 2024
2 parents 0ea838d + 7cb796c commit a52b100
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["parser", "office", "vba"]
categories = ["parser-implementations"]

[dependencies]
cfb = "0.3"
cfb = "0.10"
codepage = "0.1"
encoding_rs = "0.8"
nom = "5.1.3"
nom = { version = "7.1", default-features = false }
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub(crate) fn decompress(i: &[u8]) -> IResult<&[u8], Vec<u8>, FormatError<&[u8]>
// * If all data has been consumed, return an `Ok()` value.
nom::combinator::all_consuming(nom::multi::fold_many1(
chunk_parser,
Vec::new(),
Vec::new,
|mut acc: Vec<_>, data| {
acc.extend(data);
acc
Expand Down

0 comments on commit a52b100

Please sign in to comment.