adc-rs
A native rust implementation of the Apple Data Compression scheme used for example in DMG images. Supports decompression only.
# Cargo.toml
[]
= "0.2"
Example
use AdcDecoder;
use Read;
let input: & = &;
let mut d = new;
let mut data = vec!;
let bytes_out = match d.read_exact ;
println!;
Changelog
0.2.1
- Fixed two decoding bugs
0.2.0
- Switched to an API based on the
Read
trait (breaking change)
0.1.0
- Initial release