forked from glium/glium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (41 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
[package]
name = "glium"
version = "0.15.0"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
description = """
Elegant and safe OpenGL wrapper.
Glium is an intermediate layer between OpenGL and your application. You still need to manually handle
the graphics pipeline, but without having to use OpenGL's old and error-prone API.
Its objectives:
- Be safe to use. Many aspects of OpenGL that can trigger a crash if misused are automatically handled by glium.
- Provide an API that enforces good pratices such as RAII or stateless function calls.
- Be compatible with all OpenGL versions that support shaders, providing unified API when things diverge.
- Avoid all OpenGL errors beforehand.
- Produce optimized OpenGL function calls, and allow the user to easily use modern OpenGL techniques.
"""
keywords = ["opengl", "gamedev"]
documentation = "http://tomaka.github.io/glium/glium/index.html"
repository = "https://github.com/tomaka/glium"
license = "Apache-2.0"
build = "build/main.rs"
exclude = ["doc", ".travis.yml", "circle.yml"]
[features]
default = ["glutin"]
unstable = [] # used for benchmarks
[dependencies.glutin]
version = "0.6.1"
features = []
optional = true
[dependencies]
backtrace = "0.2.1"
lazy_static = "0.2"
smallvec = "0.1.5"
fnv = "1.0.3"
[build-dependencies]
gl_generator = "0.5.1"
[dev-dependencies]
cgmath = "0.9.1"
genmesh = "0.4"
image = "0.10.1"
obj = { version = "0.5", features = ["usegenmesh"] }
rand = "0.3"