forked from FyroxEngine/Fyrox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 1.02 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
[package]
name = "rg3d"
version = "0.15.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2018"
license = "MIT"
description = "3D Game engine"
keywords = ["sound", "game", "engine", "3d", "gui"]
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
repository = "https://github.com/mrDIMAS/rg3d"
readme = "README.md"
[workspace]
members = ["rg3d-core", "rg3d-sound", "rg3d-ui"]
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[dependencies]
rg3d-core = { path = "rg3d-core", version = "0.10.0" }
rg3d-sound = { path = "rg3d-sound", version = "0.17.0" }
rg3d-ui = { path = "rg3d-ui", version = "0.6.0" }
glutin = "0.25.1"
image = { version = "0.23.11", default-features = false, features = ["gif", "jpeg", "png", "tga", "tiff", "bmp"] }
lexical = "5.2.0"
inflate = "0.4.5"
lazy_static = "1.4.0"
futures = {version = "0.3.6", features = ["thread-pool"] }
ddsfile = "0.4.0"
rapier3d = "0.3.0"
rayon = "1.5.0"
[dev-dependencies]
imageproc = "0.21.0"
[features]
enable_profiler = ["rg3d-core/enable_profiler"]