forked from nukep/glium-sdl2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
25 lines (22 loc) · 853 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
[package]
name = "glium_sdl2"
version = "0.16.0"
authors = ["Danny Spencer <[email protected]>"]
license = "MIT/Apache-2.0"
keywords = ["graphics", "gamedev", "glium", "sdl", "opengl"]
documentation = "http://nukep.github.io/glium-sdl2/"
repository = "https://github.com/nukep/glium-sdl2/"
description = "An SDL2 backend for Glium - a high-level OpenGL wrapper for the Rust language."
[dependencies]
sdl2 = "0.34"
[dependencies.glium]
version = "0.28"
# Do not enable any features by default, as to not bring in unwanted dependencies
# (Cargo seems to apply a "union" of requested features across projects for any given dependency).
# Instead, Let the library user define which features they want.
features = []
default-features = false
[dev-dependencies]
clock_ticks = "0.1.0"
genmesh = "0.4"
obj = { version = "0.5", features = ["usegenmesh"] }