gitextract_z1p3b8qn/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── linux.yml │ ├── macos.yml │ ├── wasm.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── Cargo.toml ├── LICENSE ├── Readme.md ├── assets/ │ ├── example.txt │ ├── example.txt.v5.zst │ ├── example.txt.v6.zst │ ├── example.txt.v7.zst │ ├── example.txt.v8.zst │ └── example.txt.zst ├── examples/ │ ├── basic.rs │ ├── benchmark.rs │ ├── stream.rs │ ├── train.rs │ ├── zstd.rs │ └── zstdcat.rs ├── rustfmt.toml ├── src/ │ ├── bulk/ │ │ ├── compressor.rs │ │ ├── decompressor.rs │ │ ├── mod.rs │ │ └── tests.rs │ ├── dict.rs │ ├── lib.rs │ └── stream/ │ ├── functions.rs │ ├── mod.rs │ ├── raw.rs │ ├── read/ │ │ ├── mod.rs │ │ └── tests.rs │ ├── tests.rs │ ├── write/ │ │ ├── mod.rs │ │ └── tests.rs │ └── zio/ │ ├── mod.rs │ ├── reader.rs │ └── writer.rs ├── tests/ │ └── issue_182.rs └── zstd-safe/ ├── Cargo.toml ├── LICENSE ├── Readme.md ├── build.rs ├── fuzz/ │ ├── .gitignore │ ├── Cargo.toml │ └── fuzz_targets/ │ └── zstd_fuzzer.rs ├── src/ │ ├── constants.rs │ ├── constants_experimental.rs │ ├── constants_seekable.rs │ ├── lib.rs │ ├── seekable.rs │ └── tests.rs ├── update_consts.sh └── zstd-sys/ ├── Cargo.toml ├── LICENSE ├── LICENSE.BSD-3-Clause ├── Readme.md ├── build.rs ├── examples/ │ └── it_work.rs ├── src/ │ ├── bindings_zdict.rs │ ├── bindings_zdict_experimental.rs │ ├── bindings_zdict_std_experimental.rs │ ├── bindings_zstd.rs │ ├── bindings_zstd_experimental.rs │ ├── bindings_zstd_seekable.rs │ ├── bindings_zstd_std_experimental.rs │ ├── lib.rs │ └── wasm_shim.rs ├── test_it.sh ├── update_bindings.sh ├── update_zstd.sh ├── wasm-shim/ │ ├── assert.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ └── time.h ├── zdict.h ├── zstd.h └── zstd_seekable.h