-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 917 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
[package]
name = "avenir"
version = "0.2.0"
authors = [ "Quentin <[email protected]>"
, "Kilian Perrier <[email protected]>"
, "Thomas Nicollet <[email protected]>"
, "Alexandre Fourcat <[email protected]>"
]
edition = "2018"
[features]
empty = ["rendy/empty"]
metal = ["rendy/metal"]
vulkan = ["rendy/vulkan"]
dx12 = ["rendy/dx12"]
gl = ["rendy/gl"]
no-slow-safety-checks = ["rendy/no-slow-safety-checks"]
shader-compiler = ["rendy/shader-compiler"]
experimental-spirv-reflection = ["rendy/spirv-reflection"]
[dependencies.rendy]
version = "0.5.1"
default-features = false
features = ["base", "init-winit", "shader-compiler"]
[dependencies]
generic-octree = { version = "0.3.5", features = ["dot_tree", "render"] }
nalgebra = "0.19.0"
lazy_static = "1.4.0"
genmesh = "0.6.2"
rand = "0.7.3"
palette = "0.5.0"
log = "0.4.8"
env_logger = "0.7.1"