# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "chd" version = "0.3.2" authors = ["Ronny Chan "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Rust implementation of the CHD File Format" readme = "README.md" keywords = [ "mame", "chd", "decompression", ] categories = [ "emulators", "compression", "encoding", ] license = "BSD-3-Clause" repository = "https://github.com/SnowflakePowered/chd-rs" [package.metadata.docs.rs] features = [ "default", "codec_api", "huffman_api", "unstable_lending_iterators", ] rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "chd" path = "src/lib.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [dependencies.arrayvec] version = "0.7" [dependencies.bitreader] version = "0.3.6" [dependencies.byteorder] version = "1" [dependencies.claxon] version = "0.4" [dependencies.crc] version = "3" [dependencies.flate2] version = "1" features = ["rust_backend"] default-features = false [dependencies.lending-iterator] version = "0.1" optional = true [dependencies.lzma-rs] version = "0.2" features = ["raw_decoder"] package = "lzma-rs-perf-exp" [dependencies.nougat] version = "0.2" optional = true [dependencies.num-derive] version = "0.4" [dependencies.num-traits] version = "0.2" [dependencies.ruzstd] version = "0.6" [dependencies.take_mut] version = "0.2.2" [dependencies.text_io] version = "0.1" [dependencies.zstd-safe] version = "7.1.0" optional = true [dev-dependencies.bencher] version = "0.1.5" [features] cd_full = [ "want_subcode", "want_raw_data_sector", ] codec_api = [] default = [ "std", "cd_full", ] fast_lzma = ["std"] fast_zlib = [ "std", "flate2/zlib-ng", ] fast_zstd = [ "std", "zstd-safe", ] huffman_api = [] max_perf = [ "fast_zlib", "fast_lzma", "fast_zstd", ] std = [] unstable_lending_iterators = [ "lending-iterator", "nougat", ] verify_block_crc = [ "want_subcode", "want_raw_data_sector", ] want_raw_data_sector = [] want_subcode = []