-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "img_rcc"
version = "0.1.0"
edition = "2021"
build = "build.rs"
description = "A Rust library for image processing with CUDA, C++."
license = "MIT"
repository = "https://github.com/ndranathunga/imgRCC"
documentation = "https://docs.rs/img_rcc"
readme = "README.md"
keywords = ["image-processing", "cuda", "rust", "benchmark", "gpu"]
categories = ["computer-vision", "multimedia::images", "algorithms", "graphics", "development-tools::profiling"]
include = [
"src/**",
"include/**",
"benchmarks/**",
"cmake/**",
"scripts/**",
"tests/**",
"CMakeLists.txt",
"Cargo.toml",
"build.rs",
"README.md",
"LICENSE"
]
[dependencies]
criterion = { version = "0.5", optional = true }
# criterion = "0.5"
[dev-dependencies]
[build-dependencies]
# cmake = "0.1"
# cc = "1.0"
[lib]
crate-type = ["rlib"]
# [build]
# build = "build.rs"
[features]
benchmark = ["criterion"]
[[bench]]
name = "bench_gpu"
path = "benchmarks/benchmark_grayscale.rs"
harness = false
required-features = ["benchmark"]