hadris-udf 1.2.0

A rust implementation of the UDF (Universal Disk Format) filesystem.
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"
name = "hadris-udf"
version = "1.2.0"
authors = ["hxyulin"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rust implementation of the UDF (Universal Disk Format) filesystem."
readme = "README.md"
keywords = [
    "udf",
    "dvd",
    "blu-ray",
    "optical",
    "filesystem",
]
categories = [
    "filesystem",
    "encoding",
]
license = "MIT"
repository = "https://github.com/hxyulin/hadris"
resolver = "2"

[features]
alloc = ["hadris-io/alloc"]
async = [
    "hadris-io/async",
    "hadris-common/async",
]
default = [
    "std",
    "read",
    "sync",
]
read = ["hadris-common/bytemuck"]
std = [
    "hadris-io/std",
    "hadris-common/std",
    "hadris-common/bytemuck",
    "alloc",
    "dep:thiserror",
    "sync",
]
sync = [
    "hadris-io/sync",
    "hadris-common/sync",
]
write = [
    "alloc",
    "std",
    "read",
]

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

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

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

[dependencies.bitflags]
version = "2.9.0"
features = ["bytemuck"]

[dependencies.bytemuck]
version = "1.22.0"
features = ["derive"]
default-features = false

[dependencies.hadris-common]
version = "1.2.0"
features = ["alloc"]
default-features = false

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

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

[dependencies.spin]
version = "0.10.0"

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

[dev-dependencies.static_assertions]
version = "1.1.0"

[dev-dependencies.tempfile]
version = "3.19.1"