feat: probe Vulkan loader boundary

This commit is contained in:
2026-06-23 22:43:54 +04:00
parent 69c032acca
commit 8ea1fd5c18
4 changed files with 132 additions and 3 deletions
+18 -2
View File
@@ -11,5 +11,21 @@ ash-window = "0.13"
fparkan-platform = { path = "../../crates/fparkan-platform" }
fparkan-render = { path = "../../crates/fparkan-render" }
[lints]
workspace = true
[lints.rust]
unsafe_code = "allow"
missing_docs = "warn"
unreachable_pub = "warn"
unused_must_use = "deny"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
dbg_macro = "deny"
print_stdout = "warn"
print_stderr = "warn"
lossy_float_literal = "deny"