rs-tar2sqlite 0.1.0

Converts the tar file to the sqlar.
Documentation
1
2
3
4
5
6
7
8
#[derive(Default)]
pub struct TarEntry {
    pub name: String,
    pub mode: u32,
    pub modified_unixtime: u64,
    pub size: u64,
    pub data: Vec<u8>,
}