-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (36 loc) · 1.12 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (36 loc) · 1.12 KB
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
[package]
name = "molasses"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
glam = { version = "0.30.5", features = ["bytemuck", "rand"] }
wgpu = "25.0.0"
winit = "0.30.12"
bytemuck = "1.23.1"
pollster = "0.4.0"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
rand = "0.9.2"
egui = "0.32.0"
egui-wgpu = { version = "0.32.0", features = ["winit"] }
egui-winit = { version = "0.32.0", default-features = false }
image = "*"
rfd = "0.15"
sti = { git = "https://github.com/leddoo/sti" }
[target.'cfg(target_family = "wasm")'.dependencies]
wasm-bindgen = "*"
wasm-bindgen-futures = "*"
js-sys = "*"
console_error_panic_hook = "*"
console_log = "1"
log = "*"
web-sys = { version = "*", features = ["console", "HtmlCanvasElement", "Storage", "Window", "Blob", "File", "FileList", "FileReader", "HtmlInputElement", "Event", "EventTarget", "Document", "Element", "HtmlElement", "Url", "BlobPropertyBag"] }
instant = { version = "0.1", features = ["wasm-bindgen"] }
include_dir = "0.7"
hex = "*"
getrandom = { version = "0.3", features = ["wasm_js"] }
[profile.release]
debug = 0
overflow-checks = true