[package]
edition = "2021"
name = "opticaldiscs"
version = "0.4.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Format-agnostic optical disc image reading and filesystem browsing (ISO, BIN/CUE, CHD)"
readme = "README.md"
keywords = [
"cd-rom",
"dvd",
"iso9660",
"disc-image",
"chd",
]
categories = [
"filesystem",
"encoding",
"parser-implementations",
]
license = "GPL-3.0"
repository = "https://github.com/danifunker/opticaldiscs-rs"
[features]
default = []
drives = []
toc = [
"dep:sha1",
"dep:base64",
]
[lib]
name = "opticaldiscs"
path = "src/lib.rs"
[[example]]
name = "inspect_efs"
path = "examples/inspect_efs.rs"
[[test]]
name = "efs_irix_samples"
path = "tests/efs_irix_samples.rs"
[[test]]
name = "efs_synth"
path = "tests/efs_synth.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.base64]
version = "0.22"
optional = true
[dependencies.cue_sheet]
version = "0.3"
[dependencies.libchdman-rs]
version = "0.287.0-l7"
features = ["prebuilt"]
[dependencies.log]
version = "0.4"
[dependencies.sha1]
version = "0.11"
optional = true
[dependencies.thiserror]
version = "2"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.tempfile]
version = "3"