-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 770 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 770 Bytes
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
[package]
name = "learn-rendy"
version = "0.1.0"
authors = ["Gray Olson <gray@grayolson.com>"]
repository = "https://github.com/termhn/learn-rendy"
readme = "README.md"
keywords = ["gfx-hal", "rendy", "graphics", "tutorial"]
edition = "2018"
description = "A tutorial and examples for using rendy."
license = "Apache-2.0"
[features]
default = ["rendy"]
metal = ["rendy/metal"]
dx12 = ["rendy/dx12"]
vulkan = ["rendy/vulkan"]
empty = ["rendy/empty"]
[dependencies]
genmesh = "0.6"
nalgebra = "0.16"
env_logger = "0.5"
failure = "0.1"
lazy_static = "1.0"
image = "0.20.1"
log = "0.4"
winit = "0.18"
palette = "0.4"
rand = "0.6"
gfx-hal = "0.1"
[dependencies.rendy]
optional = true
# path = "../rendy/rendy"
git = "https://github.com/omni-viral/rendy"
branch = "master"