-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
62 lines (58 loc) · 1.83 KB
/
Cargo.toml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "RustyBear-Engine"
version = "0.1.0"
edition = "2021"
authors = ["Thomas Wachter"]
[lib]
crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cfg-if = "1"
bimap = { version = "0.6.3", features = ["serde"] }
env_logger = "0.10.1"
gilrs = "0.10.4"
log = "0.4.18"
pollster = "0.3.0"
rccell = "0.1.3"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
simplelog = { git = "https://github.com/Drakulix/simplelog.rs.git" }
wgpu = { version = "0.19.1", features = ["spirv"] }
winit = { version = "^0.29.4", features = ["rwh_05"] }
instant = "0.1"
kira = "0.8.5"
bytemuck = { version = "1.13.1", features = ["derive"] }
wgpu_macros = "0.1.0"
image = "0.24.6"
rayon = "1.7.0"
clap = { version = "4.3.10", features = ["derive"] }
gltf = "1.2.0"
glam = "0.25.0"
egui = { git = "https://github.com/emilk/egui.git" }
egui-wgpu = { git = "https://github.com/emilk/egui.git", features = ["winit"] }
egui-winit = { git = "https://github.com/emilk/egui.git", features = ["clipboard"] }
egui_demo_lib = { git = "https://github.com/emilk/egui.git" }
what = { git = "https://github.com/thomasw04/what.git" }
sysinfo = "0.29.11"
rand = "0.8.5"
indicatif = "0.17.7"
indicatif-log-bridge = "0.2.2"
once_cell = "1.19.0"
lazy_static = "1.4.0"
hashbrown = "0.14.3"
smallvec = { version = "1.11.2", features = ["const_new", "union", "const_generics"] }
hecs = "0.10.4"
glyphon = "0.5.0"
hecs-hierarchy = "0.12.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
console_log = "1.0"
wgpu = { version = "0.19.1", features = ["webgl"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4.30"
web-sys = { features = [
"Document",
"Window",
"Element",
] }
instant = { version = "0.1", features = ["wasm-bindgen"] }