29 lines
714 B
TOML
29 lines
714 B
TOML
[package]
|
|
name = "nvidia-video-codec"
|
|
version = "0.2.0"
|
|
authors = ["Luca Barbato <lu_zero@gentoo.org>"]
|
|
license = "MIT"
|
|
description = "NVIDIA Video Codec bindings"
|
|
repository = "https://github.com/rust-av/nvidia-video-codec-rs"
|
|
readme = "README.md"
|
|
keywords = ["NVIDIA", "cuvid", "nvenc"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
arrayvec = "0.7.2"
|
|
npp-sys = { git = "https://gitlab.kryptodev.ru/oss/rust/npp-rs.git" }
|
|
nvidia-video-codec-sys = { version = "0.1.0", path = "nvidia-video-codec-sys" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
|
|
[workspace]
|
|
members = ["nvidia-video-codec-sys"]
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0"
|
|
image = "0.24.5"
|
|
mp4 = "0.13.0"
|
|
mp4parse = "0.12.0"
|
|
viuer = "0.6.2"
|
|
|