[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-wgpu"
version = "0.1.0"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "wgpu backend for vyre IR — implements VyreBackend, owns GPU runtime, buffer pool, pipeline cache"
homepage = "https://github.com/santhsecurity/vyre"
documentation = "https://docs.rs/vyre-wgpu"
readme = "README.md"
keywords = [
"gpu",
"wgpu",
"ir",
"backend",
"vyre",
]
categories = [
"graphics",
"rendering::graphics-api",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/vyre"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "vyre_wgpu"
path = "src/lib.rs"
[dependencies.automod]
version = "=1.0.16"
[dependencies.bytemuck]
version = "=1.25.0"
features = ["derive"]
[dependencies.pollster]
version = "=0.4.0"
[dependencies.rustc-hash]
version = "=1.1.0"
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
[dependencies.toml]
version = "=0.8.23"
[dependencies.tracing]
version = "=0.1.44"
[dependencies.vyre]
version = "0.4.0"
default-features = false
[dependencies.vyre-spec]
version = "0.1.1"
[dependencies.wgpu]
version = "=24.0.5"
features = ["wgsl"]
[dev-dependencies.vyre-reference]
version = "0.1.0"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
[lints.rust]
missing_docs = "warn"
nonstandard_style = "warn"
rust_2018_idioms = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "warn"