phar 0.0.3

Rust library for PHP phar format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Utilities for read-only phar archives

#[allow(clippy::module_inception)]
mod reader;
pub use reader::{Options, Reader};

mod section;
use section::Section;

pub mod index;
pub use index::FileIndex;

mod entry;
use entry::Entry;

mod util;