aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c091ffe1d5e86fc99c7b916376247716c29a42cc (plain)
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
55
56
57
58
59
60
[package]

name = "glutin"
version = "0.0.4-pre"
authors = ["tomaka <pierre.krieger1708@gmail.com>"]
description = "Cross-plaform OpenGL context provider. Important: the crates.io only supports Windows and Linux for the moment."
keywords = ["windowing", "opengl"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/tomaka/glutin"
documentation = "http://tomaka.github.io/glutin/"
build = "build.rs"

[features]
default = ["window"]
window = []
headless = []

[dependencies.gl_common]
gl_common = "*"

[build-dependencies]
gl_generator = "*"
khronos_api = "*"

[dev-dependencies]
clock_ticks = "*"

[target.arm-linux-androideabi.dependencies.android_glue]
git = "https://github.com/tomaka/android-rs-glue"

[target.i686-apple-darwin.dependencies.cocoa]
git = "https://github.com/servo/rust-cocoa"

[target.x86_64-apple-darwin.dependencies.cocoa]
git = "https://github.com/servo/rust-cocoa"

[target.i686-apple-darwin.dependencies.core_graphics]
git = "https://github.com/servo/rust-core-graphics"

[target.x86_64-apple-darwin.dependencies.core_graphics]
git = "https://github.com/servo/rust-core-graphics"

[target.i686-apple-darwin.dependencies.core_foundation]
git = "https://github.com/servo/rust-core-foundation"

[target.x86_64-apple-darwin.dependencies.core_foundation]
git = "https://github.com/servo/rust-core-foundation"

[target.i686-pc-windows-gnu.dependencies]
winapi = "0.1"
gdi32-sys = "*"
user32-sys = "*"
kernel32-sys = "*"

[target.x86_64-pc-windows-gnu.dependencies]
winapi = "0.1"
gdi32-sys = "*"
user32-sys = "*"
kernel32-sys = "*"