rusty_h264-decoder 0.2.1

Pure-Rust H.264 decoder (Baseline + B-slices + most of High profile, CAVLC) — bit-exact vs Cisco openh264.
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.80"
name = "rusty_h264-decoder"
version = "0.2.1"
authors = ["Mata Network"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust H.264 decoder (Baseline + B-slices + most of High profile, CAVLC) — bit-exact vs Cisco openh264."
readme = false
license = "BSD-2-Clause"
repository = "https://github.com/remade-with-rust/rusty_h264"

[features]
asm = [
    "dep:rusty_h264-accel",
    "rusty_h264-common/asm",
]
profile = ["rusty_h264-common/profile"]

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

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

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

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

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

[dependencies.rusty_h264-accel]
version = "0.2.1"
optional = true

[dependencies.rusty_h264-common]
version = "0.2.1"

[dev-dependencies.rusty_h264-encoder]
version = "0.2.1"

[lints.rust]
unsafe_code = "forbid"