update dependencies

This commit is contained in:
2023-05-29 20:58:47 +02:00
parent 527a1ef0c7
commit 12647bd5e7
8 changed files with 180 additions and 104 deletions

View File

@@ -7,7 +7,7 @@ use binrw::{binread, parser, until_exclusive, BinResult, NullString};
pub struct Container {
#[br(temp, args(string_size))]
pub header: FileEntry,
#[br(parse_with = until_end, args_raw(string_size))]
#[br(parse_with = until_end, args_raw((string_size,)))]
pub entries: Vec<FileEntry>,
}