summaryrefslogtreecommitdiff
path: root/engine/Cargo.toml
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-10-18 17:04:28 +0200
committerHampusM <hampus@hampusmat.com>2025-10-18 17:04:28 +0200
commit7083a19bf1029bff21a9550d40cc3260e99aac53 (patch)
tree524a8bd2e75ca712b0536218089804cf9838553b /engine/Cargo.toml
parent7f3072ed7e016dff359439d7580403e36ad6b325 (diff)
refactor(engine): use winit instead of glfw
Diffstat (limited to 'engine/Cargo.toml')
-rw-r--r--engine/Cargo.toml17
1 files changed, 15 insertions, 2 deletions
diff --git a/engine/Cargo.toml b/engine/Cargo.toml
index a62f458..6ddcf12 100644
--- a/engine/Cargo.toml
+++ b/engine/Cargo.toml
@@ -4,18 +4,31 @@ version = "0.1.0"
edition = "2021"
[dependencies]
-glfw = { path = "../glfw", features = ["opengl"] }
+glutin = "0.32.3"
+raw-window-handle = "0.6.2"
thiserror = "1.0.49"
-gl = "0.14.0"
bitflags = "2.4.0"
tracing = "0.1.39"
seq-macro = "0.3.5"
paste = "1.0.14"
+parking_lot = "0.12.3"
+crossbeam-channel = "0.5.15"
+safer-ffi = "0.1.13"
+nu-ansi-term = "0.46.0"
ecs = { path = "../ecs" }
util-macros = { path = "../util-macros" }
+opengl-bindings = { path = "../opengl-bindings" }
+
+[dependencies.winit]
+version = "0.30.11"
+default-features = false
+features = ["rwh_06", "wayland", "wayland-dlopen", "x11"]
[dependencies.image_rs]
version = "0.24.7"
default-features = false
features = ["png", "jpeg"]
package = "image"
+
+[build-dependencies]
+cfg_aliases = "0.2.1"