peview 0.1.1

A minimal and fast zero-copy parser for the PE32+ file format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![feature(error_in_core, cstr_from_bytes_until_nul)]
#![no_std]

extern crate alloc;

pub mod dir;
pub mod error;
pub mod file;
pub mod header;
pub mod mem;
pub mod section;