2014-07-27 10:55:37 +02:00
|
|
|
[package]
|
|
|
|
|
2014-09-21 11:33:09 +02:00
|
|
|
name = "glutin"
|
2015-01-10 08:55:51 +01:00
|
|
|
version = "0.0.4-pre"
|
2014-07-27 10:55:37 +02:00
|
|
|
authors = ["tomaka <pierre.krieger1708@gmail.com>"]
|
2015-01-10 08:55:51 +01:00
|
|
|
description = "Cross-plaform OpenGL context provider. Important: the crates.io only supports Windows and Linux for the moment."
|
2014-11-13 09:01:30 +01:00
|
|
|
keywords = ["windowing", "opengl"]
|
|
|
|
license = "Apache-2.0"
|
2014-11-14 08:54:04 +01:00
|
|
|
readme = "README.md"
|
2014-11-13 09:01:30 +01:00
|
|
|
repository = "https://github.com/tomaka/glutin"
|
2014-12-17 10:57:13 +01:00
|
|
|
documentation = "http://tomaka.github.io/glutin/"
|
2014-12-24 08:09:16 +01:00
|
|
|
build = "build.rs"
|
2014-07-27 10:55:37 +02:00
|
|
|
|
2014-10-06 20:32:47 +02:00
|
|
|
[features]
|
2014-10-21 21:23:51 +02:00
|
|
|
default = ["window"]
|
2014-10-04 19:17:02 +02:00
|
|
|
window = []
|
|
|
|
headless = []
|
2014-10-06 20:32:47 +02:00
|
|
|
|
2014-12-24 08:09:16 +01:00
|
|
|
[dependencies.gl_common]
|
2014-12-30 10:51:45 +01:00
|
|
|
gl_common = "*"
|
2014-10-04 15:49:39 +02:00
|
|
|
|
2014-12-30 10:51:45 +01:00
|
|
|
[build-dependencies]
|
|
|
|
gl_generator = "*"
|
2015-01-17 18:02:22 +01:00
|
|
|
khronos_api = "*"
|
2014-11-11 10:42:11 +10:00
|
|
|
|
2014-12-31 23:10:29 +01:00
|
|
|
[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"
|
|
|
|
|
2015-01-10 01:56:47 -08:00
|
|
|
[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"
|
|
|
|
|
2014-12-01 18:24:15 +01:00
|
|
|
[target.i686-pc-windows-gnu.dependencies.winapi]
|
2015-01-18 13:48:43 +01:00
|
|
|
version = "0.0.5"
|
2014-12-01 18:24:15 +01:00
|
|
|
features = ["gdi32", "kernel32", "user32"]
|
|
|
|
|
|
|
|
[target.x86_64-pc-windows-gnu.dependencies.winapi]
|
2015-01-18 13:48:43 +01:00
|
|
|
version = "0.0.5"
|
2014-12-01 18:24:15 +01:00
|
|
|
features = ["gdi32", "kernel32", "user32"]
|