[package]
edition = "2021"
rust-version = "1.85"
name = "rusty_h265"
version = "0.6.0"
authors = ["Mata Network"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust HEVC / H.265 video decoder, no C/FFI, written from the ITU-T H.265 spec and gated on the JCT-VC conformance suite."
homepage = "https://www.mata.network/"
readme = "README.md"
keywords = [
"hevc",
"h265",
"video",
"codec",
"decoder",
]
categories = [
"multimedia::video",
"multimedia::encoding",
]
license = "Apache-2.0"
repository = "https://github.com/Remade-With-Rust/rusty_h265"
[features]
bench-alloc = ["dep:rusty_alloc-api"]
cabac-trace = []
census = ["rusty_h265-accel/census"]
default = ["simd"]
prof = []
simd = ["rusty_h265-accel/simd"]
[lib]
name = "rusty_h265"
path = "src/lib.rs"
[[bin]]
name = "rusty_h265"
path = "src/bin/rusty_h265.rs"
[[test]]
name = "conformance_md5"
path = "tests/conformance_md5.rs"
[[test]]
name = "conformance_parse"
path = "tests/conformance_parse.rs"
[dependencies.rusty_alloc-api]
version = "=1.1.6"
optional = true
[dependencies.rusty_h265-accel]
version = "0.6.0"
default-features = false
[lints.clippy]
needless_range_loop = "allow"
too_many_arguments = "allow"