-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
52 lines (45 loc) · 944 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "rendy-pbr"
version = "0.1.0"
authors = ["Gray Olson <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
[profile.release]
debug = true
[profile.dev]
opt-level = 1
[features]
default = ["rendy"]
metal = ["rendy/metal"]
dx12 = ["rendy/dx12"]
vulkan = ["rendy/vulkan"]
empty = ["rendy/empty"]
rd = ["renderdoc"]
[dependencies]
genmesh = "0.6"
nalgebra = "0.17"
env_logger = "0.5"
failure = "0.1"
lazy_static = "1.0"
image = "0.20.1"
log = "0.4"
palette = "0.4"
rand = "0.6"
derivative = "1.0"
specs = "0.14"
specs-hierarchy = "0.3"
hibitset = "0.5"
ron = "0.5"
serde = "1.0"
[dependencies.renderdoc]
version = "0.4"
optional = true
[dependencies.gltf]
version = "0.12"
[dependencies.rendy]
optional = true
# version = "0.5"
git = "https://github.com/amethyst/rendy"
# branch = "master"
rev = "8c5388c3e5ba63a5d48088e91f6aab88f03e23b9"
features = ["base", "init-winit", "texture-image", "shader-compiler"]