The library provides basic operations with tape archives (tar).
rust // tar -xf foo.tar -C bar let (from, into) = ("foo.tar", "bar"); tape::open(from).unwrap().extract(into).unwrap();
The library is based on libtar written by Mark D. Roth.