gendx/lzma-rs

How to set dictSize on lzma2_decompress

Open

#12 opened on Oct 24, 2019

 (7 comments) (0 reactions) (0 assignees)Rust (37 forks)auto 404
enhancementhelp wanted

Repository metrics

Stars
 (151 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

In https://mvnrepository.com/artifact/com.github.veithen.cosmos.bootstrap/org.tukaani.xz I see

package org.tukaani.xz;

public class LZMA2InputStream extends InputStream {
   
   ...
    public LZMA2InputStream(InputStream in, int dictSize) {
        this(in, dictSize, (byte[])null);
    }

dictSize is a param to construct LZMA2InputStream

Contributor guide