i think i'm sticking with glfw until i change my mind lol

This commit is contained in:
LunarAkai 2025-08-03 13:48:44 +02:00
commit 06bee7d20c
8 changed files with 152 additions and 26 deletions

54
Cargo.lock generated
View file

@ -402,6 +402,15 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
[[package]]
name = "cmake"
version = "0.1.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
dependencies = [
"cc",
]
[[package]]
name = "colored"
version = "2.2.0"
@ -844,6 +853,28 @@ dependencies = [
"serde",
]
[[package]]
name = "glfw"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8c61a3f08ac5eb93c8dc0e9f2e6b2c7a7d14da089db39d43d696bc4fd025d4c"
dependencies = [
"bitflags 1.3.2",
"glfw-sys",
"objc2",
"raw-window-handle",
"winapi",
]
[[package]]
name = "glfw-sys"
version = "5.0.0+3.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1dfc32d45fb58ff38b112696907963a7d671e9cf742b16f882062169a053cf88"
dependencies = [
"cmake",
]
[[package]]
name = "glib"
version = "0.21.0"
@ -1238,6 +1269,7 @@ dependencies = [
name = "moonhare_window"
version = "0.1.0"
dependencies = [
"glfw",
"gtk4",
"moonhare_event",
"moonhare_log",
@ -2362,6 +2394,22 @@ dependencies = [
"web-sys",
]
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.9"
@ -2371,6 +2419,12 @@ dependencies = [
"windows-sys 0.59.0",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
version = "0.45.0"