-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
51 lines (46 loc) · 1.49 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
[package]
name = "r3d"
version = "0.1.0"
edition = "2021"
authors = ["AcrylicShrimp <led789zxpp@naver.com>"]
description = "A 3D game engine."
repository = "https://github.com/AcrylicShrimp/r3d"
keywords = ["game-engine", "gamedev", "graphics"]
categories = ["game-development", "game-engines"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
asset = { path = "./r3d-asset" }
asset-loader = { path = "./r3d-asset-loader" }
asset-pipeline = { path = "./r3d-asset-pipeline" }
codegen = { path = "./r3d-codegen" }
logging = { path = "./r3d-logging" }
bitvec = { version = "1" }
colored = { version = "2" }
downcast-rs = { version = "1" }
fontdue = { version = "0.7" }
image = { version = "0.24" }
itertools = { version = "0.11" }
naga = { version = "0.13", features = ["wgsl-in"] }
nohash-hasher = { version = "0.2" }
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }
russimp = { version = "2", features = ["prebuilt", "static-link"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
smartstring = { version = "1" }
specs = { version = "0.19", features = ["derive"] }
thiserror = { version = "1" }
wgpu = { version = "0.17" }
winit = { version = "0.28" }
zerocopy = { version = "0.7", features = ["derive"] }
[workspace]
members = [
"./r3d-asset",
"./r3d-asset-loader",
"./r3d-asset-pipeline",
"./r3d-codegen",
"./r3d-editor",
"./r3d-logging",
"./r3d-pmx",
]
[profile.release]
lto = true