mpeg-ts 0.1.1

MPEG-2 Transport Stream framing (ITU-T H.222.0 / ISO/IEC 13818-1): TS packet, adaptation field, PCR, PSI section reassembly + packetization, resync. no_std.
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 = "2021"
rust-version = "1.81"
name = "mpeg-ts"
version = "0.1.1"
build = false
exclude = [
    "docs/**",
    "tests/fixtures/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MPEG-2 Transport Stream framing (ITU-T H.222.0 / ISO/IEC 13818-1): TS packet, adaptation field, PCR, PSI section reassembly + packetization, resync. no_std."
readme = "README.md"
keywords = [
    "mpeg-ts",
    "transport-stream",
    "mpeg2",
    "psi",
    "no-std",
]
categories = [
    "parser-implementations",
    "multimedia::video",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fishloa/rust-broadcast"

[package.metadata.docs.rs]
all-features = true

[features]
default = [
    "std",
    "serde",
]
serde = ["dep:serde"]
std = [
    "broadcast-common/std",
    "thiserror/std",
    "serde?/std",
]

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

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

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

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

[[test]]
name = "label_coverage"
path = "tests/label_coverage.rs"
required-features = []

[dependencies.broadcast-common]
version = "8"
default-features = false

[dependencies.bytes]
version = "1"
default-features = false

[dependencies.serde]
version = "1"
features = [
    "derive",
    "alloc",
]
optional = true
default-features = false

[dependencies.thiserror]
version = "2"
default-features = false