img_rcc 0.1.0

A Rust library for image processing with CUDA, C++.
[[bench]]
harness = false
name = "bench_gpu"
path = "benchmarks/benchmark_grayscale.rs"
required-features = ["benchmark"]

[[bin]]
name = "img_rcc"
path = "src/main.rs"

[build-dependencies]

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

[dev-dependencies]

[features]
benchmark = ["criterion"]

[lib]
crate-type = ["rlib"]
name = "img_rcc"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["computer-vision", "multimedia::images", "algorithms", "graphics", "development-tools::profiling"]
description = "A Rust library for image processing with CUDA, C++."
documentation = "https://docs.rs/img_rcc"
edition = "2021"
include = ["src/**", "include/**", "benchmarks/**", "cmake/**", "scripts/**", "tests/**", "CMakeLists.txt", "Cargo.toml", "build.rs", "README.md", "LICENSE"]
keywords = ["image-processing", "cuda", "rust", "benchmark", "gpu"]
license = "MIT"
name = "img_rcc"
readme = "README.md"
repository = "https://github.com/ndranathunga/imgRCC"
version = "0.1.0"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "test_algorithms_gpu"
path = "tests/test_algorithms_gpu.rs"