[package]
name = "v_frame"
version = "0.3.8"
description = "Video Frame data structures, originally part of rav1e"
license = "BSD-2-Clause"
authors = ["Luca Barbato <lu_zero@gentoo.org>"]
edition = "2021"
repository = "https://github.com/rust-av/v_frame"
[features]
serialize = ["serde", "aligned-vec/serde"]
profiling = ["dep:profiling"]
tracing = ["profiling", "dep:tracing", "profiling/profile-with-tracing"]
[dependencies]
num-traits = "0.2"
serde = { version = "1.0", features = ["derive"], optional = true }
aligned-vec = "0.5.0"
profiling = { version = "1", optional = true }
tracing = { version = "0.1.40", optional = true }
[[bench]]
name = "bench"
harness = false
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
criterion = "0.5"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
criterion = { version = "0.5", default-features = false }
[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = "0.2"
[target.wasm32-unknown-unknown.dev-dependencies]
wasm-bindgen-test = "0.3"