[package]
edition = "2024"
name = "singe-npp"
version = "0.1.0-alpha.8"
build = false
include = [
"**/*.rs",
"Cargo.toml",
"dist",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust wrappers for NVIDIA Performance Primitives library (NPP)."
readme = "README.md"
keywords = [
"cuda",
"nvidia",
"npp",
"image",
]
license-file = "LICENSE"
repository = "https://github.com/tinrab/singe"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"dist/katex_header.html",
]
[features]
default = ["npp_13_1"]
npp_13_1 = [
"singe-cuda/runtime_13_2",
"singe-npp-sys/npp_13_1",
]
testing = ["singe-cuda/testing"]
[lib]
name = "singe_npp"
path = "src/lib.rs"
[[example]]
name = "batched_label_markers_and_compression"
path = "examples/batched_label_markers_and_compression.rs"
[[example]]
name = "distance_transform"
path = "examples/distance_transform.rs"
[[example]]
name = "find_contour"
path = "examples/find_contour.rs"
[[example]]
name = "npp_canny"
path = "examples/npp_canny.rs"
[[example]]
name = "pipeline"
path = "examples/pipeline.rs"
[[example]]
name = "watershed_segmentation"
path = "examples/watershed_segmentation.rs"
[dependencies.bitflags]
version = "2.13.0"
[dependencies.num_enum]
version = "0.7.6"
[dependencies.singe-core]
version = "0.1.0-alpha.6"
[dependencies.singe-cuda]
version = "0.1.0-alpha.7"
[dependencies.singe-npp-sys]
version = "0.1.0-alpha.6"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.image]
version = "0.25.10"