[package]
edition = "2024"
rust-version = "1.95"
name = "nvidia-streamline"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vulkan bindings for NVIDIA DLSS Ray Reconstruction through Streamline"
homepage = "https://github.com/attackgoat/nvidia"
documentation = "https://docs.rs/nvidia-streamline"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/attackgoat/nvidia"
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[features]
default = ["vk-graph"]
vk-graph = ["dep:vk-graph"]
[lib]
name = "nvidia_streamline"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.ash]
version = "0.38"
default-features = false
[dependencies.log]
version = "0.4"
[build-dependencies.cc]
version = "1.2"
[build-dependencies.dunce]
version = "1.0"
[build-dependencies.nvidia-sdk]
version = "0.1.0"
[target.'cfg(target_os = "windows")'.dependencies.vk-graph]
version = "0.14.7"
optional = true
[target.x86_64-pc-windows-msvc.dependencies.ash]
version = "0.38"
features = ["loaded"]
default-features = false
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"