rusty_h264 0.2.0

A ground-up, pure-Rust H.264 encoder and decoder — memory-safe, BSD-2, zero C in the default build. Decoder bit-exact vs Cisco h264dec (Baseline + B-slices + most of High profile); encoder bit-exact vs ffmpeg. A Remade With Rust rebuild of 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"
version = "0.2.0"
authors = ["Mata Network"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A ground-up, pure-Rust H.264 encoder and decoder — memory-safe, BSD-2, zero C in the default build. Decoder bit-exact vs Cisco h264dec (Baseline + B-slices + most of High profile); encoder bit-exact vs ffmpeg. A Remade With Rust rebuild of openh264."
readme = false
keywords = [
    "h264",
    "avc",
    "video",
    "codec",
    "decoder",
]
categories = [
    "multimedia::video",
    "multimedia::encoding",
]
license = "BSD-2-Clause"
repository = "https://github.com/remade-with-rust/rusty_h264"

[features]
asm = [
    "rusty_h264-encoder/asm",
    "rusty_h264-decoder/asm",
]
default = ["asm"]

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

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

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

[dependencies.rusty_h264-decoder]
version = "0.2.0"

[dependencies.rusty_h264-encoder]
version = "0.2.0"

[lints.rust]
unsafe_code = "forbid"