av-denoise 0.1.0

Fast and efficient video denoising using accelerated nlmeans.
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "av-denoise"
version = "0.1.0"
build = false
exclude = [
    "scripts/",
    ".idea/",
    "cubecl.toml",
    "Dockerfile",
    "Justfile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast and efficient video denoising using accelerated nlmeans."
readme = "README.md"
keywords = [
    "cubecl",
    "denoise",
    "gpu",
]
categories = ["multimedia::video"]
license = "Apache-2.0"
repository = "https://github.com/ChillFish8/av-denoise"

[features]
binary = [
    "clap",
    "mimalloc",
    "av-scenechange",
    "av-decoders",
    "v_frame",
    "y4m",
]
cpu = ["cubecl/cpu"]
cuda = ["cubecl/cuda"]
default = [
    "cpu",
    "vulkan",
]
metal = ["cubecl/metal"]
rocm = ["cubecl/hip"]
vulkan = ["cubecl/vulkan"]

[lib]
name = "av_denoise"
path = "src/lib.rs"

[[bin]]
name = "av-denoise"
path = "src/bin/main.rs"
required-features = ["binary"]

[[bench]]
name = "bench_kernels"
path = "benches/bench_kernels.rs"
harness = false
required-features = ["clap"]

[[bench]]
name = "denoise"
path = "benches/denoise.rs"
harness = false
required-features = ["clap"]

[[bench]]
name = "motion"
path = "benches/motion.rs"
harness = false
required-features = ["clap"]

[[bench]]
name = "nlmeans"
path = "benches/nlmeans.rs"
harness = false
required-features = ["clap"]

[dependencies.anyhow]
version = "1"

[dependencies.av-decoders]
version = "0.9"
features = ["ffms2"]
optional = true

[dependencies.av-scenechange]
version = "0.23"
features = ["ffms2"]
optional = true

[dependencies.bon]
version = "3"

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.cubecl]
version = "0.10"
features = ["std"]

[dependencies.mimalloc]
version = "0.1"
optional = true
default-features = false

[dependencies.strum]
version = "0.28"

[dependencies.strum_macros]
version = "0.28"

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.v_frame]
version = "0.5"
optional = true

[dependencies.y4m]
version = "0.8"
optional = true

[dev-dependencies.futures]
version = "0.3"