first python binding

This commit is contained in:
Jean-Marie 'Histausse' Mineau 2023-08-31 18:03:55 +02:00
parent a9da701e51
commit cfc8e4743e
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
4 changed files with 53 additions and 9 deletions

View file

@ -25,7 +25,6 @@ impl<'a> DexFileReader<'a> {
pub fn new(data: &'a [u8]) -> Result<Self> {
let mut buffer = Cursor::new(data);
let header = HeaderItem::deserialize(&mut buffer)?;
println!("{header:x?}");
let mut tmp_file = Self {
data,
header,