This repository is a fork of sevenz-rust's lzma-rust, which has now been removed from Github. This fork was originally created to allow usage of lzma-rust's decompression with no_std
and no alloc, instead allowing usage of only a mutable, statically allocated slice, passed to the crate where needed. However, this repository is now the only copy of lzma-rust on Github, so can also now be used for ongoing archival and development of lzma-rust.
LZMA/LZMA2 codec ported from tukaani xz for java
use std::io::{Read, Write};
use lzma_rust::*;
let s = b"Hello, world!";
let mut out = Vec::new();
let mut options = LZMA2Options::with_preset(6);
options.dict_size = LZMA2Options::DICT_SIZE_DEFAULT;
let mut w = LZMAWriter::new_use_header(CountingWriter::new(&mut out), &options, None).unwrap();
w.write_all(s).unwrap();
w.write(&[]).unwrap();
let mut r = LZMAReader::new_mem_limit(&out[..], u32::MAX, None).unwrap();
let mut s2 = vec![0; s.len()];
r.read_exact(&mut s2).unwrap();
println!("{:?}", &out[..]);
assert_eq!(s, &s2[..]);
use std::io::{Read, Write};
use lzma_rust::*;
let s = b"Hello, world!";
let mut out = Vec::new();
let mut options = LZMA2Options::with_preset(6);
options.dict_size = LZMA2Options::DICT_SIZE_DEFAULT;
{
let mut w = LZMA2Writer::new(CountingWriter::new(&mut out), &options);
w.write_all(s).unwrap();
w.write(&[]).unwrap();
}
let mut r = LZMA2Reader::new(&out[..], options.dict_size, None);
let mut s2 = vec![0; s.len()];
r.read_exact(&mut s2).unwrap();
println!("{:?}", &out[..]);
assert_eq!(s, &s2[..]);