blob: 9b91df867468fdd470216167debd5944629ff543 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
[package]
name = "engine"
version = "0.1.0"
edition = "2024"
[dependencies]
glutin = "0.32.3"
raw-window-handle = "0.6.2"
thiserror = "1.0.49"
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"
engine-ecs = { workspace = true }
util-macros = { workspace = true }
opengl-bindings = { workspace = true }
engine-macros = { workspace = true }
[dependencies.winit]
version = "0.30.11"
default-features = false
features = ["rwh_06", "wayland", "wayland-dlopen", "x11"]
[dependencies.image_rs]
version = "0.25.10"
default-features = false
features = ["png", "jpeg"]
package = "image"
[dependencies.zerocopy]
version = "0.8.42"
default-features = false
features = ["derive"]
[dependencies.shader-slang]
git = "https://github.com/HampusMat/slang-rs"
branch = "prebuilt-and-artifacts"
[build-dependencies]
cfg_aliases = "0.2.1"
build-rs = "0.3.4"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
|