Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdsteele/rust-ar
Rust library for encoding/decoding Unix archive (.a) files
https://github.com/mdsteele/rust-ar
Last synced: 5 days ago
JSON representation
Rust library for encoding/decoding Unix archive (.a) files
- Host: GitHub
- URL: https://github.com/mdsteele/rust-ar
- Owner: mdsteele
- License: mit
- Created: 2017-02-18T17:36:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-21T17:30:01.000Z (4 months ago)
- Last Synced: 2024-10-19T03:58:08.156Z (16 days ago)
- Language: Rust
- Homepage:
- Size: 734 KB
- Stars: 43
- Watchers: 7
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rust-ar
[![Build Status](https://github.com/mdsteele/rust-ar/actions/workflows/tests.yml/badge.svg)](https://github.com/mdsteele/rust-ar/actions/workflows/tests.yml)
[![Crates.io](https://img.shields.io/crates/v/ar.svg)](https://crates.io/crates/ar)
[![Documentation](https://docs.rs/ar/badge.svg)](https://docs.rs/ar)A rust library for encoding/decoding Unix archive (.a) files.
Documentation: https://docs.rs/ar
## Overview
The `ar` crate is a pure Rust implementation of a
[Unix archive file](https://en.wikipedia.org/wiki/Ar_(Unix)) reader and writer.
This library provides a streaming interface, similar to that of the
[`tar`](https://crates.io/crates/tar) crate, that avoids having to ever load a
full archive entry into memory.## License
rust-ar is made available under the
[MIT License](http://spdx.org/licenses/MIT.html).