[package]
edition = "2024"
name = "av-denoise-vs"
version = "0.4.0-alpha6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "VapourSynth core low-level plugin for av-denoise providing fast, best in class denoising. (Use PyPi package)"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/ChillFish8/av-denoise"
[features]
cuda = ["av-denoise-core/cuda"]
default = ["vulkan"]
metal = ["av-denoise-core/metal"]
rocm = ["av-denoise-core/rocm"]
vulkan = ["av-denoise-core/vulkan"]
[lib]
name = "av_denoise_vs"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "frames"
path = "tests/frames.rs"
[[test]]
name = "params"
path = "tests/params.rs"
[dependencies.anyhow]
version = "1"
[dependencies.av-denoise-core]
version = "0.4.0-alpha6"
default-features = false
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.vapoursynth]
version = "0.5.6"