winit-sonoma-fix/Cargo.toml

62 lines
1.3 KiB
TOML
Raw Normal View History

2014-07-27 10:55:37 +02:00
[package]
2014-09-21 11:33:09 +02:00
name = "glutin"
2015-03-13 20:59:04 +01:00
version = "0.0.9"
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
[features]
default = ["window"]
2014-10-04 19:17:02 +02:00
window = []
headless = []
2015-02-06 09:21:55 +01:00
[dependencies]
gl_common = "*"
2015-02-06 09:21:55 +01:00
libc = "*"
[build-dependencies]
gl_generator = "*"
2015-01-17 18:02:22 +01:00
khronos_api = "*"
[dev-dependencies]
clock_ticks = "*"
2014-12-31 23:10:29 +01:00
[target.arm-linux-androideabi.dependencies.android_glue]
2015-03-13 20:59:04 +01:00
version = "0"
2014-12-31 23:10:29 +01:00
2015-03-13 20:59:04 +01:00
[target.i686-apple-darwin.dependencies.glutin_cocoa]
version = "0"
2014-12-31 23:10:29 +01:00
2015-03-13 20:59:04 +01:00
[target.x86_64-apple-darwin.dependencies.glutin_cocoa]
version = "0"
2014-12-31 23:10:29 +01:00
2015-03-13 20:59:04 +01:00
[target.i686-apple-darwin.dependencies.glutin_core_graphics]
version = "0"
2014-12-31 23:10:29 +01:00
2015-03-13 20:59:04 +01:00
[target.x86_64-apple-darwin.dependencies.glutin_core_graphics]
version = "0"
2014-12-31 23:10:29 +01:00
2015-01-10 01:56:47 -08:00
[target.i686-apple-darwin.dependencies.core_foundation]
2015-03-13 20:59:04 +01:00
version = "0"
2015-01-10 01:56:47 -08:00
[target.x86_64-apple-darwin.dependencies.core_foundation]
2015-03-13 20:59:04 +01:00
version = "0"
2015-01-10 01:56:47 -08:00
[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 = "*"