-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
30 lines (27 loc) · 933 Bytes
/
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
[package]
name = "syrillian"
description = "Real-time 3D game engine built on top of wgpu, focusing on flexibility, modularity, and a straightforward, entity-component-driven workflow"
license = "MIT"
repository = "https://github.com/Kek5chen/syrillian"
authors = [ "Kek5chen" ]
version = "0.1.1"
edition = "2021"
[dependencies]
wgpu = { version = "23.0.1", features = ["vulkan-portability"] }
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "macros"] }
winit = { version = "0.30.5", features = ["x11"] }
env_logger = { version = "0.11.5", features = ["auto-color"] }
bytemuck = "1.18.0"
log = "0.4.22"
nalgebra = { version = "0.33.0" }
num-traits = "0.2.19"
russimp = { version = "3.2.0", features = ["prebuilt"] }
itertools = "0.13.0"
rand = { version = "0.9.0-alpha.2", features = [] }
image = "0.25.2"
rapier3d = "0.22.0"
futures = "0.3.30"
[build-dependencies]
chrono = "0.4.38"
[profile.dev]
opt-level = 2