use-tar 0.1.0

Tar entry labels and typeflag mappings for RustUse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# use-tar

Tar entry labels and typeflag mappings.

This crate is part of the `use-archive` facade workspace. It provides tar-specific primitive labels only. It does not parse tar headers, read tar archives, write tar archives, or extract files.

## Example

```rust
use use_tar::TarEntryType;

assert_eq!(TarEntryType::from_typeflag(b'5'), TarEntryType::Directory);
assert_eq!(TarEntryType::Regular.typeflag(), Some(b'0'));
```