| /// Streaming tar implementation for Dart. | |
| /// | |
| /// To read tar files, see [TarReader]. | |
| /// To write tar files, use [tarWritingSink] or [tarWriter]. | |
| library; | |
| // For dartdoc. | |
| import 'src/reader.dart'; | |
| import 'src/writer.dart'; | |
| export 'src/entry.dart' show TarEntry, SynchronousTarEntry; | |
| export 'src/exception.dart'; | |
| export 'src/format.dart'; | |
| export 'src/header.dart' show TarHeader, TypeFlag; | |
| export 'src/reader.dart' show TarReader; | |
| export 'src/writer.dart'; |