chore: add custom cursor, add config system

This commit is contained in:
2025-06-29 22:50:31 +02:00
parent 60e3102257
commit 807ad60d62
13 changed files with 315 additions and 37 deletions

24
src-tauri/Cargo.lock generated
View File

@@ -836,7 +836,7 @@ dependencies = [
"libc",
"option-ext",
"redox_users",
"windows-sys 0.59.0",
"windows-sys 0.60.2",
]
[[package]]
@@ -966,7 +966,7 @@ dependencies = [
"rustc_version",
"toml",
"vswhom",
"winreg",
"winreg 0.55.0",
]
[[package]]
@@ -1073,6 +1073,7 @@ dependencies = [
name = "ezpplauncher"
version = "0.1.0"
dependencies = [
"hardware-id",
"serde",
"serde_json",
"serde_repr",
@@ -1586,6 +1587,16 @@ dependencies = [
"syn 2.0.90",
]
[[package]]
name = "hardware-id"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3165b5280ce11f886e353961b966becc45a598a9440707dec3e1cdd8f07cbe7"
dependencies = [
"thiserror 1.0.69",
"winreg 0.10.1",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
@@ -5809,6 +5820,15 @@ dependencies = [
"memchr",
]
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
[[package]]
name = "winreg"
version = "0.55.0"