piaf 0.1.0

A library for reading and interpreting display capability data (EDID).
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.85"
name = "piaf"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for reading and interpreting display capability data (EDID)."
readme = "README.md"
keywords = [
    "edid",
    "display",
    "hdmi",
    "cea861",
    "no-std",
]
categories = [
    "hardware-support",
    "embedded",
    "parser-implementations",
]
license = "MPL-2.0"
repository = "https://github.com/DracoWhitefire/piaf"

[features]
alloc = []
default = ["std"]
serde = [
    "dep:serde",
    "bitflags/serde",
]
std = []

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

[[example]]
name = "inspect_displays"
path = "examples/inspect_displays.rs"

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

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

[dependencies.bitflags]
version = "2.4"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies]