hadris-cd 2.0.0

Hybrid ISO+UDF optical disc image creation (UDF Bridge format)
Documentation
# 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 = "2024"
rust-version = "1.88.0"
name = "hadris-cd"
version = "2.0.0"
authors = ["hxyulin"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hybrid ISO+UDF optical disc image creation (UDF Bridge format)"
readme = "README.md"
keywords = [
    "iso",
    "udf",
    "optical",
    "cd",
    "dvd",
]
categories = [
    "filesystem",
    "encoding",
]
license = "MIT"
repository = "https://github.com/hxyulin/hadris"

[features]
default = [
    "std",
    "sync",
]
std = [
    "hadris-io/std",
    "hadris-iso/std",
    "hadris-udf/std",
    "dep:thiserror",
]
sync = [
    "hadris-io/sync",
    "hadris-iso/sync",
    "hadris-udf/sync",
]

[lib]
name = "hadris_cd"
path = "src/lib.rs"

[[test]]
name = "bridge_roundtrip"
path = "tests/bridge_roundtrip.rs"

[dependencies.hadris-io]
version = "2.0.0"
features = ["std"]
default-features = false

[dependencies.hadris-iso]
version = "2.0.0"
features = [
    "std",
    "write",
]
default-features = false

[dependencies.hadris-macros]
version = "2.0.0"

[dependencies.hadris-udf]
version = "2.0.0"
features = [
    "std",
    "write",
]
default-features = false

[dependencies.thiserror]
version = "2.0.12"
optional = true
default-features = false

[dev-dependencies]