This commit is contained in:
2025-12-11 02:30:28 +01:00
parent fae838e2a4
commit 29f00a55ad
16 changed files with 635 additions and 0 deletions

16
Cargo.toml git.filemode.normal_file
View File

@@ -0,0 +1,16 @@
[package]
name = "vulkan-cts-analyzer"
version = "0.1.0"
authors = ["Kbz-8 <kbz_8.code@proton.me>"]
edition = "2021"
[dependencies]
csv = "1.4.0"
dioxus = { version = "0.7.2", features = ["router"] }
dioxus-primitives = { git = "https://github.com/DioxusLabs/components", version = "0.0.1", default-features = false }
[features]
default = ["web"]
web = ["dioxus/web"]
desktop = ["dioxus/desktop"]
mobile = ["dioxus/mobile"]