nvidia-video-codec-rs/Cargo.toml

30 lines
747 B
TOML
Raw Normal View History

2016-12-28 10:30:10 +04:00
[package]
name = "nvidia-video-codec"
version = "0.1.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"
2017-03-15 18:08:27 +04:00
readme = "README.md"
keywords = ["NVIDIA", "cuvid", "nvenc"]
2023-03-28 20:57:22 +04:00
edition = "2021"
2016-12-28 10:30:10 +04:00
[dependencies]
2023-03-28 20:57:22 +04:00
anyhow = "1.0.69"
arrayvec = "0.7.2"
2023-09-11 20:25:51 +04:00
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" }
2023-03-28 20:57:22 +04:00
parking_lot = "0.12.1"
serde = { version = "1.0.155", features = ["derive"] }
thiserror = "1.0.38"
2016-12-28 10:30:10 +04:00
[workspace]
members = ["nvidia-video-codec-sys"]
2016-12-28 10:30:10 +04:00
2023-03-28 20:57:22 +04:00
[dev-dependencies]
image = "0.24.5"
mp4 = "0.13.0"
mp4parse = "0.12.0"
viuer = "0.6.2"