https://github.com/mdsteele/rust-ar
Rust library for encoding/decoding Unix archive (.a) files
https://github.com/mdsteele/rust-ar
Last synced: about 1 year 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 9 years ago)
- Default Branch: master
- Last Pushed: 2024-07-21T17:30:01.000Z (almost 2 years ago)
- Last Synced: 2025-03-29T15:04:17.011Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 734 KB
- Stars: 46
- Watchers: 6
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rust-ar
[](https://github.com/mdsteele/rust-ar/actions/workflows/tests.yml)
[](https://crates.io/crates/ar)
[](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).