-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
54 lines (46 loc) · 972 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
53
54
[package]
name = "grr"
version = "0.8.0"
authors = ["msiglreith <[email protected]>"]
description = "Bare metal OpenGL 4.5+ wrapper"
homepage = "https://github.com/msiglreith/grr"
repository = "https://github.com/msiglreith/grr"
keywords = ["graphics"]
edition = "2018"
documentation = "https://docs.rs/grr"
license = "MIT OR Apache-2.0"
exclude = [
"examples/*",
"info/*",
]
build = "build.rs"
[dependencies]
bitflags = "1"
[dev-dependencies]
assimp = "0.3"
assimp-sys = "0.3"
winit = "0.24"
glutin = "0.26"
image = "0.23"
nalgebra-glm = "0.4"
rand = "0.7"
ndarray = "0.13"
raw-gl-context = "0.1"
anyhow = "1"
[build-dependencies]
gl_generator = "0.14"
[[example]]
name = "device"
path = "examples/device.rs"
[[example]]
name = "triangle"
path = "examples/triangle.rs"
[[example]]
name = "texture"
path = "examples/texture.rs"
[[example]]
name = "pbr"
path = "examples/pbr/pbr.rs"
[[example]]
name = "multi_context"
path = "examples/multi_context.rs"