[package]
edition = "2021"
rust-version = "1.85"
name = "vyre-driver-spirv"
version = "0.6.5"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SPIR-V backend for vyre through naga's SPIR-V writer."
homepage = "https://github.com/santhsecurity/vyre"
documentation = "https://docs.rs/vyre-driver-spirv"
readme = "README.md"
keywords = [
"gpu",
"compute",
"spirv",
"vulkan",
"vyre",
]
categories = [
"hardware-support",
"rendering::graphics-api",
]
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_driver_spirv"
path = "src/lib.rs"
[[example]]
name = "vulkan_probe"
path = "examples/vulkan_probe.rs"
[[test]]
name = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "spirv_parity"
path = "tests/spirv_parity.rs"
[dependencies.ash]
version = "=0.38.0"
[dependencies.inventory]
version = "=0.3.24"
[dependencies.naga]
version = ">=25.0.0, <26.0.0"
features = [
"wgsl-in",
"wgsl-out",
"spv-out",
"msl-out",
"spv-out",
]
[dependencies.smallvec]
version = "^1.15.1"
features = ["serde"]
[dependencies.vyre-driver]
version = "0.6.5"
[dependencies.vyre-emit-naga]
version = "0.6.5"
[dependencies.vyre-foundation]
version = "0.6.5"
[dependencies.vyre-lower]
version = "0.6.5"
[dependencies.vyre-spec]
version = "0.6.5"
[dev-dependencies.tempfile]
version = "=3.27.0"
[lints.clippy]
bind_instead_of_map = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
comparison_chain = "allow"
derivable_impls = "allow"
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"
double_must_use = "allow"
dropping_copy_types = "allow"
erasing_op = "allow"
field_reassign_with_default = "allow"
identity_op = "allow"
if_same_then_else = "allow"
large_enum_variant = "allow"
manual_c_str_literals = "allow"
manual_div_ceil = "allow"
manual_map = "allow"
manual_range_contains = "allow"
manual_slice_size_calculation = "allow"
map_entry = "allow"
map_identity = "allow"
match_like_matches_macro = "allow"
match_single_binding = "allow"
needless_borrow = "allow"
needless_borrows_for_generic_args = "allow"
needless_lifetimes = "allow"
needless_range_loop = "allow"
nonminimal_bool = "allow"
option_map_or_none = "allow"
redundant_closure = "allow"
ref_option = "allow"
result_large_err = "allow"
slow_vector_initialization = "allow"
too_many_arguments = "allow"
unnecessary_lazy_evaluations = "allow"
unnecessary_map_on_constructor = "allow"
vec_init_then_push = "allow"
[lints.rust]
dead_code = "allow"
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_variables = "allow"
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "warn"