chd 0.3.4

Rust implementation of the CHD File Format
# 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.4"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
build = false
autolib = 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",
]

[features]
c_zlib = [
    "std",
    "flate2/zlib-ng",
]
cd_full = [
    "want_subcode",
    "want_raw_data_sector",
]
codec_api = []
default = [
    "std",
    "cd_full",
    "fast_lzma",
]
fast_lzma = ["std"]
fast_zlib = ["std"]
fast_zstd = [
    "std",
    "zstd-safe",
]
huff_write = []
huffman_api = []
max_perf = [
    "fast_lzma",
    "fast_zstd",
]
nonstandard_channel_count = []
std = []
unstable_lending_iterators = [
    "lending-iterator",
    "nougat",
]
verify_block_crc = [
    "want_subcode",
    "want_raw_data_sector",
]
want_raw_data_sector = []
want_subcode = []

[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 = ["zlib-rs"]
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.8.0"

[dependencies.text_io]
version = "0.1"

[dependencies.zstd-safe]
version = "7.2.0"
optional = true

[dev-dependencies.bencher]
version = "0.1.5"